Struct k256::Scalar

source ·
pub struct Scalar(/* private fields */);
Available on crate feature arithmetic only.
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 k256::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 scalar.

source

pub const ONE: Self = _

Multiplicative identity.

source

pub fn is_zero(&self) -> Choice

Checks if the scalar is zero.

source

pub fn to_bytes(&self) -> FieldBytes

Returns the SEC1 encoding of this scalar.

source

pub const fn negate(&self) -> Self

Negates the scalar.

source

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

Returns self + rhs mod n.

source

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

Returns self - rhs mod n.

source

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

Modulo multiplies two scalars.

source

pub fn square(&self) -> Self

Modulo squares the scalar.

source

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

Right shifts the scalar.

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

source

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

Inverts the scalar.

source

pub fn generate_biased(rng: &mut impl CryptoRngCore) -> Self

Returns a (nearly) uniformly-random scalar, generated in constant time.

source

pub fn generate_vartime(rng: &mut impl RngCore) -> Self

Returns a uniformly-random scalar, generated using rejection sampling.

Trait Implementations§

source§

impl Add<&Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add for Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<&Scalar> for Scalar

source§

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

Performs the += operation. Read more
source§

impl AddAssign for Scalar

source§

fn add_assign(&mut self, rhs: Scalar)

Performs the += operation. Read more
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 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() -> Scalar

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

impl Field for Scalar

source§

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

Tonelli-Shank’s algorithm for q mod 16 = 1 https://eprint.iacr.org/2012/685.pdf (page 12, algorithm 5)

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 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_ratio(num: &Self, div: &Self) -> (Choice, Self)

Computes: Read more
§

fn is_zero(&self) -> Choice

Returns true iff this element is zero.
§

fn is_zero_vartime(&self) -> bool

Returns true iff this element is zero. Read more
§

fn cube(&self) -> Self

Cubes this element.
§

fn sqrt_alt(&self) -> (Choice, Self)

Equivalent to Self::sqrt_ratio(self, one()). Read more
§

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
§

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<Secp256k1>

source§

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

Converts to this type from the input type.
source§

impl From<&Scalar> for U256

source§

fn from(scalar: &Scalar) -> Self

Converts to this type from the input type.
source§

impl From<&ScalarPrimitive<Secp256k1>> for Scalar

source§

fn from(scalar: &ScalarPrimitive<Secp256k1>) -> 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<Secp256k1>

source§

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

Converts to this type from the input type.
source§

impl From<Scalar> for U256

source§

fn from(scalar: Scalar) -> Self

Converts to this type from the input type.
source§

impl From<ScalarPrimitive<Secp256k1>> for Scalar

source§

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

Converts to this type from the input type.
source§

impl From<u128> for Scalar

source§

fn from(k: u128) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Scalar

source§

