pub struct NonZeroScalar<C>where
    C: Curve + ScalarArithmetic,{ /* private fields */ }
Expand description

Non-zero scalar type.

This type ensures that its value is not zero, ala core::num::NonZero*. To do this, the generic S type must impl both Default and ConstantTimeEq, with the requirement that S::default() returns 0.

In the context of ECC, it’s useful for ensuring that scalar multiplication cannot result in the point at infinity.

Implementations§

source§

impl<C> NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source

pub fn random(rng: impl CryptoRng + RngCore) -> Self

Generate a random NonZeroScalar.

source

pub fn new(scalar: Scalar<C>) -> CtOption<Self>

Create a NonZeroScalar from a scalar.

source

pub fn from_repr(repr: FieldBytes<C>) -> CtOption<Self>

Decode a NonZeroScalar from a big endian-serialized field element.

source

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

Create a NonZeroScalar from a C::UInt.

Trait Implementations§

source§

impl<C> AsRef<<C as ScalarArithmetic>::Scalar> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

fn as_ref(&self) -> &Scalar<C>

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

impl<C> Clone for NonZeroScalar<C>where C: Curve + ScalarArithmetic + Clone,

source§

fn clone(&self) -> NonZeroScalar<C>

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<C> ConditionallySelectable for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

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<C> ConstantTimeEq for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

Determine if two items are equal. Read more
source§

impl<C> Deref for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

§

type Target = <C as ScalarArithmetic>::Scalar

The resulting type after dereferencing.
source§

fn deref(&self) -> &Scalar<C>

Dereferences the value.
source§

impl<C> Display for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

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

impl<C> From<&NonZeroScalar<C>> for FieldBytes<C>where C: Curve + ScalarArithmetic,

source§

fn from(scalar: &NonZeroScalar<C>) -> FieldBytes<C>

Converts to this type from the input type.
source§

impl<C> From<&NonZeroScalar<C>> for ScalarCore<C>where C: Curve + ScalarArithmetic,

source§

fn from(scalar: &NonZeroScalar<C>) -> ScalarCore<C>

Converts to this type from the input type.
source§

impl<C> From<&NonZeroScalar<C>> for SecretKey<C>where C: Curve + ProjectiveArithmetic,

source§

fn from(scalar: &NonZeroScalar<C>) -> SecretKey<C>

Converts to this type from the input type.
source§

impl<C> From<&SecretKey<C>> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

fn from(sk: &SecretKey<C>) -> NonZeroScalar<C>

Converts to this type from the input type.
source§

impl<C> From<NonZeroScalar<C>> for FieldBytes<C>where C: Curve + ScalarArithmetic,

source§

fn from(scalar: NonZeroScalar<C>) -> FieldBytes<C>

Converts to this type from the input type.
source§

impl<C> From<NonZeroScalar<C>> for ScalarCore<C>where C: Curve + ScalarArithmetic,

source§

fn from(scalar: NonZeroScalar<C>) -> ScalarCore<C>

Converts to this type from the input type.
source§

impl<C> From<NonZeroScalar<C>> for SecretKey<C>where C: Curve + ProjectiveArithmetic,

source§

fn from(scalar: NonZeroScalar<C>) -> SecretKey<C>

Converts to this type from the input type.
source§

impl<C> From<SecretKey<C>> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

fn from(sk: SecretKey<C>) -> NonZeroScalar<C>

Converts to this type from the input type.
source§

impl<C> FromStr for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(hex: &str) -> Result<Self>

Parses a string s to return a value of this type. Read more
source§

impl<C> Invert for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

§

type Output = NonZeroScalar<C>

Field element type
source§

fn invert(&self) -> Self

Invert a field element.
source§

impl<C> IsHigh for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

fn is_high(&self) -> Choice

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

impl<C> LowerHex for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

Formats the value using the given formatter.
source§

impl<C> Mul<&NonZeroScalar<C>> for NonZeroScalar<C>where C: PrimeCurve + ScalarArithmetic,

§

type Output = NonZeroScalar<C>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<C> Mul<NonZeroScalar<C>> for NonZeroScalar<C>where C: PrimeCurve + ScalarArithmetic,

§

type Output = NonZeroScalar<C>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<C> Neg for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

§

type Output = NonZeroScalar<C>

The resulting type after applying the - operator.
source§

fn neg(self) -> NonZeroScalar<C>

Performs the unary - operation. Read more
source§

impl<C, I> Reduce<I> for NonZeroScalar<C>where C: Curve + ScalarArithmetic, I: Integer + ArrayEncoding, Scalar<C>: ReduceNonZero<I>,

Note: implementation is the same as ReduceNonZero

source§

fn from_uint_reduced(n: I) -> Self

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

fn from_be_bytes_reduced(bytes: ByteArray<UInt>) -> Self

Interpret the given byte array as a big endian integer and perform a modular reduction.
source§

fn from_le_bytes_reduced(bytes: ByteArray<UInt>) -> Self

Interpret the given byte array as a little endian integer and perform a modular reduction.
source§

fn from_be_digest_reduced<D>(digest: D) -> Selfwhere D: FixedOutput<OutputSize = UInt::ByteSize>,

Interpret a digest as a big endian integer and perform a modular reduction.
source§

fn from_le_digest_reduced<D>(digest: D) -> Selfwhere D: FixedOutput<OutputSize = UInt::ByteSize>,

Interpret a digest as a little endian integer and perform a modular reduction.
source§

impl<C, I> ReduceNonZero<I> for NonZeroScalar<C>where C: Curve + ScalarArithmetic, I: Integer + ArrayEncoding, Scalar<C>: ReduceNonZero<I>,

source§

fn from_uint_reduced_nonzero(n: I) -> Self

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

impl<C> TryFrom<&[u8]> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

§

type Error = Error

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

fn try_from(bytes: &[u8]) -> Result<Self>

Performs the conversion.
source§

impl<C> UpperHex for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

Formats the value using the given formatter.
source§

impl<C> Zeroize for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

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<C> Copy for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. 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 Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere 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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.