Struct p256::P256Scalar

source ·
pub struct P256Scalar { /* private fields */ }

Trait Implementations§

source§

impl Add for P256Scalar

§

type Output = P256Scalar

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AsRef<[u8]> for P256Scalar

source§

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

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

impl Clone for P256Scalar

source§

fn clone(&self) -> P256Scalar

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 Debug for P256Scalar

source§

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

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

impl Display for P256Scalar

source§

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

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

impl Into<[u8; 32]> for P256Scalar

source§

fn into(self) -> [u8; 32]

Converts this type into the (usually inferred) input type.
source§

impl Mul for P256Scalar

§

type Output = P256Scalar

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl NatMod<32> for P256Scalar

source§

const MODULUS: [u8; 32] = _

source§

const MODULUS_STR: &'static str = "ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551"

source§

const ZERO: [u8; 32] = _

source§

fn new(value: [u8; 32]) -> Self

source§

fn value(&self) -> &[u8]

§

fn fsub(self, rhs: Self) -> Self
where Self: Sized,

Sub self with rhs and return the result self - rhs % MODULUS.
§

fn fadd(self, rhs: Self) -> Self
where Self: Sized,

Add self with rhs and return the result self + rhs % MODULUS.
§

fn fmul(self, rhs: Self) -> Self
where Self: Sized,

Multiply self with rhs and return the result self * rhs % MODULUS.
§

fn pow(self, rhs: u128) -> Self
where Self: Sized,

self ^ rhs % MODULUS.
§

fn pow_felem(self, rhs: &Self) -> Self
where Self: Sized,

self ^ rhs % MODULUS.
§

fn inv(self) -> Self
where Self: Sized,

Invert self and return the result self ^ -1 % MODULUS.
§

fn inv0(self) -> Self
where Self: Sized,

§

fn zero() -> Self
where Self: Sized,

Zero element
§

fn one() -> Self
where Self: Sized,

One element
§

fn two() -> Self
where Self: Sized,

One element
§

fn bit(&self, bit: u128) -> bool

§

fn pow2(x: usize) -> Self
where Self: Sized,

Returns 2 to the power of the argument
§

fn neg(self) -> Self
where Self: Sized,

§

fn from_u128(literal: u128) -> Self
where Self: Sized,

Create a new [#ident] from a u128 literal.
§

fn from_le_bytes(bytes: &[u8]) -> Self
where Self: Sized,

Create a new [#ident] from a little endian byte slice. Read more
§

fn from_be_bytes(bytes: &[u8]) -> Self
where Self: Sized,

Create a new [#ident] from a little endian byte slice. Read more
§

fn to_le_bytes(self) -> [u8; LEN]
where Self: Sized,

§

fn to_be_bytes(self) -> [u8; LEN]
where Self: Sized,

§

fn to_hex(&self) -> String

Get hex string representation of this.
§

fn from_hex(hex: &str) -> Self
where Self: Sized,

New from hex string
§

fn pad(bytes: &[u8]) -> [u8; LEN]

§

fn from_bigint(x: BigUint) -> Self
where Self: Sized,

source§

impl PartialEq for P256Scalar

source§

fn eq(&self, other: &P256Scalar) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sub for P256Scalar

§

type Output = P256Scalar

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl Copy for P256Scalar

source§

impl Eq for P256Scalar

source§

impl StructuralPartialEq for P256Scalar

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> 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> ToOwned for T
where T: Clone,

§

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§

default 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>,

§

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

§

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.