-
cargo audit checks security vulnerabilities in a package. This can help us reduce the number of potential security issues if we take care of them.
Example command:
$ cd move
$ cargo audit --color…
-
```
// generate random data
// makes sure that each chunk of 64 bits fits in a fr modulus, otherwise there are bugs due to the padding (domain separation)
// TODO since when using mimc the user …
-
We need to add a license to zerokit, likely MIT and/or Apache v2.
Before doing so, we need to check and ensure that all dependencies and integrated code snippets are covered by a license compatible…
-
Corresponding PR: https://github.com/noir-lang/noir/pull/964
To be documented under the _Noir Standard Library_ section.
The inlined comments in the PR might be helpful to facilitate understandi…
-
My OS:Windows 11 all have this error i can not build SUI
cargo install --locked --git https://github.com/MystenLabs/sui.git --branch "devnet" sui sui-gateway
error: failed to run custom build co…
-
# Description
## Aim
Run `noirc_driver` tests.
## Expected behavior
All tests should pass.
## Bug
Test fails with the following message
```shell
running 2 tests
test fail ... ok…
-
### Problem
We've got a user in Discord who has implemented Hydra in Noir: https://github.com/TaceoLabs/noir-hydra
```
fn main(plains: [Field; 8], key: [Field; 4], iv: [Field; 4]) -> pub [Field; …
-
I'm wondering if the PLONK implementation has a optimization space.
This is a [benchmark result](https://medium.com/aztec-protocol/plonk-benchmarks-2-5x-faster-than-groth16-on-mimc-9e1009f96dfe) fr…
-
I'm adding dependence on ursa like:
`ursa = { version = "=0.3.7", default-features = false, features = ["portable"] }`
Only to get the following error:
```
Compiling ursa v0.3.7
error[E0432]: …
-
# Problem
Some applications may require knowledge of the number of bits in the modulus, which is known by the compiler.
# Solution
Use a builtin attribute to expose the number of bits in the…