Type Alias Base

Source
pub type Base = Fq;
Expand description

The base field of the Vesta and iso-Vesta curves.

Aliased Type§

struct Base(/* private fields */);

Implementations

Source§

impl Fq

Source

pub const fn zero() -> Fq

Returns zero, the additive identity.

Source

pub const fn one() -> Fq

Returns one, the multiplicative identity.

Source

pub const fn double(&self) -> Fq

Doubles this field element.

Source

pub const fn from_raw(val: [u64; 4]) -> Self

Converts from an integer represented in little endian into its (congruent) Fq representation.

Source

pub const fn square(&self) -> Fq

Squares this element.

Source

pub const fn mul(&self, rhs: &Self) -> Self

Multiplies rhs by self, returning the result.

Source

pub const fn sub(&self, rhs: &Self) -> Self

Subtracts rhs from self, returning the result.

Source

pub const fn add(&self, rhs: &Self) -> Self

Adds rhs to self, returning the result.

Source

pub const fn neg(&self) -> Self

Negates self.

Trait Implementations

Source§

impl<'b> Add<&'b Fq> for Fq

Source§

type Output = Fq

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'b Fq) -> Fq

Performs the + operation. Read more
Source§

impl Add for Fq

Source§

type Output = Fq

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Fq) -> Fq

Performs the + operation. Read more
Source§

impl<'b> AddAssign<&'b Fq> for Fq

Source§

fn add_assign(&mut self, rhs: &'b Fq)

Performs the += operation. Read more
Source§

impl AddAssign for Fq

Source§

fn add_assign(&mut self, rhs: Fq)

Performs the += operation. Read more
Source§

impl Clone for Fq

Source§

fn clone(&self) -> Fq

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl ConditionallySelectable for Fq

Source§

fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self

Select a or b according to choice. Read more
Source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
Source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
Source§

impl ConstantTimeEq for Fq

Source§

fn ct_eq(&self, other: &Self) -> Choice

Determine if two items are equal. Read more
Source§

fn ct_ne(&self, other: &Self) -> Choice

Determine if two items are NOT equal. Read more
Source§

impl Debug for Fq

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Fq

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Field for Fq

Source§

fn sqrt(&self) -> CtOption<Self>

Computes the square root of this element, if it exists.

Source§

fn invert(&self) -> CtOption<Self>

Computes the multiplicative inverse of this element, failing if the element is zero.

Source§

const ZERO: Self

The zero element of the field, the additive identity.
Source§

const ONE: Self

The one element of the field, the multiplicative identity.
Source§

fn random(rng: impl RngCore) -> Self

Returns an element chosen uniformly at random using a user-provided RNG.
Source§

fn double(&self) -> Self

Doubles this element.
Source§

fn square(&self) -> Self

Squares this element.
Source§

fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)

Computes: Read more
Source§

fn sqrt_alt(&self) -> (Choice, Self)

Equivalent to Self::sqrt_ratio(self, one()). Read more
Source§

fn pow_vartime<S: AsRef<[u64]>>(&self, exp: S) -> Self

Exponentiates self by exp, where exp is a little-endian order integer exponent. Read more
Source§

fn is_zero(&self) -> Choice

Returns true iff this element is zero.
Source§

fn is_zero_vartime(&self) -> bool

Returns true iff this element is zero. Read more
Source§

fn cube(&self) -> Self

Cubes this element.
Source§

fn pow<S>(&self, exp: S) -> Self
where S: AsRef<[u64]>,

Exponentiates self by exp, where exp is a little-endian order integer exponent. Read more
Source§

impl From<bool> for Fq

Source§

fn from(bit: bool) -> Fq

Converts to this type from the input type.
Source§

impl From<u64> for Fq

Source§

fn from(val: u64) -> Fq

Converts to this type from the input type.
Source§

impl FromUniformBytes<64> for Fq

Source§

fn from_uniform_bytes(bytes: &[u8; 64]) -> Fq

Converts a 512-bit little endian integer into a Fq by reducing by the modulus.

Source§

impl<'b> Mul<&'b Fq> for Fq

Source§

type Output = Fq

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'b Fq) -> Fq

Performs the * operation. Read more
Source§

impl Mul for Fq

Source§

type Output = Fq

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Fq) -> Fq

