1 unstable release
0.1.0 | Aug 10, 2023 |
---|
#2025 in Cryptography
22KB
454 lines
vector-commit
This crate defines a collection of traits to use in vector commitment (VC) schemes. It additionally provides a few implementations of different VC schemes.
lib.rs
:
vector-commit
is a collection of traits for use in a vector commitment (VC) scheme.
A vector of data (the dataset) is committed to with a binding property (you cannot change the dataset after commitment).
One can then generate proofs of inclusion for the data to the commitment. These proofs can then
verify that the data was indeed in the dataset committed to by the VC scheme.
Most VC schemes aim to generate constant or logarithmic sized proofs with efficient verification. Some VC scheme require a trusted setup in which parameters are generated for proving/verification. The binding property of these schemes is reliant on no one knowing the secret used in the trusted setup.
Dependencies
~6MB
~120K SLoC