Struct dusk_bls12_381::G2Affine[][src]

pub struct G2Affine { /* fields omitted */ }

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.

Values of G2Affine are guaranteed to be in the $q$-order subgroup unless an “unchecked” API was misused.

Implementations

impl G2Affine[src]

pub const RAW_SIZE: usize[src]

Bytes size of the raw representation

pub fn identity() -> G2Affine[src]

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

pub fn generator() -> G2Affine[src]

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

pub fn to_raw_bytes(&self) -> [u8; 193][src]

Raw bytes representation

The intended usage of this function is for trusted sets of data where performance is critical.

For secure serialization, check to_bytes

pub unsafe fn from_slice_unchecked(bytes: &[u8]) -> Self[src]

Create a G2Affine from a set of bytes created by G2Affine::to_raw_bytes.

No check is performed and no constant time is granted. The expected usage of this function is for trusted bytes where performance is critical.

For secure serialization, check from_bytes

After generating the point, you can check is_on_curve and is_torsion_free to grant its security

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

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

pub fn is_torsion_free(&self) -> Choice[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) -> 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> 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 ConditionallySelectable for G2Affine[src]

impl ConstantTimeEq for G2Affine[src]

impl Copy for G2Affine[src]

impl Debug for G2Affine[src]

impl Default for G2Affine[src]

impl Eq for G2Affine[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<G2Affine> for G2Prepared[src]

impl From<G2Projective> for G2Affine[src]

impl LowerHex 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<'a> Neg for &'a 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 PartialEq<G2Affine> for G2Affine[src]

impl Serializable<96_usize> for G2Affine[src]

type Error = BytesError

The type returned in the event of a conversion error.

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

Serializes this element into compressed form. See notes::serialization for details about how group elements are serialized.

fn from_bytes(buf: &[u8; 96]) -> Result<Self, Self::Error>[src]

Attempts to deserialize a compressed element. See notes::serialization for details about how group elements are serialized.

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]

impl UpperHex for G2Affine[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: for<'a> Neg,
    <&'a T as Neg>::Output == T, 
[src]

impl<T, const N: usize> DeserializableSlice<N> for T where
    T: Serializable<N>, 
[src]

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

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

impl<T, const N: usize> ParseHexStr<N> for T where
    T: Serializable<N>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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.