use crate::{error, Error, PrivateKeyInfo, Result};
use alloc::{borrow::ToOwned, vec::Vec};
use core::{
convert::{TryFrom, TryInto},
fmt,
};
use der::Encodable;
use zeroize::{Zeroize, Zeroizing};
#[cfg(feature = "encryption")]
use {
crate::{EncryptedPrivateKeyDocument, EncryptedPrivateKeyInfo},
pkcs5::pbes2,
rand_core::{CryptoRng, RngCore},
};
#[cfg(feature = "pem")]
use {
crate::{pem, private_key_info::PEM_TYPE_LABEL, LineEnding},
alloc::string::String,
core::str::FromStr,
};
#[cfg(feature = "std")]
use std::{fs, path::Path, str};
#[derive(Clone)]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
pub struct PrivateKeyDocument(Zeroizing<Vec<u8>>);
impl PrivateKeyDocument {
pub fn private_key_info(&self) -> PrivateKeyInfo<'_> {
PrivateKeyInfo::try_from(self.0.as_ref()).expect("malformed PrivateKeyDocument")
}
pub fn from_der(bytes: &[u8]) -> Result<Self> {
bytes.try_into()
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
pub fn from_pem(s: &str) -> Result<Self> {
let (label, der_bytes) = pem::decode_vec(s.as_bytes())?;
if label != PEM_TYPE_LABEL {
return Err(pem::Error::Label.into());
}
Self::from_der(&*der_bytes)
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
pub fn to_pem(&self) -> Zeroizing<String> {
self.to_pem_with_le(LineEnding::default())
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
pub fn to_pem_with_le(&self, line_ending: LineEnding) -> Zeroizing<String> {
Zeroizing::new(
pem::encode_string(PEM_TYPE_LABEL, line_ending, &self.0)
.expect(error::PEM_ENCODING_MSG),
)
}
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub fn read_der_file(path: impl AsRef<Path>) -> Result<Self> {
fs::read(path)?.try_into()
}
#[cfg(all(feature = "pem", feature = "std"))]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub fn read_pem_file(path: impl AsRef<Path>) -> Result<Self> {
Self::from_pem(&Zeroizing::new(fs::read_to_string(path)?))
}
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub fn write_der_file(&self, path: impl AsRef<Path>) -> Result<()> {
write_secret_file(path, self.as_ref())
}
#[cfg(all(feature = "pem", feature = "std"))]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub fn write_pem_file(&self, path: impl AsRef<Path>) -> Result<()> {
write_secret_file(path, self.to_pem().as_bytes())
}
#[cfg(feature = "encryption")]
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
pub fn encrypt(
&self,
mut rng: impl CryptoRng + RngCore,
password: impl AsRef<[u8]>,
) -> Result<EncryptedPrivateKeyDocument> {
let mut salt = [0u8; 16];
rng.fill_bytes(&mut salt);
let mut iv = [0u8; 16];
rng.fill_bytes(&mut iv);
let pbes2_params = pbes2::Parameters::scrypt_aes256cbc(Default::default(), &salt, &iv)
.map_err(|_| Error::Crypto)?;
self.encrypt_with_params(pbes2_params, password)
}
#[cfg(feature = "encryption")]
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
pub fn encrypt_with_params(
&self,
pbes2_params: pbes2::Parameters<'_>,
password: impl AsRef<[u8]>,
) -> Result<EncryptedPrivateKeyDocument> {
pbes2_params
.encrypt(password, self.as_ref())
.map(|encrypted_data| {
EncryptedPrivateKeyInfo {
encryption_algorithm: pbes2_params.into(),
encrypted_data: &encrypted_data,
}
.into()
})
.map_err(|_| Error::Crypto)
}
}
impl AsRef<[u8]> for PrivateKeyDocument {
fn as_ref(&self) -> &[u8] {
self.0.as_ref()
}
}
impl From<PrivateKeyInfo<'_>> for PrivateKeyDocument {
fn from(private_key_info: PrivateKeyInfo<'_>) -> PrivateKeyDocument {
PrivateKeyDocument::from(&private_key_info)
}
}
impl From<&PrivateKeyInfo<'_>> for PrivateKeyDocument {
fn from(private_key_info: &PrivateKeyInfo<'_>) -> PrivateKeyDocument {
private_key_info
.to_vec()
.ok()
.and_then(|buf| buf.try_into().ok())
.expect(error::DER_ENCODING_MSG)
}
}
impl TryFrom<&[u8]> for PrivateKeyDocument {
type Error = Error;
fn try_from(bytes: &[u8]) -> Result<Self> {
PrivateKeyInfo::try_from(bytes)?;
Ok(Self(Zeroizing::new(bytes.to_owned())))
}
}
impl TryFrom<Vec<u8>> for PrivateKeyDocument {
type Error = Error;
fn try_from(mut bytes: Vec<u8>) -> Result<Self> {
if let Err(err) = PrivateKeyInfo::try_from(bytes.as_slice()) {
bytes.zeroize();
return Err(err);
}
Ok(Self(Zeroizing::new(bytes)))
}
}
impl fmt::Debug for PrivateKeyDocument {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_tuple("PrivateKeyDocument")
.field(&self.private_key_info())
.finish()
}
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
impl FromStr for PrivateKeyDocument {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
Self::from_pem(s)
}
}
#[cfg(all(unix, feature = "std"))]
pub(super) fn write_secret_file(path: impl AsRef<Path>, data: &[u8]) -> Result<()> {
use std::{io::Write, os::unix::fs::OpenOptionsExt};
#[cfg(unix)]
const SECRET_FILE_PERMS: u32 = 0o600;
fs::OpenOptions::new()
.create(true)
.write(true)
.truncate(true)
.mode(SECRET_FILE_PERMS)
.open(path)
.and_then(|mut file| file.write_all(data))?;
Ok(())
}
#[cfg(all(not(unix), feature = "std"))]
pub(super) fn write_secret_file(path: impl AsRef<Path>, data: &[u8]) -> Result<()> {
fs::write(path, data)?;
Ok(())
}