pub type Base = Fq;
Expand description
The base field of the Vesta and iso-Vesta curves.
Aliased Type§
struct Base(/* private fields */);
Implementations
Trait Implementations
Source§impl<'b> AddAssign<&'b Fq> for Fq
impl<'b> AddAssign<&'b Fq> for Fq
Source§fn add_assign(&mut self, rhs: &'b Fq)
fn add_assign(&mut self, rhs: &'b Fq)
Performs the
+=
operation. Read moreSource§impl AddAssign for Fq
impl AddAssign for Fq
Source§fn add_assign(&mut self, rhs: Fq)
fn add_assign(&mut self, rhs: Fq)
Performs the
+=
operation. Read moreSource§impl ConditionallySelectable for Fq
impl ConditionallySelectable for Fq
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
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 moreSource§impl ConstantTimeEq for Fq
impl ConstantTimeEq for Fq
Source§impl Field for Fq
impl Field for Fq
Source§fn invert(&self) -> CtOption<Self>
fn invert(&self) -> CtOption<Self>
Computes the multiplicative inverse of this element, failing if the element is zero.
Source§fn random(rng: impl RngCore) -> Self
fn random(rng: impl RngCore) -> Self
Returns an element chosen uniformly at random using a user-provided RNG.
Source§fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)
fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)
Computes: Read more
Source§fn pow_vartime<S: AsRef<[u64]>>(&self, exp: S) -> Self
fn pow_vartime<S: AsRef<[u64]>>(&self, exp: S) -> Self
Source§fn is_zero_vartime(&self) -> bool
fn is_zero_vartime(&self) -> bool
Returns true iff this element is zero. Read more
Source§impl FromUniformBytes<64> for Fq
impl FromUniformBytes<64> for Fq
Source§impl<'b> MulAssign<&'b Fq> for Fq
impl<'b> MulAssign<&'b Fq> for Fq
Source§fn mul_assign(&mut self, rhs: &'b Fq)
fn mul_assign(&mut self, rhs: &'b Fq)
Performs the
*=
operation. Read moreSource§impl MulAssign for Fq
impl MulAssign for Fq
Source§fn mul_assign(&mut self, rhs: Fq)
fn mul_assign(&mut self, rhs: Fq)
Performs the
*=
operation. Read moreSource§impl Ord for Fq
impl Ord for Fq
Source§impl PartialOrd for Fq
impl PartialOrd for Fq
Source§impl PrimeField for Fq
impl PrimeField for Fq
Source§const MODULUS: &'static str = "0x40000000000000000000000000000000224698fc0994a8dd8c46eb2100000001"
const MODULUS: &'static str = "0x40000000000000000000000000000000224698fc0994a8dd8c46eb2100000001"
Modulus of the field written as a string for debugging purposes. Read more
Source§const CAPACITY: u32 = 254u32
const CAPACITY: u32 = 254u32
How many bits of information can be reliably stored in the field element. Read more
Source§const MULTIPLICATIVE_GENERATOR: Self = GENERATOR
const MULTIPLICATIVE_GENERATOR: Self = GENERATOR
A fixed multiplicative generator of
modulus - 1
order. This element must also be
a quadratic nonresidue. Read moreSource§const ROOT_OF_UNITY: Self = ROOT_OF_UNITY
const ROOT_OF_UNITY: Self = ROOT_OF_UNITY
The
2^s
root of unity. Read moreSource§const ROOT_OF_UNITY_INV: Self
const ROOT_OF_UNITY_INV: Self
Inverse of
Self::ROOT_OF_UNITY
.Source§type Repr = [u8; 32]
type Repr = [u8; 32]
The prime field can be converted back and forth into this binary
representation.
Source§fn from_repr(repr: Self::Repr) -> CtOption<Self>
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
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 from_str_vartime(s: &str) -> Option<Self>
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§impl PrimeFieldBits for Fq
impl PrimeFieldBits for Fq
Source§fn to_le_bits(&self) -> FieldBits<Self::ReprBits>
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>
fn char_le_bits() -> FieldBits<Self::ReprBits>
Returns the bits of the field characteristic (the modulus) in little-endian order.
Source§impl<'b> SubAssign<&'b Fq> for Fq
impl<'b> SubAssign<&'b Fq> for Fq
Source§fn sub_assign(&mut self, rhs: &'b Fq)
fn sub_assign(&mut self, rhs: &'b Fq)
Performs the
-=
operation. Read moreSource§impl SubAssign for Fq
impl SubAssign for Fq
Source§fn sub_assign(&mut self, rhs: Fq)
fn sub_assign(&mut self, rhs: Fq)
Performs the
-=
operation. Read more