|
1 |
| -# Elliptic Curve VRFs |
| 1 | +# Elliptic Curve VRF-AD |
2 | 2 |
|
3 |
| -Provides: |
4 |
| -- IETF VRF as described by [RFC 9381](https://datatracker.ietf.org/doc/rfc9381). |
5 |
| -- Pedersen VRF as described by the first construction in [BCHSV23](https://eprint.iacr.org/2023/002). |
6 |
| -- Ring VRF as briefly described in [BCHSV23](https://eprint.iacr.org/2023/002) and formally specified [here](https://github.com/davxy/ring-proof-spec). |
| 3 | +This library provides flexible and efficient implementations of Verifiable |
| 4 | +Random Functions with Additional Data (VRF-AD), a cryptographic construct |
| 5 | +that augments a standard VRF scheme by incorporating auxiliary information |
| 6 | +into its signature. |
7 | 7 |
|
8 |
| -A formal yet quite lightweight specification of the schemes provided can be found [here](https://github.com/davxy/bandersnatch-vrfs-spec). |
| 8 | +It leverages the [Arkworks](https://github.com/arkworks-rs) framework and |
| 9 | +supports customization of scheme parameters. |
9 | 10 |
|
10 |
| -The implementation is built leveraging [Arkworks](https://github.com/arkworks-rs) libraries |
11 |
| -and is designed to be flexible for further customization. |
| 11 | +### Supported VRFs |
| 12 | + |
| 13 | +- **IETF VRF**: Complies with ECVRF described in [RFC9381](https://datatracker.ietf.org/doc/rfc9381). |
| 14 | +- **Pedersen VRF**: Described in [BCHSV23](https://eprint.iacr.org/2023/002). |
| 15 | +- **Ring VRF**: A zero-knowledge-based inspired by [BCHSV23](https://eprint.iacr.org/2023/002). |
| 16 | + |
| 17 | +### Schemes Specifications |
| 18 | + |
| 19 | +- [VRF Schemes Details](https://github.com/davxy/bandersnatch-vrfs-spec) |
| 20 | +- [Ring VRF ZK Proof](https://github.com/davxy/ring-proof-spec) |
| 21 | + |
| 22 | +### Basic Usage |
| 23 | + |
| 24 | +```rust |
| 25 | +let secret = Secret::from_seed(b"example seed"); |
| 26 | +let public = secret.public(); |
| 27 | +let input = Input::new(b"example input"); |
| 28 | +let output = secret.output(input); |
| 29 | +let aux_data = b"optional aux data"; |
| 30 | +``` |
| 31 | +#### IETF-VRF |
| 32 | + |
| 33 | +Prove |
| 34 | +```rust |
| 35 | +use ark_ec_vrfs::ietf::Prover; |
| 36 | +let proof = secret.prove(input, output, aux_data); |
| 37 | +``` |
| 38 | + |
| 39 | +Verify |
| 40 | +```rust |
| 41 | +use ark_ec_vrfs::ietf::Verifier; |
| 42 | +let result = public.verify(input, output, aux_data); |
| 43 | +``` |
| 44 | + |
| 45 | +#### Ring-VRF |
| 46 | + |
| 47 | +Ring construction |
| 48 | +```rust |
| 49 | +const RING_SIZE: usize = 100; |
| 50 | +let prover_key_index = 3; |
| 51 | +// Construct an example ring with dummy keys |
| 52 | +let mut ring = (0..RING_SIZE).map(|i| Secret::from_seed(&i.to_le_bytes()).public().0).collect(); |
| 53 | +// Patch the ring with the public key of the prover |
| 54 | +ring[prover_key_index] = public.0; |
| 55 | +// Any key can be replaced with the padding point |
| 56 | +ring[0] = RingContext::padding_point(); |
| 57 | +``` |
| 58 | + |
| 59 | +Ring context construction |
| 60 | +```rust |
| 61 | +let ring_ctx = RingContext::from_seed(RING_SIZE, b"example seed"); |
| 62 | +``` |
| 63 | + |
| 64 | +Prove |
| 65 | +```rust |
| 66 | +use ark_ec_vrfs::ring::Prover; |
| 67 | +let prover_key = ring_ctx.prover_key(&ring); |
| 68 | +let prover = ring_ctx.prover(prover_key, prover_key_index); |
| 69 | +let proof = secret.prove(input, output, aux_data, &prover); |
| 70 | +``` |
| 71 | + |
| 72 | +Verify |
| 73 | +```rust |
| 74 | +use ark_ec_vrfs::ring::Verifier; |
| 75 | +let verifier_key = ring_ctx.verifier_key(&ring); |
| 76 | +let verifier = ring_ctx.verifier(verifier_key); |
| 77 | +let result = Public::verify(input, output, aux_data, &proof, &verifier); |
| 78 | +``` |
| 79 | + |
| 80 | +Verifier key from commitment |
| 81 | +```rust |
| 82 | +let ring_commitment = ring_ctx.verifier_key().commitment(); |
| 83 | +let verifier_key = ring_ctx.verifier_key_from_commitment(ring_commitment); |
| 84 | +``` |
| 85 | + |
| 86 | +## License |
| 87 | + |
| 88 | +Distributed under the [MIT License](LICENSE). |
0 commit comments