Skip to main content

Scalar

Struct 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 is provided by traits from the ff crate:

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

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

Implementations§

Source§

impl Scalar

Source

pub const ZERO: Self

Zero scalar.

Source

pub const ONE: Self

Multiplicative identity.

Source

pub fn to_bytes(&self) -> FieldBytes

Returns the SEC1 encoding of this scalar.

Source

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

Returns self + rhs mod n

Source

pub const fn double(&self) -> Self

Returns 2*self.

Source

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

Returns self - rhs mod n.

Source

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

Returns self * rhs mod n

Source

pub const fn square(&self) -> Self

Returns self * self mod n

Source

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

Right shifts the scalar.

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

Source

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

Compute scalar inversion: 1 / self.

Source

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

Compute scalar inversion: 1 / self in variable-time.

Source

pub const fn pow_vartime<const RHS_LIMBS: usize>( &self, exp: &Uint<RHS_LIMBS>, ) -> Self

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

This operation is variable time with respect to the exponent exp.

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

Source

pub const fn sqn_vartime(&self, n: usize) -> Self

Returns self^(2^n) mod p.

This operation is variable time with respect to the exponent n.

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

Source

pub fn is_odd(&self) -> Choice

Is integer representing equivalence class odd?

Source

pub fn is_even(&self) -> Choice

Is integer representing equivalence class even?

Trait Implementations§

Source§

impl Add for Scalar

Source§

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

Source§

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

Source§

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

Source§

fn add_assign(&mut self, rhs: 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 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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Copy for Scalar

Source§

impl CtEq for Scalar

Source§

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

Determine if self is equal to other in constant-time.
Source§

fn ct_ne(&self, other: &Rhs) -> Choice

Determine if self is NOT equal to other in constant-time.
Source§

impl CtSelect for Scalar

Source§

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

Select between self and other based on choice, returning a copy of the value. Read more
Source§

fn ct_swap(&mut self, other: &mut Self, choice: Choice)

Conditionally swap self and other if choice is Choice::TRUE.
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 DefaultIsZeroes for Scalar

Source§

impl<'de> Deserialize<'de> for Scalar

Available on crate feature serde only.
Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Scalar

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 try_random<R: TryRng + ?Sized>(rng: &mut R) -> Result<Self, R::Error>

Returns an element chosen uniformly at random using a user-provided fallible RNG. Read more
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
Source§

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

Returns an element chosen uniformly at random using a user-provided infallible RNG. Read more
Source§

fn is_zero(&self) -> Choice

Returns true iff this element is zero.
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 FieldExt for Scalar

Source§

impl From<&NonZeroScalar<NistP256>> for Scalar

Source§

fn from(scalar: &NonZeroScalar<NistP256>) -> Self

Converts to this type from the input type.
Source§

impl From<&Scalar> for ScalarValue<NistP256>

Source§

fn from(scalar: &Scalar) -> ScalarValue<NistP256>

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 U256

Source§

fn from(scalar: &Scalar) -> U256

Converts to this type from the input type.
Source§

impl From<&ScalarValue<NistP256>> for Scalar

Source§

fn from(w: &ScalarValue<NistP256>) -> Scalar

Converts to this type from the input type.
Source§

impl From<&SecretKey<NistP256>> for Scalar

Source§

fn from(secret_key: &SecretKey<NistP256>) -> Scalar

Converts to this type from the input type.
Source§

impl From<NonZeroScalar<NistP256>> for Scalar

Source§

fn from(scalar: NonZeroScalar<NistP256>) -> Self

Converts to this type from the input type.
Source§

impl From<Scalar> for ScalarValue<NistP256>

Source§

fn from(scalar: Scalar) -> ScalarValue<NistP256>

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 U256

Source§

fn from(scalar: Scalar) -> U256

Converts to this type from the input type.
Source§

impl From<ScalarValue<NistP256>> for Scalar

Source§

fn from(w: ScalarValue<NistP256>) -> 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 From<u128> for Scalar

Source§

fn from(k: u128) -> Self

Converts to this type from the input type.
Source§

impl FromUintUnchecked for Scalar

Source§

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 FromUniformBytes<64> for Scalar

Source§

fn from_uniform_bytes(bytes: &[u8; 64]) -> Self

Returns a field element that is congruent to the provided little endian unsigned byte representation of an integer.
Source§

impl Generate for Scalar

Source§

fn try_generate_from_rng<R: TryRng + ?Sized>( rng: &mut R, ) -> Result<Self, R::Error>

Generate random key using the provided TryCryptoRng. Read more
Source§

fn generate_from_rng<R>(rng: &mut R) -> Self
where R: CryptoRng + ?Sized,

Generate random key using the provided CryptoRng.
Source§

fn try_generate() -> Result<Self, Error>

Available on crate feature getrandom only.
Randomly generate a value of this type using the system’s ambient cryptographically secure random number generator. Read more
Source§

fn generate() -> Self

Available on crate feature getrandom only.
Randomly generate a value of this type using the system’s ambient cryptographically secure random number generator. Read more
Source§

impl Invert for Scalar

Source§

type Output = CtOption<Scalar>

Output of the inversion.
Source§

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

Computes the inverse.
Source§

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

Computes the inverse in variable-time.
Source§

impl IsHigh for Scalar

Source§

fn is_high(&self) -> Choice

Is this scalar greater than n / 2?
Source§

impl Mul for Scalar

Source§

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<&<NistP256 as CurveArithmetic>::AffinePoint> for Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<&<NistP256 as CurveArithmetic>::AffinePoint> for &Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<&<NistP256 as CurveArithmetic>::ProjectivePoint> for Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &ProjectivePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<&<NistP256 as CurveArithmetic>::ProjectivePoint> for &Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &ProjectivePoint<NistP256>) -> ProjectivePoint<NistP256>

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, other: &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, other: &Scalar) -> Scalar

