Skip to main content

ScalarValue

Struct ScalarValue 

Source
pub struct ScalarValue<C: Curve> {
    inner: C::Uint,
}
Expand description

Integer values within the range of a given Curve’s scalar modulus.

This type provides a baseline level of scalar arithmetic functionality which is always available for all curves.

§serde support

When the optional serde feature of this create is enabled, [Serialize] and [Deserialize] impls are provided for this type.

The serialization is a fixed-width big endian encoding. When used with textual formats, the binary data is encoded as hexadecimal.

Fields§

§inner: C::Uint

Inner unsigned integer type.

Implementations§

Source§

impl<C> ScalarValue<C>
where C: Curve,

Source

pub const ZERO: Self

Zero scalar.

Source

pub const ONE: Self

Multiplicative identity.

Source

pub const MODULUS: Odd<C::Uint> = C::ORDER

Scalar modulus.

Source

pub fn new(uint: C::Uint) -> CtOption<Self>

Create a new scalar from Curve::Uint.

Source

pub fn from_bytes(bytes: &FieldBytes<C>) -> CtOption<Self>

Decode ScalarValue from a serialized field element

Source

pub fn from_slice(slice: &[u8]) -> Result<Self>

Decode ScalarValue from a big endian byte slice.

§Errors
Source

pub fn as_uint(&self) -> &C::Uint

Borrow the inner C::Uint.

Source

pub fn as_limbs(&self) -> &[Limb]

Borrow the inner limbs as a slice.

Source

pub fn is_zero(&self) -> Choice

Is this ScalarValue value equal to zero?

Source

pub fn is_even(&self) -> Choice

Is this ScalarValue value even?

Source

pub fn is_odd(&self) -> Choice

Is this ScalarValue value odd?

Source

pub fn to_bytes(&self) -> FieldBytes<C>

Encode ScalarValue as a serialized field element.

Source

pub fn to_uint(&self) -> C::Uint

Convert to a C::Uint.

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 ScalarValue.

Source§

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

Source

pub(super) fn to_scalar(self) -> Scalar<C>

Convert ScalarValue into a given curve’s scalar type.

Trait Implementations§

Source§

impl<C> Add<&ScalarValue<C>> for ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<C> Add for ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<C> AddAssign<&ScalarValue<C>> for ScalarValue<C>
where C: Curve,

Source§

fn add_assign(&mut self, other: &Self)

Performs the += operation. Read more
Source§

impl<C> AddAssign for ScalarValue<C>
where C: Curve,

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl<C> AsRef<[Limb]> for ScalarValue<C>
where C: Curve,

Source§

fn as_ref(&self) -> &[Limb]

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

impl<C: Clone + Curve> Clone for ScalarValue<C>
where C::Uint: Clone,

Source§

fn clone(&self) -> ScalarValue<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 ScalarValue<C>
where C: Curve,

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 ScalarValue<C>
where C: Curve,

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> ConstantTimeGreater for ScalarValue<C>
where C: Curve,

Source§

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

Determine whether self > other. Read more
Source§

impl<C> ConstantTimeLess for ScalarValue<C>
where C: Curve,

Source§

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

Determine whether self < other. Read more
Source§

impl<C> CtEq for ScalarValue<C>
where C: Curve,

Source§

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

Determine if self is equal to other in constant-time.
Source§

fn ct_ne(&self, other: &Rhs) -> Choice

Determine if self is NOT equal to other in constant-time.
Source§

impl<C> CtGt for ScalarValue<C>
where C: Curve,

Source§

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

Compute whether self > other in constant time.
Source§

impl<C> CtLt for ScalarValue<C>
where C: Curve,

Source§

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

Compute whether self < other in constant time.
Source§

impl<C> CtSelect for ScalarValue<C>
where C: Curve,

Source§

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

Select between self and other based on choice, returning a copy of the value. Read more
Source§

fn ct_swap(&mut self, other: &mut Self, choice: Choice)

