Skip to main content

NonZeroScalar

Struct NonZeroScalar 

Source
#[repr(transparent)]
pub struct NonZeroScalar<C>
where C: CurveArithmetic,
{ scalar: Scalar<C>, }
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.

Fields§

§scalar: Scalar<C>

Implementations§

Source§

impl<C> NonZeroScalar<C>
where C: CurveArithmetic,

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.

Source

pub fn cast_array_as_inner<const N: usize>( scalars: &[Self; N], ) -> &[Scalar<C>; N]

Transform array reference containing NonZeroScalars to an array reference to the inner scalar type.

Source

pub fn cast_slice_as_inner(scalars: &[Self]) -> &[Scalar<C>]

Transform slice containing NonZeroScalars to a slice of the inner scalar type.

Source

pub fn random<R: CryptoRng + ?Sized>(rng: &mut R) -> Self

👎Deprecated since 0.14.0: use the Generate trait instead

Deprecated: Generate a random NonZeroScalar.

Trait Implementations§

Source§

impl<C> AsRef<<C as CurveArithmetic>::Scalar> for NonZeroScalar<C>
where C: CurveArithmetic,

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>

Source§

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

Returns a duplicate 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: CurveArithmetic,

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

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<C: CurveArithmetic> Debug for NonZeroScalar<C>

Source§

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

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

impl<C> Deref for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

type Target = <C as CurveArithmetic>::Scalar

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl<C> Display for NonZeroScalar<C>
where C: CurveArithmetic,

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

Source§

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

Converts to this type from the input type.
Source§

impl<C> From<&NonZeroScalar<C>> for ScalarValue<C>
where C: CurveArithmetic,

Source§

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

Converts to this type from the input type.
Source§

impl<C> From<&NonZeroScalar<C>> for SecretKey<C>
where C: CurveArithmetic,

Available on crate feature arithmetic only.
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: CurveArithmetic,

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

Source§

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

Converts to this type from the input type.
Source§

impl<C> From<NonZeroScalar<C>> for ScalarValue<C>
where C: CurveArithmetic,

Source§

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

Converts to this type from the input type.
Source§

impl<C> From<NonZeroScalar<C>> for SecretKey<C>
where C: CurveArithmetic,

Available on crate feature arithmetic only.
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: CurveArithmetic,

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

Source§

type Err = Error

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

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

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

impl<C> Generate for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

fn try_generate_from_rng<R: TryCryptoRng + ?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>

Randomly generate a value of this type using the system’s ambient cryptographically secure random number generator. Read more
Source§

fn generate() -> Self

Randomly generate a value of this type using the system’s ambient cryptographically secure random number generator. Read more
Source§

impl<C> Invert for NonZeroScalar<C>
where C: CurveArithmetic, Scalar<C>: Invert<Output = CtOption<Scalar<C>>>,

Source§

type Output = NonZeroScalar<C>

Output of the inversion.
Source§

fn invert(&self) -> Self

Computes the inverse.
Source§

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

Computes the inverse in variable-time.
Source§

impl<C> IsHigh for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

fn is_high(&self) -> Choice

Is this scalar greater than n / 2?
Source§

impl<C> LowerHex for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

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

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

impl<C, P> Mul<&NonIdentity<P>> for &NonZeroScalar<C>
where C: CurveArithmetic, for<'a> &'a NonIdentity<P>: Mul<&'a NonZeroScalar<C>, Output = NonIdentity<P>>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &NonIdentity<P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<&NonIdentity<P>> for NonZeroScalar<C>
where C: CurveArithmetic, for<'a> &'a NonIdentity<P>: Mul<NonZeroScalar<C>, Output = NonIdentity<P>>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &NonIdentity<P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<&NonZeroScalar<C>> for &NonIdentity<P>
where C: CurveArithmetic, P: Copy + Mul<Scalar<C>, Output = P>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &NonZeroScalar<C>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<&NonZeroScalar<C>> for NonIdentity<P>
where C: CurveArithmetic, P: Copy + Mul<Scalar<C>, Output = P>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &NonZeroScalar<C>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C> Mul<&NonZeroScalar<C>> for NonZeroScalar<C>

Source§

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, P> Mul<NonIdentity<P>> for &NonZeroScalar<C>
where C: CurveArithmetic, for<'a> NonIdentity<P>: Mul<&'a NonZeroScalar<C>, Output = NonIdentity<P>>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: NonIdentity<P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<NonIdentity<P>> for NonZeroScalar<C>
where C: CurveArithmetic, NonIdentity<P>: Mul<NonZeroScalar<C>, Output = NonIdentity<P>>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: NonIdentity<P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<NonZeroScalar<C>> for &NonIdentity<P>
where C: CurveArithmetic, P: Copy + Mul<Scalar<C>, Output = P>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: NonZeroScalar<C>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C, P> Mul<NonZeroScalar<C>> for NonIdentity<P>
where C: CurveArithmetic, P: Copy + Mul<Scalar<C>, Output = P>,

Source§

type Output = NonIdentity<P>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: NonZeroScalar<C>) -> Self::Output

Performs the * operation. Read more
Source§

impl<C> Mul for NonZeroScalar<C>

Source§

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> MulAssign for NonZeroScalar<C>

Source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
Source§

impl<C> Neg for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

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> PartialEq for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

fn eq(&self, other: &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<C, T> Reduce<T> for NonZeroScalar<C>

Source§

fn reduce(n: &T) -> Self

Reduces self modulo Modulus.
Source§

impl<C, T> ReduceNonZero<T> for NonZeroScalar<C>

Source§

fn reduce_nonzero(n: &T) -> Self

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

impl<C> TryFrom<&[u8]> for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

type Error = Error

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

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

Performs the conversion.
Source§

impl<C> UpperHex for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

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

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

impl<C> Zeroize for NonZeroScalar<C>
where C: CurveArithmetic,

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

Source§

impl<C> Eq for NonZeroScalar<C>
where C: CurveArithmetic,

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> 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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<T, Rhs, Output> ScalarMul<Rhs, Output> for T
where T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,