Curdleproofs is a zero-knowledge shuffle argument inspired by BG12.
Zero-knowledge shuffle arguments can have multiple use cases: - Secret leader election protocols - Message shuffling in mixnets - Universally verifiable electronic voting protocols
The Curdleproofs protocol is described and proved secure in the Curdleproofs paper.
The user-facing documentation for this library can be found here.
In this library, we provide high-level protocol documentation for the core [curdleproofs
] argument and its sub-arguments:
- [same_scalar_argument
]
- [same_permutation_argument
]
- [grand_product_argument
]
- [inner_product_argument
]
- [same_multiscalar_argument
]
There are also notes on the optimizations deployed to speed up the verifier.
The following table gives the proof size as well as timings for proving and verifying Curdleproofs on an Intel i7-8550U CPU @ 1.80GHz
over the BLS12-381 curve:
| Shuffled Elements | Proving (ms) | Verification (ms) | Shuffling (ms): | Proof Size (bytes) | |------------------:|-------------:|------------------:|----------------:|-------------------:| | 60 | 177 | 22 | 28 | 3968 | | 124 | 304 | 27 | 57 | 4448 | | 252 | 560 | 35 | 121 | 4928 |
The following example shows how to create and verify a shuffle proof that shuffles 28 elements:
```rust
#
#
#
let mut rng = StdRng::seedfromu64(0u64);
// Number of elements we are shuffling let ell = 28;
// Construct the CRS let crs = generate_crs(ell);
// Generate some witnesses: the permutation and the randomizer
let mut permutation: Vec
// Generate some shuffle input vectors
let vecR: Vec
// Shuffle and permute inputs to generate output vectors and permutation commitments let (vecT, vecU, M, vecmblinders) = shufflepermuteandcommitinput(&crs, &vecR, &vecS, &permutation, &k, &mut rng);
// Generate a shuffle proof let shuffleproof = CurdleproofsProof::new( &crs, vecR.clone(), vecS.clone(), vecT.clone(), vecU.clone(), M, permutation, k, vecm_blinders, &mut rng, );
// Verify the shuffle proof assert!(shuffleproof .verify(&crs, &vecR, &vecS, &vecT, &vecU, &M, &mut rng) .isok());
```
This library can be compiled with cargo build
and requires rust nightly.
You can run the tests using cargo test --release
and the benchmarks using cargo bench
.