Conditionally swap self and other if choice is Choice::TRUE.
Source§

impl<C: Debug + Curve> Debug for ScalarValue<C>
where C::Uint: Debug,

Source§

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

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

impl<C: Default + Curve> Default for ScalarValue<C>
where C::Uint: Default,

Source§

fn default() -> ScalarValue<C>

Returns the “default value” for a type. Read more
Source§

impl<C> Display for ScalarValue<C>
where C: Curve,

Source§

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

Formats the value using the given formatter. Read more
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 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<u64> for ScalarValue<C>
where C: Curve,

Source§

fn from(n: u64) -> Self

Converts to this type from the input type.
Source§

impl<C> FromStr for ScalarValue<C>
where C: Curve,

Source§

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> FromUintUnchecked for ScalarValue<C>
where C: Curve,

Source§

type Uint = <C as Curve>::Uint

Unsigned integer type (i.e. Curve::Uint)
Source§

fn from_uint_unchecked(uint: C::Uint) -> Self

Instantiate scalar from an unsigned integer without checking whether the value overflows the field modulus. Read more
Source§

impl<C> Generate for ScalarValue<C>
where C: Curve,

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> IsHigh for ScalarValue<C>
where C: Curve,

Source§

fn is_high(&self) -> Choice

Is this scalar greater than n / 2?
Source§

impl<C> LowerHex for ScalarValue<C>
where C: Curve,

Source§

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

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

impl<C> Neg for &ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the - operator.
Source§

fn neg(self) -> ScalarValue<C>

Performs the unary - operation. Read more
Source§

impl<C> Neg for ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl<C> Ord for ScalarValue<C>
where C: Curve,

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<C> PartialEq for ScalarValue<C>
where C: Curve,

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> PartialOrd for ScalarValue<C>
where C: Curve,

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<C> ShrAssign<usize> for ScalarValue<C>
where C: Curve,

Source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Source§

impl<C> Sub<&ScalarValue<C>> for ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<C> Sub for ScalarValue<C>
where C: Curve,

Source§

type Output = ScalarValue<C>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<C> SubAssign<&ScalarValue<C>> for ScalarValue<C>
where C: Curve,

Source§

fn sub_assign(&mut self, other: &Self)

Performs the -= operation. Read more
Source§

impl<C> SubAssign for ScalarValue<C>
where C: Curve,

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl<C> UpperHex for ScalarValue<C>
where C: Curve,

Source§

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

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

impl<C: Copy + Curve> Copy for ScalarValue<C>
where C::Uint: Copy,

Source§

impl<C: Curve> DefaultIsZeroes for ScalarValue<C>

Source§

impl<C: Curve> Eq for ScalarValue<C>

Auto Trait Implementations§

§

impl<C> Freeze for ScalarValue<C>
where <C as Curve>::Uint: Freeze,

§

impl<C> RefUnwindSafe for ScalarValue<C>
where <C as Curve>::Uint: RefUnwindSafe,

§

impl<C> Send for ScalarValue<C>

§

impl<C> Sync for ScalarValue<C>

§

impl<C> Unpin for ScalarValue<C>
where <C as Curve>::Uint: Unpin,

§

impl<C> UnsafeUnpin for ScalarValue<C>
where <C as Curve>::Uint: UnsafeUnpin,

§

impl<C> UnwindSafe for ScalarValue<C>
where <C as Curve>::Uint: UnwindSafe,

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> ConditionallyNegatable for T
where T: ConditionallySelectable, &'a T: for<'a> Neg<Output = T>,

Source§

fn conditional_negate(&mut self, choice: Choice)

Negate self if choice == Choice(1); otherwise, leave it unchanged. 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<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<Z> Zeroize for Z
where Z: DefaultIsZeroes,

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<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

Source§

impl<T, Rhs, Output> GroupOpsOwned<Rhs, Output> for T
where T: for<'r> GroupOps<&'r Rhs, Output>,