p384

Struct Scalar

source
pub struct Scalar(/* private fields */);
Expand description

Scalars are elements in the finite field modulo n.

§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:
  • PrimeField - represents elements of prime fields and provides:
    • from_repr/to_repr for converting field elements from/to big integers.
    • multiplicative_generator and root_of_unity constants.
  • PrimeFieldBits - operations over field elements represented as bits (requires bits feature)

Please see the documentation for the relevant traits for more information.

§serde support

When the serde feature of this crate is enabled, the Serialize and Deserialize traits are impl’d for this type.

The serialization is a fixed-width big endian encoding. When used with textual formats, the binary data is encoded as hexadecimal.

Implementations§

source§

impl Scalar

source

pub const ZERO: Self = _

Zero element.

source

pub const ONE: Self = _

Multiplicative identity.

source

pub fn from_bytes(repr: &FieldBytes) -> CtOption<Self>

Create a Scalar from a canonical big-endian representation.

source

pub fn from_slice(slice: &[u8]) -> Result<Self>

Decode Scalar from a big endian byte slice.

source

pub fn from_uint(uint: U384) -> CtOption<Self>

Decode Scalar from U384 converting it into Montgomery form:

w * R^2 * R^-1 mod p = wR mod p
source

pub const fn from_u64(w: u64) -> Self

Convert a u64 into a Scalar.

source

pub fn to_bytes(self) -> FieldBytes

Returns the big-endian encoding of this Scalar.

source

pub const fn to_canonical(self) -> U384

Translate Scalar out of the Montgomery domain, returning a U384 in canonical form.

source

pub fn is_odd(&self) -> Choice

Determine if this Scalar is odd in the SEC1 sense: self mod 2 == 1.

§Returns

If odd, return Choice(1). Otherwise, return Choice(0).

source

pub fn is_even(&self) -> Choice

Determine if this Scalar is even in the SEC1 sense: self mod 2 == 0.

§Returns

If even, return Choice(1). Otherwise, return Choice(0).

source

pub fn is_zero(&self) -> Choice

Determine if this Scalar is zero.

§Returns

If zero, return Choice(1). Otherwise, return Choice(0).

source

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

Add elements.

source

pub const fn double(&self) -> Self

Double element (add it to itself).

source

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

Subtract elements.

source

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

Multiply elements.

source

pub const fn neg(&self) -> Self

Negate element.

source

pub const fn square(&self) -> Self

Compute modular square.

source

pub const fn pow_vartime(&self, exp: &[u64]) -> Self

Returns self^exp, where exp is a little-endian integer exponent.

This operation is variable time with respect to the exponent.

If the exponent is fixed, this operation is effectively constant time.

source§

impl Scalar

source

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

Compute Scalar inversion: 1 / self.

source

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

Compute modular square root.

source

pub const fn shr_vartime(&self, shift: usize) -> Scalar

Right shifts the scalar.

Note: not constant-time with respect to the shift parameter.

Trait Implementations§

source§

impl Add<&Scalar> for &Scalar

source§

type Output = Scalar

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Scalar) -> Scalar

Performs the + operation. Read more
source§

impl Add<&Scalar> for Scalar

source§

type Output = Scalar

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Scalar) -> Scalar

Performs the + operation. Read more
source§

impl Add for Scalar

source§

type Output = Scalar

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<&Scalar> for Scalar

source§

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

Performs the += operation. Read more
source§

impl AddAssign for Scalar

source§

fn add_assign(&mut self, other: Scalar)

Performs the += operation. Read more
source§

impl AsRef<[u64; 6]> for Scalar

source§

fn as_ref(&self) -> &[u64; 6]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Scalar> for Scalar

source§

fn as_ref(&self) -> &Scalar

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Scalar

source§

fn clone(&self) -> Scalar

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 Scalar

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 Scalar

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 ConstantTimeGreater for Scalar

source§

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

Determine whether self > other. Read more
source§

impl ConstantTimeLess for Scalar

source§

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

Determine whether self < other. Read more
source§

impl Debug for Scalar

source§

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

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

impl Default for Scalar

source§

fn default() -> Self

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

impl Field for Scalar

source§

const ZERO: Self = Self::ZERO

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

const ONE: Self = Self::ONE

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 is_zero(&self) -> Choice

