[−][src]Struct bulletproofs::r1cs::R1CSProof
A proof of some statement specified by a
ConstraintSystem
.
Statements are specified by writing gadget functions which add
constraints to a ConstraintSystem
implementation. To construct an R1CSProof
, a prover constructs
a ProverCS
, then passes it to gadget
functions to build the constraint system, then consumes the
constraint system using
ProverCS::prove
to produce an
R1CSProof
. To verify an R1CSProof
, a verifier constructs a
VerifierCS
, then passes it to the same
gadget functions to (re)build the constraint system, then consumes
the constraint system using
VerifierCS::verify
to verify the
proof.
Methods
impl R1CSProof
[src]
pub fn to_bytes(&self) -> Vec<u8>
[src]
Serializes the proof into a byte array of 1 version byte + \((13 or 16) + 2k\) 32-byte elements, where \(k=\lceil \log_2(n) \rceil\) and \(n\) is the number of multiplication gates.
Layout
The layout of the r1cs proof encoding is:
- 1 version byte indicating whether the proof contains second-phase commitments or not,
- 8 or 11 compressed Ristretto points \(A_{I1},A_{O1},S_1,(A_{I2},A_{O2},S_2),T_1,...,T_6\) (\(A_{I2},A_{O2},S_2\) are skipped if there were no multipliers added in the randomized phase),
- three scalars \(t_x, \tilde{t}_x, \tilde{e}\),
- \(k\) pairs of compressed Ristretto points \(L_0,R_0\dots,L_{k-1},R_{k-1}\),
- two scalars \(a, b\).
pub fn serialized_size(&self) -> usize
[src]
Returns the size in bytes required to serialize the R1CSProof
.
pub fn from_bytes(slice: &[u8]) -> Result<R1CSProof, R1CSError>
[src]
Deserializes the proof from a byte slice.
Returns an error if the byte slice cannot be parsed into a R1CSProof
.
Trait Implementations
impl Clone for R1CSProof
[src]
impl Debug for R1CSProof
[src]
impl<'de> Deserialize<'de> for R1CSProof
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl Serialize for R1CSProof
[src]
Auto Trait Implementations
impl RefUnwindSafe for R1CSProof
impl Send for R1CSProof
impl Sync for R1CSProof
impl Unpin for R1CSProof
impl UnwindSafe for R1CSProof
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> Cast<U> for T where
U: FromCast<T>,
U: FromCast<T>,
fn cast(self) -> U
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T> FromBits<T> for T
fn from_bits(t: T) -> T
impl<T> FromCast<T> for T
fn from_cast(t: T) -> T
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> IntoBits<U> for T where
U: FromBits<T>,
U: FromBits<T>,
fn into_bits(self) -> U
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,