Performs the * operation. Read more
Source§

impl<'b> MulAssign<&'b Fq> for Fq

Source§

fn mul_assign(&mut self, rhs: &'b Fq)

Performs the *= operation. Read more
Source§

impl MulAssign for Fq

Source§

fn mul_assign(&mut self, rhs: Fq)

Performs the *= operation. Read more
Source§

impl Neg for Fq

Source§

type Output = Fq

The resulting type after applying the - operator.
Source§

fn neg(self) -> Fq

Performs the unary - operation. Read more
Source§

impl Ord for Fq

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Fq

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Fq

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PrimeField for Fq

Source§

const MODULUS: &'static str = "0x40000000000000000000000000000000224698fc0994a8dd8c46eb2100000001"

Modulus of the field written as a string for debugging purposes. Read more
Source§

const NUM_BITS: u32 = 255u32

How many bits are needed to represent an element of this field.
Source§

const CAPACITY: u32 = 254u32

How many bits of information can be reliably stored in the field element. Read more
Source§

const TWO_INV: Self

Inverse of $2$ in the field.
Source§

const MULTIPLICATIVE_GENERATOR: Self = GENERATOR

A fixed multiplicative generator of modulus - 1 order. This element must also be a quadratic nonresidue. Read more
Source§

const S: u32 = 32u32

An integer s satisfying the equation 2^s * t = modulus - 1 with t odd. Read more
Source§

const ROOT_OF_UNITY: Self = ROOT_OF_UNITY

The 2^s root of unity. Read more
Source§

const ROOT_OF_UNITY_INV: Self

Source§

const DELTA: Self = DELTA

Generator of the t-order multiplicative subgroup. Read more
Source§

type Repr = [u8; 32]

The prime field can be converted back and forth into this binary representation.
Source§

fn from_u128(v: u128) -> Self

Obtains a field element congruent to the integer v. Read more
Source§

fn from_repr(repr: Self::Repr) -> CtOption<Self>

Attempts to convert a byte representation of a field element into an element of this prime field, failing if the input is not canonical (is not smaller than the field’s modulus). Read more
Source§

fn to_repr(&self) -> Self::Repr

Converts an element of the prime field into the standard byte representation for this field. Read more
Source§

fn is_odd(&self) -> Choice

Returns true iff this element is odd.
Source§

fn from_str_vartime(s: &str) -> Option<Self>

Interpret a string of numbers as a (congruent) prime field element. Does not accept unnecessary leading zeroes or a blank string. Read more
Source§

fn from_repr_vartime(repr: Self::Repr) -> Option<Self>

Attempts to convert a byte representation of a field element into an element of this prime field, failing if the input is not canonical (is not smaller than the field’s modulus). Read more
Source§

fn is_even(&self) -> Choice

Returns true iff this element is even.
Source§

impl PrimeFieldBits for Fq

Source§

type ReprBits = [u64; 4]

The backing store for a bit representation of a prime field element.
Source§

fn to_le_bits(&self) -> FieldBits<Self::ReprBits>

Converts an element of the prime field into a little-endian sequence of bits.
Source§

fn char_le_bits() -> FieldBits<Self::ReprBits>

Returns the bits of the field characteristic (the modulus) in little-endian order.
Source§

impl<T: Borrow<Fq>> Product<T> for Fq

Source§

fn product<I: Iterator<Item = T>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl<'b> Sub<&'b Fq> for Fq

Source§

type Output = Fq

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'b Fq) -> Fq

Performs the - operation. Read more
Source§

impl Sub for Fq

Source§

type Output = Fq

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Fq) -> Fq

Performs the - operation. Read more
Source§

impl<'b> SubAssign<&'b Fq> for Fq

Source§

fn sub_assign(&mut self, rhs: &'b Fq)

Performs the -= operation. Read more
Source§

impl SubAssign for Fq

Source§

fn sub_assign(&mut self, rhs: Fq)

Performs the -= operation. Read more
Source§

impl<T: Borrow<Fq>> Sum<T> for Fq

Source§

fn sum<I: Iterator<Item = T>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl WithSmallOrderMulGroup<3> for Fq

Source§

const ZETA: Self

A field element of small multiplicative order $N$. Read more
Source§

impl Copy for Fq

Source§

impl Eq for Fq