Type Alias BlindedScalar

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

Blinded scalar.

Aliased Type§

struct BlindedScalar { /* private fields */ }

Implementations

Source§

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

Source

pub fn new( scalar: <C as CurveArithmetic>::Scalar, rng: &mut impl CryptoRngCore, ) -> BlindedScalar<C>

Create a new BlindedScalar from a scalar and a CryptoRngCore.

Trait Implementations

Source§

impl<C> AsRef<<C as CurveArithmetic>::Scalar> for BlindedScalar<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 BlindedScalar<C>

Source§

fn clone(&self) -> BlindedScalar<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> Drop for BlindedScalar<C>
where C: CurveArithmetic,

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<C> Invert for BlindedScalar<C>
where C: CurveArithmetic,

Source§

type Output = CtOption<<C as CurveArithmetic>::Scalar>

Field element type
Source§

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

Invert a field element.
Source§

fn invert_vartime(&self) -> Self::Output

Invert a field element in variable time. Read more