pub struct Scalar(_);broken-arithmetic-do-not-use only.Expand description
Scalars are elements in the finite field modulo n.
⚠️ WARNING: experimental implementation!
The scalar arithmetic implementation provided by this type is experimental, poorly tested, and may produce incorrect results.
We do not recommend using it in any sort of production capacity at this time.
USE AT YOUR OWN RISK!
Trait impls
Much of the important functionality of scalars is provided by traits from
the ff crate, which is re-exported as
p384::elliptic_curve::ff:
Field- represents elements of finite fields and provides:Field::random- generate a random scalardouble,square, andinvertoperations- Bounds for
Add,Sub,Mul, andNeg(as well as*Assignequivalents) - Bounds for
ConditionallySelectablefrom thesubtlecrate
PrimeField- represents elements of prime fields and provides:from_repr/to_reprfor converting field elements from/to big integers.multiplicative_generatorandroot_of_unityconstants.
Please see the documentation for the relevant traits for more information.
Implementations
sourceimpl Scalar
impl Scalar
sourcepub fn to_bytes(&self) -> FieldBytes
pub fn to_bytes(&self) -> FieldBytes
Returns the SEC1 encoding of this scalar.
Trait Implementations
sourceimpl AddAssign<&'_ Scalar> for Scalar
impl AddAssign<&'_ Scalar> for Scalar
sourcefn add_assign(&mut self, other: &Scalar)
fn add_assign(&mut self, other: &Scalar)
Performs the += operation. Read more
sourceimpl AddAssign<Scalar> for Scalar
impl AddAssign<Scalar> for Scalar
sourcefn add_assign(&mut self, other: Scalar)
fn add_assign(&mut self, other: Scalar)
Performs the += operation. Read more
sourceimpl ConditionallySelectable for Scalar
impl ConditionallySelectable for Scalar
sourceimpl ConstantTimeEq for Scalar
impl ConstantTimeEq for Scalar
sourceimpl Field for Scalar
impl Field for Scalar
sourcefn random(rng: impl RngCore) -> Self
fn random(rng: impl RngCore) -> Self
Returns an element chosen uniformly at random using a user-provided RNG.
sourcefn invert(&self) -> CtOption<Self>
fn invert(&self) -> CtOption<Self>
Computes the multiplicative inverse of this element, failing if the element is zero. Read more
sourcefn sqrt(&self) -> CtOption<Self>
fn sqrt(&self) -> CtOption<Self>
Returns the square root of the field element, if it is quadratic residue. Read more
fn is_zero_vartime(&self) -> bool
fn is_zero_vartime(&self) -> bool
Returns true iff this element is zero. Read more
fn cube(&self) -> Self
fn cube(&self) -> Self
Cubes this element.
sourceimpl From<&'_ Scalar> for FieldBytes
impl From<&'_ Scalar> for FieldBytes
sourceimpl From<Scalar> for FieldBytes
impl From<Scalar> for FieldBytes
sourceimpl From<ScalarCore<NistP384>> for Scalar
impl From<ScalarCore<NistP384>> for Scalar
sourcefn from(scalar: ScalarCore) -> Scalar
fn from(scalar: ScalarCore) -> Scalar
Converts to this type from the input type.
sourceimpl MulAssign<&'_ Scalar> for Scalar
impl MulAssign<&'_ Scalar> for Scalar
sourcefn mul_assign(&mut self, other: &Scalar)
fn mul_assign(&mut self, other: &Scalar)
Performs the *= operation. Read more
sourceimpl MulAssign<Scalar> for Scalar
impl MulAssign<Scalar> for Scalar
sourcefn mul_assign(&mut self, other: Scalar)
fn mul_assign(&mut self, other: Scalar)
Performs the *= operation. Read more
sourceimpl PrimeField for Scalar
impl PrimeField for Scalar
type Repr = GenericArray<u8, <<NistP384 as Curve>::UInt as ArrayEncoding>::ByteSize>
type Repr = GenericArray<u8, <<NistP384 as Curve>::UInt as ArrayEncoding>::ByteSize>
The prime field can be converted back and forth into this binary representation. Read more
sourceconst CAPACITY: u32 = 383u32
const CAPACITY: u32 = 383u32
How many bits of information can be reliably stored in the field element. Read more
sourceconst S: u32 = 1u32
const S: u32 = 1u32
An integer s satisfying the equation 2^s * t = modulus - 1 with t odd. Read more
sourcefn from_repr(bytes: FieldBytes) -> CtOption<Self>
fn from_repr(bytes: FieldBytes) -> 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
sourcefn to_repr(&self) -> FieldBytes
fn to_repr(&self) -> FieldBytes
Converts an element of the prime field into the standard byte representation for this field. Read more
sourcefn multiplicative_generator() -> Self
fn multiplicative_generator() -> Self
Returns a fixed multiplicative generator of modulus - 1 order. This element must
also be a quadratic nonresidue. Read more
sourcefn root_of_unity() -> Self
fn root_of_unity() -> Self
Returns the 2^s root of unity. Read more
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
fn from_repr_vartime(repr: Self::Repr) -> Option<Self>
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
sourceimpl Reduce<UInt<{_: usize}>> for Scalar
impl Reduce<UInt<{_: usize}>> for Scalar
sourcefn from_uint_reduced(w: U384) -> Self
fn from_uint_reduced(w: U384) -> Self
Perform a modular reduction, returning a field element.
sourcefn from_be_bytes_reduced(
bytes: GenericArray<u8, <UInt as ArrayEncoding>::ByteSize>
) -> Self
fn from_be_bytes_reduced(
bytes: GenericArray<u8, <UInt as ArrayEncoding>::ByteSize>
) -> Self
Interpret the given byte array as a big endian integer and perform a modular reduction. Read more
sourcefn from_le_bytes_reduced(
bytes: GenericArray<u8, <UInt as ArrayEncoding>::ByteSize>
) -> Self
fn from_le_bytes_reduced(
bytes: GenericArray<u8, <UInt as ArrayEncoding>::ByteSize>
) -> Self
Interpret the given byte array as a little endian integer and perform a modular reduction. Read more
sourcefn from_be_digest_reduced<D>(digest: D) -> Self where
D: FixedOutput<OutputSize = <UInt as ArrayEncoding>::ByteSize>,
fn from_be_digest_reduced<D>(digest: D) -> Self where
D: FixedOutput<OutputSize = <UInt as ArrayEncoding>::ByteSize>,
Interpret a digest as a big endian integer and perform a modular reduction. Read more
sourcefn from_le_digest_reduced<D>(digest: D) -> Self where
D: FixedOutput<OutputSize = <UInt as ArrayEncoding>::ByteSize>,
fn from_le_digest_reduced<D>(digest: D) -> Self where
D: FixedOutput<OutputSize = <UInt as ArrayEncoding>::ByteSize>,
Interpret a digest as a little endian integer and perform a modular reduction. Read more
sourceimpl SubAssign<&'_ Scalar> for Scalar
impl SubAssign<&'_ Scalar> for Scalar
sourcefn sub_assign(&mut self, other: &Scalar)
fn sub_assign(&mut self, other: &Scalar)
Performs the -= operation. Read more
sourceimpl SubAssign<Scalar> for Scalar
impl SubAssign<Scalar> for Scalar
sourcefn sub_assign(&mut self, other: Scalar)
fn sub_assign(&mut self, other: Scalar)
Performs the -= operation. Read more
impl Copy for Scalar
impl DefaultIsZeroes for Scalar
impl Eq for Scalar
impl StructuralEq for Scalar
impl StructuralPartialEq for Scalar
Auto Trait Implementations
impl RefUnwindSafe for Scalar
impl Send for Scalar
impl Sync for Scalar
impl Unpin for Scalar
impl UnwindSafe for Scalar
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more