ark-srs 0.3.4

A utility crate that simplifies reuse of Common/Structured Reference String (CRS/SRS) from past trusted setup ceremonies, especially for SNARK
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Parsing trusted setup CRS into arkwork compatible rust code.

#![deny(missing_docs)]
#![no_std]

pub mod constants;
pub mod kzg10;
pub mod load;

extern crate alloc;
extern crate std;