pub struct SecretKey<C: Curve> { /* private fields */ }
Expand description

Elliptic curve secret keys.

This type wraps a secret scalar value, helping to prevent accidental exposure and securely erasing the value from memory when dropped.

Parsing PKCS#8 Keys

PKCS#8 is a commonly used format for encoding secret keys (especially ones generated by OpenSSL).

Keys in PKCS#8 format are either binary (ASN.1 BER/DER), or PEM encoded (ASCII) and begin with the following:

-----BEGIN PRIVATE KEY-----

To decode an elliptic curve private key from PKCS#8, enable the pkcs8 feature of this crate (or the pkcs8 feature of a specific RustCrypto elliptic curve crate) and use the [DecodePrivateKey] trait to parse it.

When the pem feature of this crate (or a specific RustCrypto elliptic curve crate) is enabled, a [FromStr] impl is also available.

Implementations§

source§

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

source

pub fn random(rng: impl CryptoRng + RngCore) -> Selfwhere C: ProjectiveArithmetic,

Generate a random SecretKey.

source

pub fn new(scalar: ScalarCore<C>) -> Self

Create a new secret key from a scalar value.

source

pub fn as_scalar_core(&self) -> &ScalarCore<C>

Borrow the inner secret ScalarCore 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: Curve + ProjectiveArithmetic,

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: Curve + ProjectiveArithmetic,

Get the PublicKey which corresponds to this secret key

source

pub fn from_be_bytes(bytes: &[u8]) -> Result<Self>

Deserialize raw secret scalar as a big endian integer.

source

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

Serialize raw secret scalar as a big endian integer.

source

pub fn from_sec1_der(der_bytes: &[u8]) -> Result<Self>where C: Curve + ValidatePublicKey, FieldSize<C>: ModulusSize,

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

source

pub fn to_sec1_der(&self) -> Result<Zeroizing<Vec<u8>>>where C: Curve + ProjectiveArithmetic, AffinePoint<C>: FromEncodedPoint<C> + ToEncodedPoint<C>, FieldSize<C>: ModulusSize,

Serialize secret key in the SEC1 ASN.1 DER ECPrivateKey format.

Trait Implementations§

source§

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

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: &Self) -> 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

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: Curve + ProjectiveArithmetic,

source§

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

Converts to this type from the input type.
source§

impl<C> From<&SecretKey<C>> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

Converts to this type from the input type.
source§

impl<C> From<NonZeroScalar<C>> for SecretKey<C>where C: Curve + ProjectiveArithmetic,

source§

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

Converts to this type from the input type.
source§

impl<C> From<SecretKey<C>> for NonZeroScalar<C>where C: Curve + ScalarArithmetic,

source§

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

Converts to this type from the input type.
source§

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

source§

fn eq(&self, other: &Self) -> 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<C> TryFrom<EcPrivateKey<'_>> for SecretKey<C>where C: Curve + ValidatePublicKey, FieldSize<C>: ModulusSize,

§

type Error = Error

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

fn try_from(sec1_private_key: EcPrivateKey<'_>) -> Result<Self>

Performs the conversion.
source§

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

source§

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

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for SecretKey<C>where <C as Curve>::UInt: RefUnwindSafe,

§

impl<C> Send for SecretKey<C>

§

impl<C> Sync for SecretKey<C>

§

impl<C> Unpin for SecretKey<C>where <C as Curve>::UInt: Unpin,

§

impl<C> UnwindSafe for SecretKey<C>where <C as Curve>::UInt: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.