Sketch fn signature for verification

This commit is contained in:
Daniel Sanchez Quiros 2024-04-01 20:01:13 +02:00
parent b5898aa958
commit dbf84ff1b6
1 changed files with 11 additions and 1 deletions

View File

@ -17,7 +17,7 @@ pub fn commit_polynomial(
}
/// Compute a witness polynomial in that satisfies `witness(x) = (f(x)-v)/(x-u)`
fn generate_element_proof(
pub fn generate_element_proof(
element_index: usize,
polynomial: &DensePolynomial<Fr>,
roots_of_unity: &Powers<Bls12_381>,
@ -36,6 +36,16 @@ fn generate_element_proof(
Ok(proof)
}
pub fn verify_element_proof(
element: &Fr,
commitment: &Commitment<Bls12_381>,
proof: &Proof<Bls12_381>,
element_index: usize,
roots_of_unity: &Powers<Fr>,
) -> bool {
todo!()
}
#[cfg(test)]
mod test {
use crate::kzg::commit_polynomial;