pub struct Scalar(/* private fields */);
Expand description
Scalars are elements in the finite field modulo n
.
§Trait impls
Much of the important functionality of scalars is provided by traits from
the ff
crate, which is re-exported as
p384::elliptic_curve::ff
:
Field
- represents elements of finite fields and provides:Field::random
- generate a random scalardouble
,square
, andinvert
operations- Bounds for
Add
,Sub
,Mul
, andNeg
(as well as*Assign
equivalents) - Bounds for
ConditionallySelectable
from thesubtle
crate
PrimeField
- represents elements of prime fields and provides:from_repr
/to_repr
for converting field elements from/to big integers.multiplicative_generator
androot_of_unity
constants.
PrimeFieldBits
- operations over field elements represented as bits (requiresbits
feature)
Please see the documentation for the relevant traits for more information.
§serde
support
When the serde
feature of this crate is enabled, the Serialize
and
Deserialize
traits are impl’d for this type.
The serialization is a fixed-width big endian encoding. When used with textual formats, the binary data is encoded as hexadecimal.
Implementations§
source§impl Scalar
impl Scalar
sourcepub fn from_bytes(repr: &FieldBytes) -> CtOption<Self>
pub fn from_bytes(repr: &FieldBytes) -> CtOption<Self>
Create a Scalar
from a canonical big-endian representation.
sourcepub fn from_slice(slice: &[u8]) -> Result<Self>
pub fn from_slice(slice: &[u8]) -> Result<Self>
Decode Scalar
from a big endian byte slice.
sourcepub fn to_bytes(self) -> FieldBytes
pub fn to_bytes(self) -> FieldBytes
Returns the big-endian encoding of this Scalar
.
sourcepub const fn to_canonical(self) -> U384
pub const fn to_canonical(self) -> U384
sourcepub const fn pow_vartime(&self, exp: &[u64]) -> Self
pub const fn pow_vartime(&self, exp: &[u64]) -> Self
Returns self^exp
, where exp
is a little-endian integer exponent.
This operation is variable time with respect to the exponent.
If the exponent is fixed, this operation is effectively constant time.
Trait Implementations§
source§impl AddAssign<&Scalar> for Scalar
impl AddAssign<&Scalar> for Scalar
source§fn add_assign(&mut self, other: &Scalar)
fn add_assign(&mut self, other: &Scalar)
+=
operation. Read moresource§impl AddAssign for Scalar
impl AddAssign for Scalar
source§fn add_assign(&mut self, other: Scalar)
fn add_assign(&mut self, other: Scalar)
+=
operation. Read moresource§impl ConditionallySelectable for Scalar
impl ConditionallySelectable for Scalar
source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
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)
self
and other
if choice == 1
; otherwise,
reassign both unto themselves. Read moresource§impl ConstantTimeEq for Scalar
impl ConstantTimeEq for Scalar
source§impl ConstantTimeGreater for Scalar
impl ConstantTimeGreater for Scalar
source§impl ConstantTimeLess for Scalar
impl ConstantTimeLess for Scalar
source§impl Field for Scalar
impl Field for Scalar
source§fn random(rng: impl RngCore) -> Self
fn random(rng: impl RngCore) -> Self
source§fn invert(&self) -> CtOption<Self>
fn invert(&self) -> CtOption<Self>
source§fn sqrt(&self) -> CtOption<Self>
fn sqrt(&self) -> CtOption<Self>
source§fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)
fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)
source§fn is_zero_vartime(&self) -> bool
fn is_zero_vartime(&self) -> bool
source§impl From<&Scalar> for FieldBytes
impl From<&Scalar> for FieldBytes
source§impl From<Scalar> for FieldBytes
impl From<Scalar> for FieldBytes
source§impl From<ScalarPrimitive<NistP384>> for Scalar
impl From<ScalarPrimitive<NistP384>> for Scalar
source§fn from(w: ScalarPrimitive<NistP384>) -> Self
fn from(w: ScalarPrimitive<NistP384>) -> Self
source§impl FromUintUnchecked for Scalar
impl FromUintUnchecked for Scalar
source§impl MulAssign<&Scalar> for Scalar
impl MulAssign<&Scalar> for Scalar
source§fn mul_assign(&mut self, other: &Scalar)
fn mul_assign(&mut self, other: &Scalar)
*=
operation. Read moresource§impl MulAssign for Scalar
impl MulAssign for Scalar
source§fn mul_assign(&mut self, other: Scalar)
fn mul_assign(&mut self, other: Scalar)
*=
operation. Read moresource§impl Ord for Scalar
impl Ord for Scalar
source§impl PartialOrd for Scalar
impl PartialOrd for Scalar
source§impl PrimeField for Scalar
impl PrimeField for Scalar
source§const MODULUS: &'static str = ORDER_HEX
const MODULUS: &'static str = ORDER_HEX
source§const CAPACITY: u32 = 383u32
const CAPACITY: u32 = 383u32
source§const MULTIPLICATIVE_GENERATOR: Self = _
const MULTIPLICATIVE_GENERATOR: Self = _
modulus - 1
order. This element must also be
a quadratic nonresidue. Read moresource§const ROOT_OF_UNITY: Self = _
const ROOT_OF_UNITY: Self = _
2^s
root of unity. Read moresource§const ROOT_OF_UNITY_INV: Self = _
const ROOT_OF_UNITY_INV: Self = _
Self::ROOT_OF_UNITY
.source§type Repr = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>
type Repr = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>
source§fn from_repr(bytes: FieldBytes) -> CtOption<Self>
fn from_repr(bytes: FieldBytes) -> CtOption<Self>
source§fn to_repr(&self) -> FieldBytes
fn to_repr(&self) -> FieldBytes
source§fn from_str_vartime(s: &str) -> Option<Self>
fn from_str_vartime(s: &str) -> Option<Self>
source§impl Reduce<Uint<crypto_bigint::::uint::U384::{constant#0}>> for Scalar
impl Reduce<Uint<crypto_bigint::::uint::U384::{constant#0}>> for Scalar
source§type Bytes = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>
type Bytes = GenericArray<u8, <NistP384 as Curve>::FieldBytesSize>
Reduce::reduce_bytes
.source§fn reduce_bytes(bytes: &FieldBytes) -> Self
fn reduce_bytes(bytes: &FieldBytes) -> Self
source§impl ShrAssign<usize> for Scalar
impl ShrAssign<usize> for Scalar
source§fn shr_assign(&mut self, rhs: usize)
fn shr_assign(&mut self, rhs: usize)
>>=
operation. Read moresource§impl SignPrimitive<NistP384> for Scalar
impl SignPrimitive<NistP384> for Scalar
source§fn try_sign_prehashed<K>(
&self,
k: K,
z: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
) -> Result<(Signature<C>, Option<RecoveryId>), Error>
fn try_sign_prehashed<K>( &self, k: K, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> Result<(Signature<C>, Option<RecoveryId>), Error>
source§fn try_sign_prehashed_rfc6979<D>(
&self,
z: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
ad: &[u8],
) -> Result<(Signature<C>, Option<RecoveryId>), Error>where
Self: From<ScalarPrimitive<C>> + Invert<Output = CtOption<Self>>,
D: Digest<OutputSize = <C as Curve>::FieldBytesSize> + BlockSizeUser + FixedOutput + FixedOutputReset,
fn try_sign_prehashed_rfc6979<D>(
&self,
z: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
ad: &[u8],
) -> Result<(Signature<C>, Option<RecoveryId>), Error>where
Self: From<ScalarPrimitive<C>> + Invert<Output = CtOption<Self>>,
D: Digest<OutputSize = <C as Curve>::FieldBytesSize> + BlockSizeUser + FixedOutput + FixedOutputReset,
source§impl SubAssign<&Scalar> for Scalar
impl SubAssign<&Scalar> for Scalar
source§fn sub_assign(&mut self, other: &Scalar)
fn sub_assign(&mut self, other: &Scalar)
-=
operation. Read moresource§impl SubAssign for Scalar
impl SubAssign for Scalar
source§fn sub_assign(&mut self, other: Scalar)
fn sub_assign(&mut self, other: Scalar)
-=
operation. Read moreimpl Copy for Scalar
impl DefaultIsZeroes for Scalar
impl Eq for Scalar
Auto Trait Implementations§
impl Freeze for Scalar
impl RefUnwindSafe for Scalar
impl Send for Scalar
impl Sync for Scalar
impl Unpin for Scalar
impl UnwindSafe for Scalar
Blanket Implementations§
source§impl<T> BatchInvert<[T]> for T
impl<T> BatchInvert<[T]> for T
source§impl<const N: usize, T> BatchInvert<[T; N]> for T
impl<const N: usize, T> BatchInvert<[T; N]> for T
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)