benchmark code (#18)

This commit is contained in:
zhenfei
2022-05-16 20:32:49 -04:00
committed by GitHub
parent 0d77c3a2b1
commit 2812d2bce2
5 changed files with 130 additions and 1 deletions

View File

@@ -9,7 +9,10 @@ mod utils;
mod virtual_poly;
mod zero_check;
pub use errors::PolyIOPErrors;
pub use sum_check::SumCheck;
pub use virtual_poly::VirtualPolynomial;
pub use zero_check::ZeroCheck;
/// Struct for PolyIOP protocol.
/// It is instantiated with

View File

@@ -27,7 +27,7 @@ impl<F: PrimeField> IOPTranscript<F> {
}
// append the message to the transcript
pub(crate) fn append_message(
pub fn append_message(
&mut self,
label: &'static [u8],
msg: &[u8],