pub struct SNARK { /* private fields */ }Expand description
SNARK holds a proof produced by Spartan SNARK
Implementations§
Source§impl SNARK
impl SNARK
Sourcepub fn encode(
inst: &Instance,
gens: &SNARKGens,
) -> (ComputationCommitment, ComputationDecommitment)
pub fn encode( inst: &Instance, gens: &SNARKGens, ) -> (ComputationCommitment, ComputationDecommitment)
A public computation to create a commitment to an R1CS instance
Sourcepub fn prove(
inst: &Instance,
comm: &ComputationCommitment,
decomm: &ComputationDecommitment,
vars: VarsAssignment,
inputs: &InputsAssignment,
gens: &SNARKGens,
transcript: &mut Transcript,
) -> Self
pub fn prove( inst: &Instance, comm: &ComputationCommitment, decomm: &ComputationDecommitment, vars: VarsAssignment, inputs: &InputsAssignment, gens: &SNARKGens, transcript: &mut Transcript, ) -> Self
A method to produce a SNARK proof of the satisfiability of an R1CS instance
Sourcepub fn verify(
&self,
comm: &ComputationCommitment,
input: &InputsAssignment,
transcript: &mut Transcript,
gens: &SNARKGens,
) -> Result<(), ProofVerifyError>
pub fn verify( &self, comm: &ComputationCommitment, input: &InputsAssignment, transcript: &mut Transcript, gens: &SNARKGens, ) -> Result<(), ProofVerifyError>
A method to verify the SNARK proof of the satisfiability of an R1CS instance
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SNARK
impl<'de> Deserialize<'de> for SNARK
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SNARK
impl RefUnwindSafe for SNARK
impl Send for SNARK
impl Sync for SNARK
impl Unpin for SNARK
impl UnwindSafe for SNARK
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more