[][src]Struct blstrs::G2Affine

pub struct G2Affine(_);

This is an element of $\mathbb{G}_2$ represented in the affine coordinate space. It is ideal to keep elements in this representation to reduce memory usage and improve performance through the use of mixed curve model arithmetic.

Implementations

impl G2Affine[src]

pub fn zero() -> Self[src]

Returns the additive identity.

pub fn one() -> Self[src]

Returns a fixed generator of unknown exponent.

pub fn is_zero(&self) -> bool[src]

Determines if this point represents the point at infinity; the additive identity.

pub fn to_compressed(&self) -> [u8; 96][src]

Serializes this element into compressed form.

pub fn to_uncompressed(&self) -> [u8; 192][src]

Serializes this element into uncompressed form.

pub fn from_uncompressed(bytes: &[u8; 192]) -> Option<Self>[src]

Attempts to deserialize an uncompressed element.

pub fn from_uncompressed_unchecked(bytes: &[u8; 192]) -> Option<Self>[src]

Attempts to deserialize an uncompressed element, not checking if the element is on the curve and not checking if it is in the correct subgroup.

This is dangerous to call unless you trust the bytes you are reading; otherwise, API invariants may be broken. Please consider using from_uncompressed() instead.

pub fn from_compressed(bytes: &[u8; 96]) -> Option<Self>[src]

Attempts to deserialize a compressed element.

pub fn from_compressed_unchecked(bytes: &[u8; 96]) -> Option<Self>[src]

Attempts to deserialize an uncompressed element, not checking if the element is in the correct subgroup.

This is dangerous to call unless you trust the bytes you are reading; otherwise, API invariants may be broken. Please consider using from_compressed() instead.

pub fn is_torsion_free(&self) -> bool[src]

Returns true if this point is free of an $h$-torsion component, and so it exists within the $q$-order subgroup $\mathbb{G}_2$. This should always return true unless an "unchecked" API was used.

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

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

pub fn from_raw_unchecked(x: Fp2, y: Fp2, _infinity: bool) -> Self[src]

pub fn x(&self) -> Fp2[src]

Returns the x coordinate.

pub fn y(&self) -> Fp2[src]

Returns the y coordinate.

pub const fn uncompressed_size() -> usize[src]

pub const fn compressed_size() -> usize[src]

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> 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<'b> AddAssign<&'b G2Affine> for G2Projective[src]

impl AddAssign<G2Affine> for G2Projective[src]

impl Clone for G2Affine[src]

impl Copy for G2Affine[src]

impl CurveAffine for G2Affine[src]

type Engine = Bls12

type Scalar = Scalar

type Base = Fp2

type Projective = G2Projective

type Uncompressed = G2Uncompressed

type Compressed = G2Compressed

impl Debug for G2Affine[src]

impl Default for G2Affine[src]

impl Display for G2Affine[src]

impl Eq for G2Affine[src]

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

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

impl From<G2Affine> for G2Projective[src]

impl From<G2Projective> for G2Affine[src]

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

type Output = G2Projective

The resulting type after applying the * operator.

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

type Output = G2Projective

The resulting type after applying the * operator.

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

type Output = G2Projective

The resulting type after applying the * operator.

impl Mul<Scalar> for G2Affine[src]

type Output = G2Projective

The resulting type after applying the * operator.

impl<'_> Neg for &'_ G2Affine[src]

type Output = G2Affine

The resulting type after applying the - operator.

impl Neg for G2Affine[src]

type Output = G2Affine

The resulting type after applying the - operator.

impl PairingCurveAffine for G2Affine[src]

type Prepared = G2Prepared

type Pair = G1Affine

type PairingResult = Fp12

impl PartialEq<G2Affine> for G2Affine[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> 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<'b> SubAssign<&'b G2Affine> for G2Projective[src]

impl SubAssign<G2Affine> for 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> 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> ToString for T where
    T: Display + ?Sized
[src]

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>,