Struct snarkvm_curves::templates::bw6::bw6::BW6[][src]

pub struct BW6<P: BW6Parameters>(_);

Implementations

impl<P: BW6Parameters> BW6<P>[src]

Trait Implementations

impl<P: BW6Parameters> Clone for BW6<P>[src]

impl<P: BW6Parameters> Copy for BW6<P>[src]

impl<P: BW6Parameters> Debug for BW6<P>[src]

impl<'de, P: BW6Parameters> Deserialize<'de> for BW6<P>[src]

impl<P: BW6Parameters> Eq for BW6<P>[src]

impl<P: BW6Parameters> Hash for BW6<P>[src]

impl<P: BW6Parameters> PairingEngine for BW6<P> where
    G1Affine<P>: PairingCurve<BaseField = <P::G1Parameters as ModelParameters>::BaseField, ScalarField = <P::G1Parameters as ModelParameters>::ScalarField, Projective = G1Projective<P>, PairWith = G2Affine<P>, Prepared = G1Prepared<P>, PairingResult = Fp6<P::Fp6Params>>,
    G2Affine<P>: PairingCurve<BaseField = <P::G2Parameters as ModelParameters>::BaseField, ScalarField = <P::G1Parameters as ModelParameters>::ScalarField, Projective = G2Projective<P>, PairWith = G1Affine<P>, Prepared = G2Prepared<P>, PairingResult = Fp6<P::Fp6Params>>, 
[src]

type Fq = P::Fp

The base field that hosts G1.

type Fqe = P::Fp

The extension field that hosts G2.

type Fqk = Fp6<P::Fp6Params>

The extension field that hosts the target group of the pairing.

type Fr = <P::G1Parameters as ModelParameters>::ScalarField

This is the scalar field of the G1/G2 groups.

type G1Affine = G1Affine<P>

The affine representation of an element in G1.

type G1Projective = G1Projective<P>

The projective representation of an element in G1.

type G2Affine = G2Affine<P>

The affine representation of an element in G2.

type G2Projective = G2Projective<P>

The projective representation of an element in G2.

impl<P: BW6Parameters> PartialEq<BW6<P>> for BW6<P>[src]

impl<P: BW6Parameters> Serialize for BW6<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for BW6<P>

impl<P> Send for BW6<P>

impl<P> Sync for BW6<P>

impl<P> Unpin for BW6<P>

impl<P> UnwindSafe for BW6<P>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,