elliptic_curve

Struct SecretKey

Source
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) -> Self

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>

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>

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>

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

Source

pub fn to_sec1_der(&self) -> Result<Zeroizing<Vec<u8>>>

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

Source

pub fn from_sec1_pem(s: &str) -> Result<Self>

Parse SecretKey from PEM-encoded SEC1 ECPrivateKey format.

PEM-encoded SEC1 keys can be identified by the leading delimiter:

-----BEGIN EC PRIVATE KEY-----
Source

pub fn to_pem(&self, line_ending: LineEnding) -> Result<Zeroizing<String>>

Serialize private key as self-zeroizing PEM-encoded SEC1 ECPrivateKey with the given pem::LineEnding.

Pass Default::default() to use the OS’s native line endings.

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> DecodePrivateKey for SecretKey<C>

Source§

fn from_pkcs8_der(bytes: &[u8]) -> Result<Self, Error>

Deserialize PKCS#8 private key from ASN.1 DER-encoded data (binary format).
Source§

fn from_pkcs8_pem(s: &str) -> Result<Self, Error>

Deserialize PKCS#8-encoded private key from PEM. 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> EncodePrivateKey for SecretKey<C>

Source§

fn to_pkcs8_der(&self) -> Result<SecretDocument>

Serialize a SecretDocument containing a PKCS#8-encoded private key.
Source§

fn to_pkcs8_pem( &self, line_ending: LineEnding, ) -> Result<Zeroizing<String>, Error>

Serialize this private key as PEM-encoded PKCS#8 with the given LineEnding.
Source§

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

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>

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>

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>

Source§

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

Converts to this type from the input type.
Source§

impl<C> FromStr for SecretKey<C>

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self>

Parses a string s to return a value of this type. Read more
Source§

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

Source§

fn eq(&self, other: &Self) -> 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<Self>

Performs the conversion.
Source§

impl<C> TryFrom<PrivateKeyInfo<'_>> for SecretKey<C>

Source§

type Error = Error

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

fn try_from(private_key_info: PrivateKeyInfo<'_>) -> 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> Freeze for SecretKey<C>
where <C as Curve>::UInt: Freeze,

§

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

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> DecodeEcPrivateKey for T

§

fn from_sec1_der(private_key: &[u8]) -> Result<T, Error>

Deserialize SEC1 private key from ASN.1 DER-encoded data (binary format).
§

fn from_sec1_pem(s: &str) -> Result<Self, Error>

Deserialize SEC1-encoded private key from PEM. Read more
§

impl<T> EncodeEcPrivateKey for T

§

fn to_sec1_der(&self) -> Result<SecretDocument, Error>

Serialize a SecretDocument containing a SEC1-encoded private key.
§

fn to_sec1_pem( &self, line_ending: LineEnding, ) -> Result<Zeroizing<String>, Error>

Serialize this private key as PEM-encoded SEC1 with the given LineEnding. 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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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

Source§

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.