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,
impl<C> NonZeroScalar<C>where
C: CurveArithmetic,
Sourcepub fn random(rng: &mut impl CryptoRngCore) -> NonZeroScalar<C>
pub fn random(rng: &mut impl CryptoRngCore) -> NonZeroScalar<C>
Generate a random NonZeroScalar
.
Sourcepub fn new(scalar: <C as CurveArithmetic>::Scalar) -> CtOption<NonZeroScalar<C>>
pub fn new(scalar: <C as CurveArithmetic>::Scalar) -> CtOption<NonZeroScalar<C>>
Create a NonZeroScalar
from a scalar.
Sourcepub fn from_repr(
repr: GenericArray<u8, <C as Curve>::FieldBytesSize>,
) -> CtOption<NonZeroScalar<C>>
pub fn from_repr( repr: GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> CtOption<NonZeroScalar<C>>
Decode a NonZeroScalar
from a big endian-serialized field element.
Sourcepub fn from_uint(uint: <C as Curve>::Uint) -> CtOption<NonZeroScalar<C>>
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,
impl<C> AsRef<<C as CurveArithmetic>::Scalar> for NonZeroScalar<C>where
C: CurveArithmetic,
Source§fn as_ref(&self) -> &<C as CurveArithmetic>::Scalar
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>where
C: Clone + CurveArithmetic,
impl<C> Clone for NonZeroScalar<C>where
C: Clone + CurveArithmetic,
Source§fn clone(&self) -> NonZeroScalar<C>
fn clone(&self) -> NonZeroScalar<C>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<C> ConditionallySelectable for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> ConditionallySelectable for NonZeroScalar<C>where
C: CurveArithmetic,
Source§fn conditional_select(
a: &NonZeroScalar<C>,
b: &NonZeroScalar<C>,
choice: Choice,
) -> NonZeroScalar<C>
fn conditional_select( a: &NonZeroScalar<C>, b: &NonZeroScalar<C>, choice: Choice, ) -> NonZeroScalar<C>
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
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 moreSource§impl<C> ConstantTimeEq for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> ConstantTimeEq for NonZeroScalar<C>where
C: CurveArithmetic,
Source§impl<C> Deref for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> Deref for NonZeroScalar<C>where
C: CurveArithmetic,
Source§type Target = <C as CurveArithmetic>::Scalar
type Target = <C as CurveArithmetic>::Scalar
The resulting type after dereferencing.
Source§fn deref(&self) -> &<C as CurveArithmetic>::Scalar
fn deref(&self) -> &<C as CurveArithmetic>::Scalar
Dereferences the value.
Source§impl<C> Display for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> Display for NonZeroScalar<C>where
C: CurveArithmetic,
Source§impl<C> From<&SecretKey<C>> for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> From<&SecretKey<C>> for NonZeroScalar<C>where
C: CurveArithmetic,
Source§fn from(sk: &SecretKey<C>) -> NonZeroScalar<C>
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,
impl<C> From<SecretKey<C>> for NonZeroScalar<C>where
C: CurveArithmetic,
Source§fn from(sk: SecretKey<C>) -> NonZeroScalar<C>
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,
impl<C> FromStr for NonZeroScalar<C>where
C: CurveArithmetic,
Source§impl<C> Invert for NonZeroScalar<C>where
C: CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>>,
impl<C> Invert for NonZeroScalar<C>where
C: CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>>,
Source§type Output = NonZeroScalar<C>
type Output = NonZeroScalar<C>
Field element type
Source§fn invert(&self) -> NonZeroScalar<C>
fn invert(&self) -> NonZeroScalar<C>
Invert a field element.
Source§fn invert_vartime(&self) -> <NonZeroScalar<C> as Invert>::Output
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,
impl<C> IsHigh for NonZeroScalar<C>where
C: CurveArithmetic,
Source§impl<C> LowerHex for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> LowerHex for NonZeroScalar<C>where
C: CurveArithmetic,
Source§impl<C> Mul<&NonZeroScalar<C>> for NonZeroScalar<C>where
C: PrimeCurve + CurveArithmetic,
impl<C> Mul<&NonZeroScalar<C>> for NonZeroScalar<C>where
C: PrimeCurve + CurveArithmetic,
Source§type Output = NonZeroScalar<C>
type Output = NonZeroScalar<C>
The resulting type after applying the
*
operator.Source§fn mul(self, other: &NonZeroScalar<C>) -> NonZeroScalar<C>
fn mul(self, other: &NonZeroScalar<C>) -> NonZeroScalar<C>
Performs the
*
operation. Read moreSource§impl<C> Mul for NonZeroScalar<C>where
C: PrimeCurve + CurveArithmetic,
impl<C> Mul for NonZeroScalar<C>where
C: PrimeCurve + CurveArithmetic,
Source§type Output = NonZeroScalar<C>
type Output = NonZeroScalar<C>
The resulting type after applying the
*
operator.Source§fn mul(self, other: NonZeroScalar<C>) -> NonZeroScalar<C>
fn mul(self, other: NonZeroScalar<C>) -> NonZeroScalar<C>
Performs the
*
operation. Read moreSource§impl<C> Neg for NonZeroScalar<C>where
C: CurveArithmetic,
impl<C> Neg for NonZeroScalar<C>where
C: CurveArithmetic,
Source§type Output = NonZeroScalar<C>
type Output = NonZeroScalar<C>
The resulting type after applying the
-
operator.Source§fn neg(self) -> NonZeroScalar<C>
fn neg(self) -> NonZeroScalar<C>
Performs the unary
-
operation. Read moreSource§impl<C, I> Reduce<I> for NonZeroScalar<C>where
C: CurveArithmetic,
I: Integer + ArrayEncoding,
<C as CurveArithmetic>::Scalar: Reduce<I> + ReduceNonZero<I>,
Note: this is a non-zero reduction, as it’s impl’d for NonZeroScalar
.
impl<C, I> Reduce<I> for NonZeroScalar<C>where
C: CurveArithmetic,
I: Integer + ArrayEncoding,
<C as CurveArithmetic>::Scalar: Reduce<I> + ReduceNonZero<I>,
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
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>
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>
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>where
NonZeroScalar<C>: Reduce<I>,
C: CurveArithmetic,
I: Integer + ArrayEncoding,
<C as CurveArithmetic>::Scalar: Reduce<I, Bytes = <NonZeroScalar<C> as Reduce<I>>::Bytes> + ReduceNonZero<I>,
Note: forwards to the Reduce
impl.
impl<C, I> ReduceNonZero<I> for NonZeroScalar<C>where
NonZeroScalar<C>: Reduce<I>,
C: CurveArithmetic,
I: Integer + ArrayEncoding,
<C as CurveArithmetic>::Scalar: Reduce<I, Bytes = <NonZeroScalar<C> as Reduce<I>>::Bytes> + ReduceNonZero<I>,
Note: forwards to the Reduce
impl.
Source§fn reduce_nonzero(n: I) -> NonZeroScalar<C>
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>
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.