Struct ark_ec::models::mnt6::MNT6[][src]

pub struct MNT6<P: MNT6Parameters>(_);

Implementations

impl<P: MNT6Parameters> MNT6<P>[src]

pub fn ate_miller_loop(
    p: &G1Prepared<P>,
    q: &G2Prepared<P>
) -> Fp6<P::Fp6Params>
[src]

pub fn final_exponentiation(value: &Fp6<P::Fp6Params>) -> GT<P::Fp6Params>[src]

Trait Implementations

impl<P: MNT6Parameters> Clone for MNT6<P>[src]

impl<P: MNT6Parameters> Copy for MNT6<P>[src]

impl<P: MNT6Parameters> Debug for MNT6<P>[src]

impl<P: MNT6Parameters> Eq for MNT6<P>[src]

impl<P: MNT6Parameters> Hash for MNT6<P>[src]

impl<P: MNT6Parameters> PairingEngine for MNT6<P>[src]

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

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

type G1Projective = G1Projective<P>

The projective representation of an element in G1.

type G1Affine = G1Affine<P>

The affine representation of an element in G1.

type G1Prepared = G1Prepared<P>

A G1 element that has been preprocessed for use in a pairing.

type G2Projective = G2Projective<P>

The projective representation of an element in G2.

type G2Affine = G2Affine<P>

The affine representation of an element in G2.

type G2Prepared = G2Prepared<P>

A G2 element that has been preprocessed for use in a pairing.

type Fq = P::Fp

The base field that hosts G1.

type Fqe = Fp3<P::Fp3Params>

The extension field that hosts G2.

type Fqk = Fp6<P::Fp6Params>

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

impl<P: MNT6Parameters> PartialEq<MNT6<P>> for MNT6<P>[src]

Auto Trait Implementations

impl<P> Send for MNT6<P>

impl<P> Sync for MNT6<P>

impl<P> Unpin for MNT6<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> 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>,