[−][src]Struct snarkos_algorithms::snark::groth16::Proof
A proof in the Groth16 SNARK.
Fields
a: E::G1Affine
b: E::G2Affine
c: E::G1Affine
Implementations
impl<E: PairingEngine> Proof<E>
[src]
pub fn write<W: Write>(&self, writer: W) -> IoResult<()>
[src]
Serialize the proof into bytes, for storage on disk or transmission over the network.
pub fn read<R: Read>(reader: R) -> IoResult<Self>
[src]
Deserialize the proof from bytes.
Trait Implementations
impl<E: PairingEngine> CanonicalDeserialize for Proof<E>
[src]
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, SerializationError>
[src]
fn deserialize_uncompressed<R: Read>(
reader: &mut R
) -> Result<Self, SerializationError>
[src]
reader: &mut R
) -> Result<Self, SerializationError>
impl<E: PairingEngine> CanonicalSerialize for Proof<E>
[src]
fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), SerializationError>
[src]
fn serialized_size(&self) -> usize
[src]
fn serialize_uncompressed<W: Write>(
&self,
writer: &mut W
) -> Result<(), SerializationError>
[src]
&self,
writer: &mut W
) -> Result<(), SerializationError>
fn uncompressed_size(&self) -> usize
[src]
impl<E: Clone + PairingEngine> Clone for Proof<E> where
E::G1Affine: Clone,
E::G2Affine: Clone,
E::G1Affine: Clone,
[src]
E::G1Affine: Clone,
E::G2Affine: Clone,
E::G1Affine: Clone,
impl<E: Debug + PairingEngine> Debug for Proof<E> where
E::G1Affine: Debug,
E::G2Affine: Debug,
E::G1Affine: Debug,
[src]
E::G1Affine: Debug,
E::G2Affine: Debug,
E::G1Affine: Debug,
impl<E: PairingEngine> Default for Proof<E>
[src]
impl<E: PairingEngine> FromBytes for Proof<E>
[src]
impl<E: PairingEngine> PartialEq<Proof<E>> for Proof<E>
[src]
impl<E: PairingEngine> ToBytes for Proof<E>
[src]
Auto Trait Implementations
impl<E> RefUnwindSafe for Proof<E> where
<E as PairingEngine>::G1Affine: RefUnwindSafe,
<E as PairingEngine>::G2Affine: RefUnwindSafe,
<E as PairingEngine>::G1Affine: RefUnwindSafe,
<E as PairingEngine>::G2Affine: RefUnwindSafe,
impl<E> Send for Proof<E> where
<E as PairingEngine>::G1Affine: Send,
<E as PairingEngine>::G2Affine: Send,
<E as PairingEngine>::G1Affine: Send,
<E as PairingEngine>::G2Affine: Send,
impl<E> Sync for Proof<E> where
<E as PairingEngine>::G1Affine: Sync,
<E as PairingEngine>::G2Affine: Sync,
<E as PairingEngine>::G1Affine: Sync,
<E as PairingEngine>::G2Affine: Sync,
impl<E> Unpin for Proof<E> where
<E as PairingEngine>::G1Affine: Unpin,
<E as PairingEngine>::G2Affine: Unpin,
<E as PairingEngine>::G1Affine: Unpin,
<E as PairingEngine>::G2Affine: Unpin,
impl<E> UnwindSafe for Proof<E> where
<E as PairingEngine>::G1Affine: UnwindSafe,
<E as PairingEngine>::G2Affine: UnwindSafe,
<E as PairingEngine>::G1Affine: UnwindSafe,
<E as PairingEngine>::G2Affine: UnwindSafe,
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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 = Infallible
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,