Returns true iff this element is zero.
source§

fn square(&self) -> Self

Squares this element.
source§

fn double(&self) -> Self

Doubles this element.
source§

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

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

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

Returns the square root of the field element, if it is quadratic residue. Read more
source§

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

Computes: Read more
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 sqrt_alt(&self) -> (Choice, Self)

Equivalent to Self::sqrt_ratio(self, one()). Read more
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§

fn pow_vartime<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<&Scalar> for FieldBytes

source§

fn from(scalar: &Scalar) -> Self

Converts to this type from the input type.
source§

impl From<&Scalar> for ScalarPrimitive<NistP384>

source§

fn from(scalar: &Scalar) -> ScalarPrimitive<NistP384>

Converts to this type from the input type.
source§

impl From<&Scalar> for U384

source§

fn from(scalar: &Scalar) -> U384

Converts to this type from the input type.
source§

impl From<&ScalarPrimitive<NistP384>> for Scalar

source§

fn from(w: &ScalarPrimitive<NistP384>) -> Scalar

Converts to this type from the input type.
source§

impl From<&SecretKey<NistP384>> for Scalar

source§

fn from(secret_key: &SecretKey) -> Scalar

Converts to this type from the input type.
source§

impl From<Scalar> for FieldBytes

source§

fn from(scalar: Scalar) -> Self

Converts to this type from the input type.
source§

impl From<Scalar> for ScalarPrimitive<NistP384>

source§

fn from(scalar: Scalar) -> ScalarPrimitive<NistP384>

Converts to this type from the input type.
source§

impl From<Scalar> for U384

source§

fn from(scalar: Scalar) -> U384

Converts to this type from the input type.
source§

impl From<ScalarPrimitive<NistP384>> for Scalar

source§

fn from(w: ScalarPrimitive<NistP384>) -> Self

Converts to this type from the input type.
source§

impl From<u128> for Scalar

source§

fn from(n: u128) -> Scalar

Converts to this type from the input type.
source§

impl From<u32> for Scalar

source§

fn from(n: u32) -> Scalar

Converts to this type from the input type.
source§

impl From<u64> for Scalar

source§

fn from(n: u64) -> Scalar

Converts to this type from the input type.
source§

impl FromUintUnchecked for Scalar

source§

type Uint = Uint<crypto_bigint::::uint::U384::{constant#0}>

Unsigned integer type (i.e. Curve::Uint)
source§

fn from_uint_unchecked(uint: Self::Uint) -> Self

Instantiate scalar from an unsigned integer without checking whether the value overflows the field modulus. Read more
source§

impl Invert for Scalar

source§

type Output = CtOption<Scalar>

Field element type
source§

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

Invert a field element.
source§

fn invert_vartime(&self) -> Self::Output

Invert a field element in variable time. Read more
source§

impl IsHigh for Scalar

source§

fn is_high(&self) -> Choice

Is this scalar greater than or equal to n / 2?
source§

impl Mul<&Scalar> for &Scalar

source§

type Output = Scalar

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Scalar) -> Scalar

Performs the * operation. Read more
source§

impl Mul<&Scalar> for Scalar

source§

type Output = Scalar

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Scalar) -> Scalar

Performs the * operation. Read more
source§

impl Mul for Scalar

source§

type Output = Scalar

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<&Scalar> for Scalar

source§

fn mul_assign(&mut self, other: &Scalar)

Performs the *= operation. Read more
source§

impl MulAssign for Scalar

source§

fn mul_assign(&mut self, other: Scalar)

Performs the *= operation. Read more
source§

impl Neg for Scalar

source§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn neg(self) -> Scalar

Performs the unary - operation. Read more
source§

impl Ord for Scalar

source§

fn cmp(&self, other: &Scalar) -> 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 Scalar

source§

