178 lines
5.5 KiB
Rust
178 lines
5.5 KiB
Rust
//! SEC1 elliptic curve private key support.
|
|
//!
|
|
//! Support for ASN.1 DER-encoded elliptic curve private keys as described in
|
|
//! SEC1: Elliptic Curve Cryptography (Version 2.0) Appendix C.4 (p.108):
|
|
//!
|
|
//! <https://www.secg.org/sec1-v2.pdf>
|
|
|
|
use crate::{EcParameters, Error, Result};
|
|
use core::fmt;
|
|
use der::{
|
|
asn1::{BitStringRef, ContextSpecific, ContextSpecificRef, OctetStringRef},
|
|
Decode, DecodeValue, Encode, EncodeValue, Header, Length, Reader, Sequence, Tag, TagMode,
|
|
TagNumber, Writer,
|
|
};
|
|
|
|
#[cfg(all(feature = "alloc", feature = "zeroize"))]
|
|
use der::SecretDocument;
|
|
|
|
#[cfg(feature = "pem")]
|
|
use der::pem::PemLabel;
|
|
|
|
/// `ECPrivateKey` version.
|
|
///
|
|
/// From [RFC5913 Section 3]:
|
|
/// > version specifies the syntax version number of the elliptic curve
|
|
/// > private key structure. For this version of the document, it SHALL
|
|
/// > be set to ecPrivkeyVer1, which is of type INTEGER and whose value
|
|
/// > is one (1).
|
|
///
|
|
/// [RFC5915 Section 3]: https://datatracker.ietf.org/doc/html/rfc5915#section-3
|
|
const VERSION: u8 = 1;
|
|
|
|
/// Context-specific tag number for the elliptic curve parameters.
|
|
const EC_PARAMETERS_TAG: TagNumber = TagNumber::new(0);
|
|
|
|
/// Context-specific tag number for the public key.
|
|
const PUBLIC_KEY_TAG: TagNumber = TagNumber::new(1);
|
|
|
|
/// SEC1 elliptic curve private key.
|
|
///
|
|
/// Described in [SEC1: Elliptic Curve Cryptography (Version 2.0)]
|
|
/// Appendix C.4 (p.108) and also [RFC5915 Section 3]:
|
|
///
|
|
/// ```text
|
|
/// ECPrivateKey ::= SEQUENCE {
|
|
/// version INTEGER { ecPrivkeyVer1(1) } (ecPrivkeyVer1),
|
|
/// privateKey OCTET STRING,
|
|
/// parameters [0] ECParameters {{ NamedCurve }} OPTIONAL,
|
|
/// publicKey [1] BIT STRING OPTIONAL
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// When encoded as PEM (text), keys in this format begin with the following:
|
|
///
|
|
/// ```text
|
|
/// -----BEGIN EC PRIVATE KEY-----
|
|
/// ```
|
|
///
|
|
/// [SEC1: Elliptic Curve Cryptography (Version 2.0)]: https://www.secg.org/sec1-v2.pdf
|
|
/// [RFC5915 Section 3]: https://datatracker.ietf.org/doc/html/rfc5915#section-3
|
|
#[derive(Clone)]
|
|
pub struct EcPrivateKey<'a> {
|
|
/// Private key data.
|
|
pub private_key: &'a [u8],
|
|
|
|
/// Elliptic curve parameters.
|
|
pub parameters: Option<EcParameters>,
|
|
|
|
/// Public key data, optionally available if version is V2.
|
|
pub public_key: Option<&'a [u8]>,
|
|
}
|
|
|
|
impl<'a> EcPrivateKey<'a> {
|
|
fn context_specific_parameters(&self) -> Option<ContextSpecificRef<'_, EcParameters>> {
|
|
self.parameters.as_ref().map(|params| ContextSpecificRef {
|
|
tag_number: EC_PARAMETERS_TAG,
|
|
tag_mode: TagMode::Explicit,
|
|
value: params,
|
|
})
|
|
}
|
|
|
|
fn context_specific_public_key(
|
|
&self,
|
|
) -> der::Result<Option<ContextSpecific<BitStringRef<'a>>>> {
|
|
self.public_key
|
|
.map(|pk| {
|
|
BitStringRef::from_bytes(pk).map(|value| ContextSpecific {
|
|
tag_number: PUBLIC_KEY_TAG,
|
|
tag_mode: TagMode::Explicit,
|
|
value,
|
|
})
|
|
})
|
|
.transpose()
|
|
}
|
|
}
|
|
|
|
impl<'a> DecodeValue<'a> for EcPrivateKey<'a> {
|
|
fn decode_value<R: Reader<'a>>(reader: &mut R, header: Header) -> der::Result<Self> {
|
|
reader.read_nested(header.length, |reader| {
|
|
if u8::decode(reader)? != VERSION {
|
|
return Err(der::Tag::Integer.value_error());
|
|
}
|
|
|
|
let private_key = OctetStringRef::decode(reader)?.as_bytes();
|
|
let parameters = reader.context_specific(EC_PARAMETERS_TAG, TagMode::Explicit)?;
|
|
let public_key = reader
|
|
.context_specific::<BitStringRef<'_>>(PUBLIC_KEY_TAG, TagMode::Explicit)?
|
|
.map(|bs| bs.as_bytes().ok_or_else(|| Tag::BitString.value_error()))
|
|
.transpose()?;
|
|
|
|
Ok(EcPrivateKey {
|
|
private_key,
|
|
parameters,
|
|
public_key,
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
impl EncodeValue for EcPrivateKey<'_> {
|
|
fn value_len(&self) -> der::Result<Length> {
|
|
VERSION.encoded_len()?
|
|
+ OctetStringRef::new(self.private_key)?.encoded_len()?
|
|
+ self.context_specific_parameters().encoded_len()?
|
|
+ self.context_specific_public_key()?.encoded_len()?
|
|
}
|
|
|
|
fn encode_value(&self, writer: &mut impl Writer) -> der::Result<()> {
|
|
VERSION.encode(writer)?;
|
|
OctetStringRef::new(self.private_key)?.encode(writer)?;
|
|
self.context_specific_parameters().encode(writer)?;
|
|
self.context_specific_public_key()?.encode(writer)?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<'a> Sequence<'a> for EcPrivateKey<'a> {}
|
|
|
|
impl<'a> TryFrom<&'a [u8]> for EcPrivateKey<'a> {
|
|
type Error = Error;
|
|
|
|
fn try_from(bytes: &'a [u8]) -> Result<EcPrivateKey<'a>> {
|
|
Ok(Self::from_der(bytes)?)
|
|
}
|
|
}
|
|
|
|
impl<'a> fmt::Debug for EcPrivateKey<'a> {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("EcPrivateKey")
|
|
.field("parameters", &self.parameters)
|
|
.field("public_key", &self.public_key)
|
|
.finish_non_exhaustive()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "alloc")]
|
|
impl TryFrom<EcPrivateKey<'_>> for SecretDocument {
|
|
type Error = Error;
|
|
|
|
fn try_from(private_key: EcPrivateKey<'_>) -> Result<Self> {
|
|
SecretDocument::try_from(&private_key)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "alloc")]
|
|
impl TryFrom<&EcPrivateKey<'_>> for SecretDocument {
|
|
type Error = Error;
|
|
|
|
fn try_from(private_key: &EcPrivateKey<'_>) -> Result<Self> {
|
|
Ok(Self::encode_msg(private_key)?)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "pem")]
|
|
impl PemLabel for EcPrivateKey<'_> {
|
|
const PEM_LABEL: &'static str = "EC PRIVATE KEY";
|
|
}
|