pub type BlindedScalar = BlindedScalar<NistP256>;
Expand description
Blinded scalar.
Aliased Type§
struct BlindedScalar { /* private fields */ }
Implementations
Source§impl<C> BlindedScalar<C>where
C: CurveArithmetic,
impl<C> BlindedScalar<C>where
C: CurveArithmetic,
Sourcepub fn new(
scalar: <C as CurveArithmetic>::Scalar,
rng: &mut impl CryptoRngCore,
) -> BlindedScalar<C>
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,
impl<C> AsRef<<C as CurveArithmetic>::Scalar> for BlindedScalar<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 BlindedScalar<C>where
C: Clone + CurveArithmetic,
impl<C> Clone for BlindedScalar<C>where
C: Clone + CurveArithmetic,
Source§fn clone(&self) -> BlindedScalar<C>
fn clone(&self) -> BlindedScalar<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 more