Fp

Struct Fp 

Source
pub struct Fp(pub u32);

Tuple Fields§

§0: u32

Trait Implementations§

Source§

impl<'a, 'b> Add<&'b Fp> for &'a Fp

Source§

type Output = Fp

The resulting type after applying the + operator.
Source§

fn add(self, other: &'b Fp) -> Fp

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the + operator.
Source§

fn add(self, other: &Self) -> Self

Performs the + operation. Read more
Source§

impl<'a> Add<&'a mut Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a mut Self) -> Self

Performs the + operation. Read more
Source§

impl Add for Fp

Source§

type Output = Fp

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
Source§

impl<'a> AddAssign<&'a Fp> for Fp

Source§

fn add_assign(&mut self, other: &Self)

Performs the += operation. Read more
Source§

impl<'a> AddAssign<&'a mut Fp> for Fp

Source§

fn add_assign(&mut self, other: &mut Self)

Performs the += operation. Read more
Source§

impl AddAssign for Fp

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl CanonicalDeserialize for Fp

Source§

fn deserialize_with_mode<R: Read>( reader: R, _compress: Compress, _validate: Validate, ) -> Result<Self, SerializationError>

The general deserialize method that takes in customization flags.
Source§

fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_compressed_unchecked<R>( reader: R, ) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_uncompressed_unchecked<R>( reader: R, ) -> Result<Self, SerializationError>
where R: Read,

Source§

impl CanonicalDeserializeWithFlags for Fp

Source§

fn deserialize_with_flags<R: Read, F: Flags>( reader: R, ) -> Result<(Self, F), SerializationError>

Reads Self and Flags from reader. Returns empty flags by default.
Source§

impl CanonicalSerialize for Fp

Source§

fn serialize_with_mode<W: Write>( &self, writer: W, _compress: Compress, ) -> Result<(), SerializationError>

The general serialize method that takes in customization flags.
Source§

fn serialized_size(&self, _compress: Compress) -> usize

Source§

fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>
where W: Write,

Source§

fn compressed_size(&self) -> usize

Source§

fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>
where W: Write,

Source§

fn uncompressed_size(&self) -> usize

Source§

impl CanonicalSerializeWithFlags for Fp

Source§

fn serialize_with_flags<W: Write, F: Flags>( &self, writer: W, flags: F, ) -> Result<(), SerializationError>

Serializes self and flags into writer.
Source§

fn serialized_size_with_flags<F: Flags>(&self) -> usize

Serializes self and flags into writer.
Source§

impl Clone for Fp

Source§

fn clone(&self) -> Fp

Returns a duplicate 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 Debug for Fp

Source§

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

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

impl Default for Fp

Source§

fn default() -> Fp

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

impl Display for Fp

Outputs a string containing the value of self, represented as a decimal without leading zeroes.

Source§

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

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

impl Distribution<Fp> for Standard

Source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Fp

Generate a random value of T, using rng as the source of randomness.
Source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
Source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
Source§

impl<'a, 'b> Div<&'b Fp> for &'a Fp

Source§

type Output = Fp

The resulting type after applying the / operator.
Source§

fn div(self, other: &Fp) -> Fp

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Fp> for Fp

Source§

fn div(self, other: &Self) -> Self

Returns self * other.inverse() if other.inverse() is Some, and panics otherwise.

Source§

type Output = Fp

The resulting type after applying the / operator.
Source§

impl<'a> Div<&'a mut Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the / operator.
Source§