Performs the * operation. Read more
Source§

impl Mul<<NistP256 as CurveArithmetic>::AffinePoint> for Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<<NistP256 as CurveArithmetic>::AffinePoint> for &Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<<NistP256 as CurveArithmetic>::ProjectivePoint> for Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: ProjectivePoint<NistP256>) -> ProjectivePoint<NistP256>

Performs the * operation. Read more
Source§

impl Mul<<NistP256 as CurveArithmetic>::ProjectivePoint> for &Scalar

Source§

type Output = <NistP256 as CurveArithmetic>::ProjectivePoint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: ProjectivePoint<NistP256>) -> ProjectivePoint<NistP256>

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 MulAssign<&Scalar> for Scalar

Source§

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

Performs the *= operation. Read more
Source§

impl MulVartime<&<NistP256 as CurveArithmetic>::AffinePoint> for Scalar

Source§

fn mul_vartime(self, rhs: &AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<&<NistP256 as CurveArithmetic>::AffinePoint> for &Scalar

Source§

fn mul_vartime(self, rhs: &AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<&<NistP256 as CurveArithmetic>::ProjectivePoint> for Scalar

Source§

fn mul_vartime( self, rhs: &ProjectivePoint<NistP256>, ) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<&<NistP256 as CurveArithmetic>::ProjectivePoint> for &Scalar

Source§

fn mul_vartime( self, rhs: &ProjectivePoint<NistP256>, ) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<<NistP256 as CurveArithmetic>::AffinePoint> for Scalar

Source§

fn mul_vartime(self, rhs: AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<<NistP256 as CurveArithmetic>::AffinePoint> for &Scalar

Source§

fn mul_vartime(self, rhs: AffinePoint<NistP256>) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<<NistP256 as CurveArithmetic>::ProjectivePoint> for Scalar

Source§

fn mul_vartime( self, rhs: ProjectivePoint<NistP256>, ) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
Source§

impl MulVartime<<NistP256 as CurveArithmetic>::ProjectivePoint> for &Scalar

Source§

fn mul_vartime( self, rhs: ProjectivePoint<NistP256>, ) -> ProjectivePoint<NistP256>

Multiply self by rhs in variable-time.
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 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: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · 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, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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§

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

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

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

const CAPACITY: u32 = 255

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

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 = Array<u8, <NistP256 as Curve>::FieldBytesSize>

The prime field can be converted back and forth into this binary representation.
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 PrimeFieldExt for Scalar

Source§

const REPR_ENDIANNESS: ByteOrder = ByteOrder::BigEndian

Endianness used when encoding ff::PrimeField::Repr.
Source§

fn to_be_repr(&self) -> Self::Repr

Encode self using a big endian representation.
Source§

fn to_le_repr(&self) -> Self::Repr

Encode self using a little endian representation.
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<'a> Product<&'a Scalar> for Scalar

Source§

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

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

impl Reduce<Array<u8, <NistP256 as Curve>::FieldBytesSize>> for Scalar

Source§

fn reduce(bytes: &FieldBytes) -> Self

Reduces self modulo Modulus.
Source§

impl Reduce<Array<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>> for Scalar

Available on crate feature hash2curve only.
Source§

fn reduce(value: &Array<u8, U48>) -> Self

Reduces self modulo Modulus.
Source§

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

Source§

fn reduce(w: &U256) -> Self

Reduces self modulo Modulus.
Source§

impl ReduceNonZero<Array<u8, <NistP256 as Curve>::FieldBytesSize>> for Scalar

Source§

fn reduce_nonzero(bytes: &FieldBytes) -> Self

Perform a modular reduction, returning a field element.
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§

impl Retrieve for Scalar

Source§

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

The original type.
Source§

fn retrieve(&self) -> U256

Convert the number back from the optimized representation.
Source§

impl Serialize for Scalar

Available on crate feature serde only.
Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. 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 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 Sub for Scalar

Source§

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

Source§

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

Source§

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

Source§

fn sub_assign(&mut self, rhs: 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 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<'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 TryFrom<Scalar> for NonZeroScalar<NistP256>

The constant-time alternative is available at elliptic_curve::NonZeroScalar<NistP256>::new().

Source§

type Error = Error

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

fn try_from(scalar: Scalar) -> Result<Self>

Performs the conversion.
Source§

impl WnafSize for Scalar

Source§

type StorageSize = <Const<{ (Self::NUM_BITS + 1) as usize }> as ToUInt>::Output

Number of digits in the wNAF representation.

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> 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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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

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.