fn from(k: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Scalar

source§

fn from(k: u64) -> Self

Converts to this type from the input type.
source§

impl FromUintUnchecked for Scalar

§

type Uint = Uint<crypto_bigint::::uint::U256::{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§

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

Fast variable-time inversion using Stein’s algorithm.

Returns none if the scalar is zero.

https://link.springer.com/article/10.1007/s13389-016-0135-4

⚠️ WARNING!

This method should not be used with (unblinded) secret scalars, as its variable-time operation can potentially leak secrets through sidechannels.

§

type Output = CtOption<Scalar>

Field element type
source§

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

Invert a field element.
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 &ProjectivePoint

§

type Output = ProjectivePoint

The resulting type after applying the * operator.
source§

fn mul(self, other: &Scalar) -> ProjectivePoint

Performs the * operation. Read more
source§

impl Mul<&Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<&Scalar> for AffinePoint

§

type Output = ProjectivePoint

The resulting type after applying the * operator.
source§

fn mul(self, scalar: &Scalar) -> ProjectivePoint

Performs the * operation. Read more
source§

impl Mul<&Scalar> for ProjectivePoint

§

type Output = ProjectivePoint

The resulting type after applying the * operator.
source§

fn mul(self, other: &Scalar) -> ProjectivePoint

Performs the * operation. Read more
source§

impl Mul<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<Scalar> for AffinePoint

§

type Output = ProjectivePoint

The resulting type after applying the * operator.
source§

fn mul(self, scalar: Scalar) -> ProjectivePoint

Performs the * operation. Read more
source§

impl Mul<Scalar> for ProjectivePoint

§

type Output = ProjectivePoint

The resulting type after applying the * operator.
source§

fn mul(self, other: Scalar) -> ProjectivePoint

Performs the * operation. Read more
source§

impl Mul for Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<&Scalar> for ProjectivePoint

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&Scalar> for Scalar

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<Scalar> for ProjectivePoint

source§

fn mul_assign(&mut self, rhs: Scalar)

Performs the *= operation. Read more
source§

impl MulAssign for Scalar

source§

fn mul_assign(&mut self, rhs: Scalar)

Performs the *= operation. Read more
source§

impl Neg for &Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn neg(self) -> Scalar

Performs the unary - operation. Read more
source§

impl Neg for Scalar

§

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 + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Scalar

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl PrimeField for Scalar

source§

fn from_repr(bytes: FieldBytes) -> CtOption<Self>

Attempts to parse the given byte array as an SEC1-encoded scalar.

Returns None if the byte array does not contain a big-endian integer in the range [0, p).

§

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

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

const MODULUS: &'static str = ORDER_HEX

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

const NUM_BITS: u32 = 256u32

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

const CAPACITY: u32 = 255u32

How many bits of information can be reliably stored in the field element. Read more
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 = 6u32

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 = _

Inverse of [Self::ROOT_OF_UNITY].
source§

const DELTA: Self = _

Generator of the t-order multiplicative subgroup. 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.
§

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

Obtains a field element congruent to the integer v. Read more
§

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
§

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 Scalar>>(iter: I) -> Self

Method which 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

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Reduce<Uint<crypto_bigint::::uint::U256::{constant#0}>> for Scalar

§

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

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

fn reduce(w: U256) -> 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 Reduce<Uint<crypto_bigint::::uint::U512::{constant#0}>> for Scalar

§

type Bytes = GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

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

fn reduce(w: U512) -> Self

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

fn reduce_bytes(bytes: &WideBytes) -> Self

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

impl ReduceNonZero<Uint<crypto_bigint::::uint::U256::{constant#0}>> for Scalar

source§

fn reduce_nonzero(w: U256) -> Self

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

fn reduce_nonzero_bytes(bytes: &FieldBytes) -> Self

Interpret the given bytes as an integer and perform a modular reduction to a non-zero output.
source§

impl ReduceNonZero<Uint<crypto_bigint::::uint::U512::{constant#0}>> for Scalar

source§

fn reduce_nonzero(w: U512) -> Self

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

fn reduce_nonzero_bytes(bytes: &WideBytes) -> Self

Interpret the given bytes as an integer and perform a modular reduction to a non-zero output.
source§

impl Shr<usize> for &Scalar

§

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

§

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

Available on crate features ecdsa-core and ecdsa only.
source§

fn try_sign_prehashed<K>( &self, k: K, z: &FieldBytes ) -> Result<(Signature, 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,

Available on crate feature rfc6979 only.
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

§

type Output = Scalar

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub for Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<&Scalar> for Scalar

source§

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

Performs the -= operation. Read more
source§

impl SubAssign for Scalar

source§

fn sub_assign(&mut self, rhs: 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

Method which 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

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

impl Copy for Scalar

source§

impl DefaultIsZeroes for Scalar

source§

impl Eq for Scalar

Auto Trait Implementations§

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,

§

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,

§

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> ConditionallyNegatable for T
where T: ConditionallySelectable, &'a T: for<'a> Neg<Output = T>,

source§

fn conditional_negate(&mut self, choice: Choice)

Negate self if choice == Choice(1); otherwise, leave it unchanged. 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

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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

impl<Z> Zeroize for Z
where Z: DefaultIsZeroes,

§

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

impl<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

§

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

§

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

§

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