Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit 132508f

Browse files
authored
Improve README (#40)
1 parent 05808d9 commit 132508f

File tree

2 files changed

+95
-16
lines changed

2 files changed

+95
-16
lines changed

README.md

+85-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,88 @@
1-
# Elliptic Curve VRFs
1+
# Elliptic Curve VRF-AD
22

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.
77

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.
910

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).

src/lib.rs

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
//! # Elliptic Curve VRFs.
22
//!
3-
//! Provides:
4-
//! - IETF VRF as described by [RFC 9381](https://datatracker.ietf.org/doc/rfc9381).
5-
//! - Pedersen VRF as described by [Burdges](https://eprint.iacr.org/2023/002).
6-
//! - Ring VRF as described by [Vasilyev](https://eprint.iacr.org/2023/002).
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.
77
//!
8-
//! Primitives description is further elaborated in the
9-
//! [technical spec](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.
1010
//!
11-
//! The implementation is built using Arkworks and is quite flexible to further
12-
//! customization.
11+
//! Supported VRFs:
12+
//! - **IETF VRF**: Complies with ECVRF described in [RFC9381](https://datatracker.ietf.org/doc/rfc9381).
13+
//! - **Pedersen VRF**: Described in [BCHSV23](https://eprint.iacr.org/2023/002).
14+
//! - **Ring VRF**: A zero-knowledge-based inspired by [BCHSV23](https://eprint.iacr.org/2023/002).
1315
1416
#![cfg_attr(not(feature = "std"), no_std)]
1517
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)