p3_commit/
lib.rs

1//! A framework for various (not necessarily hiding) cryptographic commitment schemes.
2
3#![no_std]
4
5extern crate alloc;
6
7mod adapters;
8mod domain;
9mod mmcs;
10mod pcs;
11
12#[cfg(any(test, feature = "test-utils"))]
13pub mod testing;
14
15pub use adapters::*;
16pub use domain::*;
17pub use mmcs::*;
18pub use pcs::*;