Macros§
- Construct a
Fp<MontBackend<T, N>, N>
element from a literal string. This should be used primarily for constructing constant field elements; in a non-const context,Fp::from_str
is preferable.
Structs§
- Represents an element of the prime field F_p, where
p == P::MODULUS
. This type can represent elements in any field of size at most N * 64 bits.
Traits§
- A trait that specifies the configuration of a prime field. Also specifies how to perform arithmetic on field elements.
- A trait that specifies the constants and arithmetic procedures for Montgomery arithmetic over the prime field defined by
MODULUS
.
Functions§
- Compute -M^{-1} mod 2^64.
Type Aliases§
Derive Macros§
- Derive the
MontConfig
trait.