fn div(self, other: &'a mut Self) -> Self

Performs the / operation. Read more
Source§

impl Div for Fp

Source§

type Output = Fp

The resulting type after applying the / operator.
Source§

fn div(self, other: Self) -> Self

Performs the / operation. Read more
Source§

impl<'a> DivAssign<&'a Fp> for Fp

Computes self *= other.inverse() if other.inverse() is Some, and panics otherwise.

Source§

fn div_assign(&mut self, other: &Self)

Performs the /= operation. Read more
Source§

impl<'a> DivAssign<&'a mut Fp> for Fp

Source§

fn div_assign(&mut self, other: &'a mut Self)

Performs the /= operation. Read more
Source§

impl DivAssign for Fp

Source§

fn div_assign(&mut self, other: Self)

Performs the /= operation. Read more
Source§

impl FftField for Fp

Source§

const GENERATOR: Self

The generator of the multiplicative group of the field
Source§

const TWO_ADICITY: u32 = 1u32

Let N be the size of the multiplicative group defined by the field. Then TWO_ADICITY is the two-adicity of N, i.e. the integer s such that N = 2^s * t for some odd integer t.
Source§

const TWO_ADIC_ROOT_OF_UNITY: Self

2^s root of unity computed by GENERATOR^t
Source§

const SMALL_SUBGROUP_BASE: Option<u32> = None

An integer b such that there exists a multiplicative subgroup of size b^k for some integer k.
Source§

const SMALL_SUBGROUP_BASE_ADICITY: Option<u32> = None

The integer k such that there exists a multiplicative subgroup of size Self::SMALL_SUBGROUP_BASE^k.
Source§

const LARGE_SUBGROUP_ROOT_OF_UNITY: Option<Self> = None

GENERATOR^((MODULUS-1) / (2^s * SMALL_SUBGROUP_BASE^SMALL_SUBGROUP_BASE_ADICITY)) Used for mixed-radix FFT.
Source§

fn get_root_of_unity(n: u64) -> Option<Self>

Returns the root of unity of order n, if one exists. If no small multiplicative subgroup is defined, this is the 2-adic root of unity of order n (for n a power of 2). If a small multiplicative subgroup is defined, this is the root of unity of order n for the larger subgroup generated by FftConfig::LARGE_SUBGROUP_ROOT_OF_UNITY (for n = 2^i * FftConfig::SMALL_SUBGROUP_BASE^j for some i, j).
Source§

impl Field for Fp

Source§

fn frobenius_map_in_place(&mut self, _: usize)

The Frobenius map has no effect in a prime field.

Source§

const SQRT_PRECOMP: Option<SqrtPrecomputation<Self>>

Determines the algorithm for computing square roots.
Source§

const ZERO: Self

The additive identity of the field.
Source§

const ONE: Self

The multiplicative identity of the field.
Source§

type BasePrimeField = Fp

Source§

type BasePrimeFieldIter = Once<<Fp as Field>::BasePrimeField>

Source§

fn extension_degree() -> u64

Returns the extension degree of this field with respect to Self::BasePrimeField.
Source§

fn from_base_prime_field(elem: Self::BasePrimeField) -> Self

Constructs a field element from a single base prime field elements. Read more
Source§

fn to_base_prime_field_elements(&self) -> Self::BasePrimeFieldIter

Source§

fn from_base_prime_field_elems(elems: &[Self::BasePrimeField]) -> Option<Self>

Convert a slice of base prime field elements into a field element. If the slice length != Self::extension_degree(), must return None.
Source§

fn double(&self) -> Self

Returns self + self.
Source§

fn double_in_place(&mut self) -> &mut Self

Doubles self in place.
Source§

fn neg_in_place(&mut self) -> &mut Self

Negates self in place.
Source§

fn characteristic() -> &'static [u64]

Returns the characteristic of the field, in little-endian representation.
Source§

fn sum_of_products<const T: usize>(a: &[Self; T], b: &[Self; T]) -> Self

Returns sum([a_i * b_i]).
Source§

fn from_random_bytes_with_flags<F: Flags>(_bytes: &[u8]) -> Option<(Self, F)>

Attempt to deserialize a field element, splitting the bitflags metadata according to F specification. Returns None if the deserialization fails. Read more
Source§

fn square(&self) -> Self

Returns self * self.
Source§

fn square_in_place(&mut self) -> &mut Self

Squares self in place.
Source§

fn inverse(&self) -> Option<Self>

Computes the multiplicative inverse of self if self is nonzero.
Source§

fn inverse_in_place(&mut self) -> Option<&mut Self>

If self.inverse().is_none(), this just returns None. Otherwise, it sets self to self.inverse().unwrap().
Source§

fn legendre(&self) -> LegendreSymbol

Returns a LegendreSymbol, which indicates whether this field element is 1 : a quadratic residue 0 : equal to 0 -1 : a quadratic non-residue
Source§

fn from_random_bytes(bytes: &[u8]) -> Option<Self>

Attempt to deserialize a field element. Returns None if the deserialization fails. Read more
Source§

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

Returns the square root of self, if it exists.
Source§

fn sqrt_in_place(&mut self) -> Option<&mut Self>

Sets self to be the square root of self, if it exists.
Source§

fn frobenius_map(&self, power: usize) -> Self

Returns self^s, where s = Self::BasePrimeField::MODULUS^power. This is also called the Frobenius automorphism.
Source§

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

Returns self^exp, where exp is an integer represented with u64 limbs, least significant limb first.
Source§

fn pow_with_table<S>(powers_of_2: &[Self], exp: S) -> Option<Self>
where S: AsRef<[u64]>,

Exponentiates a field element f by a number represented with u64 limbs, using a precomputed table containing as many powers of 2 of f as the 1 + the floor of log2 of the exponent exp, starting from the 1st power. That is, powers_of_2 should equal &[p, p^2, p^4, ..., p^(2^n)] when exp has at most n bits. Read more
Source§

impl From<BigInt<1>> for Fp

Source§

fn from(other: BigInt<1>) -> Self

Converts to this type from the input type.
Source§

impl From<BigUint> for Fp

Source§

fn from(other: BigUint) -> Self

Converts to this type from the input type.
Source§

impl From<Fp> for BigInt<1>

Source§

fn from(fp: Fp) -> Self

Converts to this type from the input type.
Source§

impl From<Fp> for BigUint

Source§

fn from(fp: Fp) -> Self

Converts to this type from the input type.
Source§

impl From<bool> for Fp

Source§

fn from(other: bool) -> Self

Converts to this type from the input type.
Source§

impl From<i128> for Fp

Source§

fn from(other: i128) -> Self

Converts to this type from the input type.
Source§

impl From<i16> for Fp

Source§

fn from(other: i16) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for Fp

Source§

fn from(other: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for Fp

Source§

fn from(other: i64) -> Self

Converts to this type from the input type.
Source§

impl From<i8> for Fp

Source§

fn from(other: i8) -> Self

Converts to this type from the input type.
Source§

impl From<u128> for Fp

Source§

fn from(other: u128) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for Fp

Source§

fn from(other: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for Fp

Source§

fn from(other: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u64> for Fp

Source§

fn from(other: u64) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for Fp

Source§

fn from(other: u8) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Fp

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

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

Source§

type Err = ()

The associated error which can be returned from parsing.
Source§

impl Hash for Fp

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a, 'b> Mul<&'b Fp> for &'a Fp

Source§

type Output = Fp

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Fp) -> Fp

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Self) -> Self

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a mut Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the * operator.
Source§

fn mul(self, other: &'a mut Self) -> Self

Performs the * operation. Read more
Source§

impl Mul for Fp

Source§

type Output = Fp

The resulting type after applying the * operator.
Source§

fn mul(self, other: Self) -> Self

Performs the * operation. Read more
Source§

impl<'a> MulAssign<&'a Fp> for Fp

Source§

fn mul_assign(&mut self, other: &'a Self)

Performs the *= operation. Read more
Source§

impl<'a> MulAssign<&'a mut Fp> for Fp

Source§

fn mul_assign(&mut self, other: &'a mut Self)

Performs the *= operation. Read more
Source§

impl MulAssign for Fp

Source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
Source§

impl Neg for Fp

Source§

type Output = Fp

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl One for Fp

Source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
Source§

fn is_one(&self) -> bool

Returns true if self is equal to the multiplicative identity. Read more
Source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Source§

impl Ord for Fp

Note that this implementation of Ord compares field elements viewing them as integers in the range 0, 1, …, P::MODULUS - 1. However, other implementations of PrimeField might choose a different ordering, and as such, users should use this Ord for applications where any ordering suffices (like in a BTreeMap), and not in applications where a particular ordering is required.

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 Fp

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 Fp

Note that this implementation of PartialOrd compares field elements viewing them as integers in the range 0, 1, …, P::MODULUS - 1. However, other implementations of PrimeField might choose a different ordering, and as such, users should use this PartialOrd for applications where any ordering suffices (like in a BTreeMap), and not in applications where a particular ordering is required.

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 Fp

Source§

const MODULUS: Self::BigInt

The modulus p.
Source§

const MODULUS_MINUS_ONE_DIV_TWO: Self::BigInt

The value (p - 1)/ 2.
Source§

const MODULUS_BIT_SIZE: u32 = 31u32

The size of the modulus in bits.
Source§

const TRACE: Self::BigInt

The trace of the field is defined as the smallest integer t such that by 2^s * t = p - 1, and t is coprime to 2.
Source§

const TRACE_MINUS_ONE_DIV_TWO: Self::BigInt

The value (t - 1)/ 2.
Source§

type BigInt = BigInt<1>

A BigInteger type that can represent elements of this field.
Source§

fn from_bigint(r: BigInt<1>) -> Option<Self>

Construct a prime field element from an integer in the range 0..(p - 1).
Source§

fn into_bigint(self) -> BigInt<1>

Converts an element of the prime field into an integer in the range 0..(p - 1).
Source§

fn from_be_bytes_mod_order(bytes: &[u8]) -> Self

Reads bytes in big-endian, and converts them to a field element. If the integer represented by bytes is larger than the modulus p, this method performs the appropriate reduction.
Source§

fn from_le_bytes_mod_order(bytes: &[u8]) -> Self

Reads bytes in little-endian, and converts them to a field element. If the integer represented by bytes is larger than the modulus p, this method performs the appropriate reduction.
Source§

impl<'a> Product<&'a Fp> for Fp

Source§

fn product<I: Iterator<Item = &'a Self>>(iter: I) -> Self

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

impl Product for Fp

Source§

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

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

impl<'a, 'b> Sub<&'b Fp> for &'a Fp

Source§

type Output = Fp

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Fp) -> Fp

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Self) -> Self

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a mut Fp> for Fp

Source§

type Output = Fp

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a mut Self) -> Self

Performs the - operation. Read more
Source§

impl Sub for Fp

Source§

type Output = Fp

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
Source§

impl<'a> SubAssign<&'a Fp> for Fp

Source§

fn sub_assign(&mut self, other: &Self)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign<&'a mut Fp> for Fp

Source§

fn sub_assign(&mut self, other: &mut Self)

Performs the -= operation. Read more
Source§

impl SubAssign for Fp

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl<'a> Sum<&'a Fp> for Fp

Source§

fn sum<I: Iterator<Item = &'a Self>>(iter: I) -> Self

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

impl Sum for Fp

Source§

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

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

impl Valid for Fp

Source§

fn check(&self) -> Result<(), SerializationError>

Source§

fn batch_check<'a>( batch: impl Iterator<Item = &'a Self> + Send, ) -> Result<(), SerializationError>
where Self: 'a,

Source§

impl Zero for Fp

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zeroize for Fp

Source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
Source§

impl Copy for Fp

Source§

impl Eq for Fp

Auto Trait Implementations§

§

impl Freeze for Fp

§

impl RefUnwindSafe for Fp

§

impl Send for Fp

§

impl Sync for Fp

§

impl Unpin for Fp

§

impl UnwindSafe for Fp

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CanonicalSerializeHashExt for T

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<F> ToConstraintField<F> for F
where F: PrimeField,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UniformRand for T

Source§

fn rand<R>(rng: &mut R) -> T
where R: Rng + ?Sized,

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V