Type Alias SecretKey

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

NIST P-256 secret key.

Aliased Type§

struct SecretKey { /* private fields */ }

Implementations

Source§

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

Source

pub fn random(rng: &mut impl CryptoRngCore) -> SecretKey<C>
where C: CurveArithmetic,

Generate a random SecretKey.

Source

pub fn new(scalar: ScalarPrimitive<C>) -> SecretKey<C>

Create a new secret key from a scalar value.

Source

pub fn as_scalar_primitive(&self) -> &ScalarPrimitive<C>

Borrow the inner secret ScalarPrimitive value.

§⚠️ Warning

This value is key material.

Please treat it with the care it deserves!

Source

pub fn to_nonzero_scalar(&self) -> NonZeroScalar<C>
where C: CurveArithmetic,

Get the secret NonZeroScalar value for this key.

§⚠️ Warning

This value is key material.

Please treat it with the care it deserves!

Source

pub fn public_key(&self) -> PublicKey<C>
where C: CurveArithmetic,

Get the PublicKey which corresponds to this secret key

Source

pub fn from_bytes( bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> Result<SecretKey<C>, Error>

Deserialize secret key from an encoded secret scalar.

Source

pub fn from_slice(slice: &[u8]) -> Result<SecretKey<C>, Error>

Deserialize secret key from an encoded secret scalar passed as a byte slice.

The slice is expected to be a minimum of 24-bytes (192-byts) and at most C::FieldBytesSize bytes in length.

Byte slices shorter than the field size are handled by zero padding the input.

Source

pub fn to_bytes(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>

Serialize raw secret scalar as a big endian integer.

Source

pub fn from_sec1_der(der_bytes: &[u8]) -> Result<SecretKey<C>, Error>

Deserialize secret key encoded in the SEC1 ASN.1 DER ECPrivateKey format.

Trait Implementations

Source§

impl<C> Clone for SecretKey<C>
where C: Clone + Curve,

Source§

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

Source§

fn ct_eq(&self, other: &SecretKey<C>) -> Choice

Determine if two items are equal. Read more
Source§

impl<C> Debug for SecretKey<C>
where C: Curve,

Source§

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

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

impl<C> Drop for SecretKey<C>
where C: Curve,

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<C> From<&NonZeroScalar<C>> for SecretKey<C>
where C: CurveArithmetic,

Source§

fn from(scalar: &NonZeroScalar<C>) -> SecretKey<C>

Converts to this type from the input type.
Source§

impl<C> From<&SigningKey<C>> for SecretKey<C>

Source§

fn from(secret_key: &SigningKey<C>) -> SecretKey<C>

Converts to this type from the input type.
Source§

impl<C> From<NonZeroScalar<C>> for SecretKey<C>
where C: CurveArithmetic,

Source§

fn from(scalar: NonZeroScalar<C>) -> SecretKey<C>

Converts to this type from the input type.
Source§

impl<C> From<SigningKey<C>> for SecretKey<C>

Source§

fn from(key: SigningKey<C>) -> SecretKey<C>

Converts to this type from the input type.
Source§

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

Source§

fn eq(&self, other: &SecretKey<C>) -> 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> TryFrom<EcPrivateKey<'_>> for SecretKey<C>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(sec1_private_key: EcPrivateKey<'_>) -> Result<SecretKey<C>, Error>

Performs the conversion.
Source§

impl<C> Eq for SecretKey<C>
where C: Curve,

Source§

impl<C> ZeroizeOnDrop for SecretKey<C>
where C: Curve,