1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2024 Ulvetanna Inc.

//! The multiset check polynomial protocol.
//!
//! Multiset check provides a deterministic reduction of multiset equality claims to product check claims
//! (see [`prove`](self::prove::prove()) for an in-depth description)

mod error;
#[allow(clippy::module_inception)]
mod msetcheck;
mod prove;
#[cfg(test)]
mod tests;
mod verify;

pub use error::*;
pub use msetcheck::{MsetcheckClaim, MsetcheckProveOutput, MsetcheckWitness};
pub use prove::*;
pub use verify::*;