mirror of
https://github.com/vacp2p/semaphore-rs.git
synced 2025-02-24 01:28:28 +00:00
extract external_nullifier calculation
🦀 semaphore-rs
Rust support library for using semaphore. It's mostly a Rust rewrite of zk-kit, but just focuses on semaphore (for now) and still covers a much smaller scope. It's using ark-circom under the hood for generating the groth16 proofs.
Usage
Add this line to your cargo.toml
:
semaphore = { git = "https://github.com/worldcoin/semaphore-rs" }
Building semaphore circuits
- Check out submodule (if not done before already):
git submodule update --init --recursive
- Install semaphore dependencies
cd semaphore && npm install
- Compile circuits
ts-node ./scripts/compile-circuits.ts
- You'll find the
zkey
andwasm
file insemaphore/build/snark
Example
Example as in src/lib.rs
, run with cargo test
.
// generate identity
let id = Identity::new(b"secret");
// generate merkle tree
const LEAF: Hash = Hash::from_bytes_be([0u8; 32]);
let mut tree = PoseidonTree::new(21, LEAF);
let (_, leaf) = id.commitment().to_bytes_be();
tree.set(0, leaf.into());
let merkle_proof = tree.proof(0).expect("proof should exist");
let root = tree.root();
// change signal and external_nullifier here
let signal = "xxx".as_bytes();
let external_nullifier = "appId".as_bytes();
let external_nullifier_hash = hash_external_nullifier(external_nullifier);
let nullifier_hash = generate_nullifier_hash(&id, &external_nullifier_hash);
let config = SnarkFileConfig {
zkey: "./semaphore/build/snark/semaphore_final.zkey".to_string(),
wasm: "./semaphore/build/snark/semaphore.wasm".to_string(),
};
let proof = generate_proof(&config, &id, &merkle_proof, &external_nullifier_hash, signal).unwrap();
let success = verify_proof(&config, &root.into(), &nullifier_hash, signal, &external_nullifier_hash, &proof).unwrap();
assert!(success);
Description
Languages
Rust
100%