rings-snark 0.6.0

IVC SNARK implementation of Rings Network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rings SNARK
//! ===============
//! This implementation is based on NOVA

#![warn(missing_docs)]

pub mod circuit;
pub mod error;
pub mod prelude;
pub mod r1cs;
pub mod snark;
#[cfg(test)]
mod tests;
pub mod witness;