[][src]Struct irmaseal_curve::G2Projective

pub struct G2Projective { /* fields omitted */ }

This is an element of $\mathbb{G}_2$ represented in the projective coordinate space.

Methods

impl G2Projective[src]

pub fn identity() -> G2Projective[src]

Returns the identity of the group: the point at infinity.

pub fn generator() -> G2Projective[src]

Returns a fixed generator of the group. See notes::design for how this generator is chosen.

pub fn double(&self) -> G2Projective[src]

Computes the doubling of this point.

pub fn add(&self, rhs: &G2Projective) -> G2Projective[src]

Adds this point to another point.

pub fn add_mixed(&self, rhs: &G2Affine) -> G2Projective[src]

Adds this point to another point in the affine model.

pub fn clear_cofactor(&self) -> G2Projective[src]

Clears the cofactor, using Budroni-Pintore. This is equivalent to multiplying by $h_\textrm{eff} = 3(z^2 - 1) \cdot h_2$, where $h_2$ is the cofactor of $\mathbb{G}_2$ and $z$ is the parameter of BLS12-381.

The endomorphism is only actually used if the crate feature endo is enabled, and it is disabled by default to mitigate potential patent issues.

pub fn batch_normalize(p: &[Self], q: &mut [G2Affine])[src]

Converts a batch of G2Projective elements into G2Affine elements. This function will panic if p.len() != q.len().

pub fn is_identity(&self) -> Choice[src]

Returns true if this element is the identity (the point at infinity).

pub fn is_on_curve(&self) -> Choice[src]

Returns true if this point is on the curve. This should always return true unless an "unchecked" API was used.

Trait Implementations

impl<'a, 'b> Add<&'b G2Affine> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'b> Add<&'b G2Affine> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b G2Projective> for &'a G2Affine[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'b> Add<&'b G2Projective> for G2Affine[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b G2Projective> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'b> Add<&'b G2Projective> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'a> Add<G2Affine> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl Add<G2Affine> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'a> Add<G2Projective> for &'a G2Affine[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl Add<G2Projective> for G2Affine[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'a> Add<G2Projective> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl Add<G2Projective> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the + operator.

impl<'b> AddAssign<&'b G2Affine> for G2Projective[src]

impl<'b> AddAssign<&'b G2Projective> for G2Projective[src]

impl AddAssign<G2Affine> for G2Projective[src]

impl AddAssign<G2Projective> for G2Projective[src]

impl Clone for G2Projective[src]

impl ConditionallySelectable for G2Projective[src]

impl ConstantTimeEq for G2Projective[src]

impl Copy for G2Projective[src]

impl Debug for G2Projective[src]

impl Eq for G2Projective[src]

impl<'a> From<&'a G2Affine> for G2Projective[src]

impl<'a> From<&'a G2Projective> for G2Affine[src]

impl From<G2Affine> for G2Projective[src]

impl From<G2Projective> for G2Affine[src]

impl<'a, 'b> Mul<&'b Scalar> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the * operator.

impl<'b> Mul<&'b Scalar> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the * operator.

impl<'a> Mul<Scalar> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the * operator.

impl Mul<Scalar> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the * operator.

impl<'b> MulAssign<&'b Scalar> for G2Projective[src]

impl MulAssign<Scalar> for G2Projective[src]

impl<'a> Neg for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl Neg for G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl PartialEq<G2Projective> for G2Projective[src]

impl<'a, 'b> Sub<&'b G2Affine> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'b> Sub<&'b G2Affine> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b G2Projective> for &'a G2Affine[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'b> Sub<&'b G2Projective> for G2Affine[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b G2Projective> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'b> Sub<&'b G2Projective> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'a> Sub<G2Affine> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl Sub<G2Affine> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'a> Sub<G2Projective> for &'a G2Affine[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl Sub<G2Projective> for G2Affine[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'a> Sub<G2Projective> for &'a G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl Sub<G2Projective> for G2Projective[src]

type Output = G2Projective

The resulting type after applying the - operator.

impl<'b> SubAssign<&'b G2Affine> for G2Projective[src]

impl<'b> SubAssign<&'b G2Projective> for G2Projective[src]

impl SubAssign<G2Affine> for G2Projective[src]

impl SubAssign<G2Projective> for G2Projective[src]

impl<T> Sum<T> for G2Projective where
    T: Borrow<G2Projective>, 
[src]

Auto Trait Implementations

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> ConditionallyNegatable for T where
    T: ConditionallySelectable,
    &'a T: Neg,
    <&'a T as Neg>::Output == T, 
[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.