proof_of_sql/base/scalar/mod.rs
1/// This module contains the definition of the `Scalar` trait, which is used to represent the scalar field used in Proof of SQL.
2mod scalar;
3pub use scalar::Scalar;
4mod error;
5pub use error::ScalarConversionError;
6/// TODO add doc
7mod mont_scalar;
8#[cfg(test)]
9mod mont_scalar_test;
10pub use mont_scalar::MontScalar;
11/// Module for a test Scalar
12#[cfg(test)]
13pub mod test_scalar;
14#[cfg(test)]
15mod test_scalar_test;
16
17mod scalar_ext;
18#[cfg(test)]
19pub(crate) use scalar_ext::test_scalar_constants;
20pub use scalar_ext::ScalarExt;