1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use crate::{error, Error, FromRsaPrivateKey, Result, RsaPrivateKey, ToRsaPrivateKey};
use alloc::{borrow::ToOwned, vec::Vec};
use core::{
convert::{TryFrom, TryInto},
fmt,
};
use der::Encodable;
use zeroize::{Zeroize, Zeroizing};
#[cfg(feature = "pem")]
use {
crate::{pem, private_key::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 RsaPrivateKeyDocument(Zeroizing<Vec<u8>>);
impl RsaPrivateKeyDocument {
pub fn private_key(&self) -> RsaPrivateKey<'_> {
RsaPrivateKey::try_from(self.0.as_ref()).expect("malformed PrivateKeyDocument")
}
pub fn as_der(&self) -> &[u8] {
self.0.as_ref()
}
}
impl FromRsaPrivateKey for RsaPrivateKeyDocument {
fn from_pkcs1_private_key(private_key: RsaPrivateKey<'_>) -> Result<Self> {
Ok(Self(Zeroizing::new(private_key.to_vec()?)))
}
fn from_pkcs1_der(bytes: &[u8]) -> Result<Self> {
RsaPrivateKey::try_from(bytes)?;
Ok(Self(Zeroizing::new(bytes.to_owned())))
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
fn from_pkcs1_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());
}
RsaPrivateKey::try_from(der_bytes.as_slice())?;
Ok(Self(Zeroizing::new(der_bytes)))
}
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
fn read_pkcs1_der_file(path: &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")))]
fn read_pkcs1_pem_file(path: &Path) -> Result<Self> {
Self::from_pkcs1_pem(&Zeroizing::new(fs::read_to_string(path)?))
}
}
impl ToRsaPrivateKey for RsaPrivateKeyDocument {
fn to_pkcs1_der(&self) -> Result<RsaPrivateKeyDocument> {
Ok(self.clone())
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
fn to_pkcs1_pem_with_le(&self, line_ending: LineEnding) -> Result<Zeroizing<String>> {
let pem_doc = pem::encode_string(PEM_TYPE_LABEL, line_ending, self.as_der())?;
Ok(Zeroizing::new(pem_doc))
}
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
fn write_pkcs1_der_file(&self, path: &Path) -> Result<()> {
write_secret_file(path, self.as_der())
}
#[cfg(all(feature = "pem", feature = "std"))]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
fn write_pkcs1_pem_file(&self, path: &Path) -> Result<()> {
let pem_doc = self.to_pkcs1_pem()?;
write_secret_file(path, pem_doc.as_bytes())
}
}
impl AsRef<[u8]> for RsaPrivateKeyDocument {
fn as_ref(&self) -> &[u8] {
self.as_der()
}
}
impl From<RsaPrivateKey<'_>> for RsaPrivateKeyDocument {
fn from(private_key: RsaPrivateKey<'_>) -> RsaPrivateKeyDocument {
RsaPrivateKeyDocument::from(&private_key)
}
}
impl From<&RsaPrivateKey<'_>> for RsaPrivateKeyDocument {
fn from(private_key: &RsaPrivateKey<'_>) -> RsaPrivateKeyDocument {
private_key
.to_vec()
.ok()
.and_then(|buf| buf.try_into().ok())
.expect(error::DER_ENCODING_MSG)
}
}
impl TryFrom<&[u8]> for RsaPrivateKeyDocument {
type Error = Error;
fn try_from(bytes: &[u8]) -> Result<Self> {
RsaPrivateKeyDocument::from_pkcs1_der(bytes)
}
}
impl TryFrom<Vec<u8>> for RsaPrivateKeyDocument {
type Error = Error;
fn try_from(mut bytes: Vec<u8>) -> Result<Self> {
if let Err(err) = RsaPrivateKey::try_from(bytes.as_slice()) {
bytes.zeroize();
return Err(err);
}
Ok(Self(Zeroizing::new(bytes)))
}
}
impl fmt::Debug for RsaPrivateKeyDocument {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_tuple("RsaPrivateKeyDocument")
.field(&self.private_key())
.finish()
}
}
#[cfg(feature = "pem")]
#[cfg_attr(docsrs, doc(cfg(feature = "pem")))]
impl FromStr for RsaPrivateKeyDocument {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
Self::from_pkcs1_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(())
}