fn eq(&self, rhs: &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 Scalar

source§

fn partial_cmp(&self, other: &Scalar) -> 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 Scalar

source§

const MODULUS: &'static str = ORDER_HEX

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

const CAPACITY: u32 = 383u32

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

const NUM_BITS: u32 = 384u32

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

const TWO_INV: Self = _

Inverse of $2$ in the field.
source§

const MULTIPLICATIVE_GENERATOR: Self = _

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

const S: u32 = 1u32

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

const ROOT_OF_UNITY: Self = _

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

const ROOT_OF_UNITY_INV: Self = _

source§

const DELTA: Self = _

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

type Repr = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>

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

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
source§

fn to_repr(&self) -> FieldBytes

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_u128(v: u128) -> Self

Obtains a field element congruent to the integer v. 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<'a> Product<&'a Scalar> for Scalar

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 Scalar

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 Reduce<Uint<crypto_bigint::::uint::U384::{constant#0}>> for Scalar

source§

type Bytes = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>

Bytes used as input to Reduce::reduce_bytes.
source§

fn reduce(w: U384) -> Self

Perform a modular reduction, returning a field element.
source§

fn reduce_bytes(bytes: &FieldBytes) -> Self

Interpret the given bytes as an integer and perform a modular reduction.
source§

impl Shr<usize> for &Scalar

source§

type Output = Scalar

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
source§

impl Shr<usize> for Scalar

source§

type Output = Scalar

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
source§

impl ShrAssign<usize> for Scalar

source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
source§

impl SignPrimitive<NistP384> for Scalar

source§

fn try_sign_prehashed<K>( &self, k: K, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> Result<(Signature<C>, Option<RecoveryId>), Error>
where K: AsRef<Self> + Invert<Output = CtOption<Self>>,

Try to sign the prehashed message. Read more
source§

fn try_sign_prehashed_rfc6979<D>( &self, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ad: &[u8], ) -> Result<(Signature<C>, Option<RecoveryId>), Error>
where Self: From<ScalarPrimitive<C>> + Invert<Output = CtOption<Self>>, D: Digest<OutputSize = <C as Curve>::FieldBytesSize> + BlockSizeUser + FixedOutput + FixedOutputReset,

Try to sign the given message digest deterministically using the method described in RFC6979 for computing ECDSA ephemeral scalar k. Read more
source§

impl Sub<&Scalar> for &Scalar

source§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Scalar) -> Scalar

Performs the - operation. Read more
source§

impl Sub<&Scalar> for Scalar

source§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Scalar) -> Scalar

Performs the - operation. Read more
source§

impl Sub for Scalar

source§

type Output = Scalar

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<&Scalar> for Scalar

source§

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

Performs the -= operation. Read more
source§

impl SubAssign for Scalar

source§

fn sub_assign(&mut self, other: Scalar)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for Scalar

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 TryFrom<Uint<crypto_bigint::::uint::U384::{constant#0}>> for Scalar

source§

type Error = Error

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

fn try_from(w: U384) -> Result<Self>

Performs the conversion.
source§

impl Copy for Scalar

source§

impl DefaultIsZeroes for Scalar

source§

impl Eq for Scalar

Auto Trait Implementations§

§

impl Freeze for Scalar

§

impl RefUnwindSafe for Scalar

§

impl Send for Scalar

§

impl Sync for Scalar

§

impl Unpin for Scalar

§

impl UnwindSafe for Scalar

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> BatchInvert<[T]> for T
where T: Mul<Output = T> + Invert<Output = CtOption<T>> + Copy + Default + ConditionallySelectable,

source§

type Output = Vec<T>

The output of batch inversion. A container of field elements.
source§

fn batch_invert(field_elements: &[T]) -> CtOption<Vec<T>>

Invert a batch of field elements.
source§

impl<const N: usize, T> BatchInvert<[T; N]> for T
where T: Invert<Output = CtOption<T>> + Mul<Output = T> + Copy + Default + ConditionallySelectable,

source§

type Output = [T; N]

The output of batch inversion. A container of field elements.
source§

fn batch_invert(field_elements: &[T; N]) -> CtOption<[T; N]>

Invert a batch of field elements.
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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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<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, 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<Z> Zeroize for Z
where Z: DefaultIsZeroes,

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<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

source§

impl<T, Rhs, Output> GroupOpsOwned<Rhs, Output> for T
where T: for<'r> GroupOps<&'r Rhs, Output>,

source§

impl<T, Rhs, Output> ScalarMul<Rhs, Output> for T
where T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,

source§

impl<T, Rhs, Output> ScalarMulOwned<Rhs, Output> for T
where T: for<'r> ScalarMul<&'r Rhs, Output>,