Type Alias NonZeroScalar

Source
pub type NonZeroScalar = NonZeroScalar<NistP256>;
Expand description

Non-zero NIST P-256 scalar field element.

Aliased Type§

struct NonZeroScalar { /* private fields */ }

Implementations

Source§

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

Source

pub fn random(rng: &mut impl CryptoRngCore) -> NonZeroScalar<C>

Generate a random NonZeroScalar.

Source

pub fn new(scalar: <C as CurveArithmetic>::Scalar) -> CtOption<NonZeroScalar<C>>

Create a NonZeroScalar from a scalar.

Source

pub fn from_repr( repr: GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> CtOption<NonZeroScalar<C>>

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

Source

pub fn from_uint(uint: <C as Curve>::Uint) -> CtOption<NonZeroScalar<C>>

Create a NonZeroScalar from a C::Uint.

Trait Implementations

Source§

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

Source§

fn as_ref(&self) -> &<C as CurveArithmetic>::Scalar

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

Source§

fn conditional_select( a: &NonZeroScalar<C>, b: &NonZeroScalar<C>, choice: Choice, ) -> NonZeroScalar<C>

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: &NonZeroScalar<C>) -> Choice

Determine if two items are equal. 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) -> &<C as CurveArithmetic>::Scalar

Dereferences the value.
Source§

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

Source§

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

Formats the value using the given formatter. Read more
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<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<NonZeroScalar<C>, Error>

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

impl<C> Invert for NonZeroScalar<C>

Source§

type Output = NonZeroScalar<C>

Field element type
Source§

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

Invert a field element.
Source§

fn invert_vartime(&self) -> <NonZeroScalar<C> as Invert>::Output

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

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

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

Source§

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

Formats the value using the given formatter. 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: &NonZeroScalar<C>) -> NonZeroScalar<C>

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: NonZeroScalar<C>) -> NonZeroScalar<C>

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, I> Reduce<I> for NonZeroScalar<C>

Note: this is a non-zero reduction, as it’s impl’d for NonZeroScalar.

Source§

type Bytes = <<C as CurveArithmetic>::Scalar as Reduce<I>>::Bytes

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

fn reduce(n: I) -> NonZeroScalar<C>

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

fn reduce_bytes( bytes: &<NonZeroScalar<C> as Reduce<I>>::Bytes, ) -> NonZeroScalar<C>

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

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

Note: forwards to the Reduce impl.

Source§

fn reduce_nonzero(n: I) -> NonZeroScalar<C>

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

fn reduce_nonzero_bytes( bytes: &<NonZeroScalar<C> as Reduce<I>>::Bytes, ) -> NonZeroScalar<C>

Interpret the given bytes as an integer and perform a modular reduction to a non-zero output.
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<NonZeroScalar<C>, Error>

Performs the conversion.
Source§

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

Source§

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

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,