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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
use std::borrow::Cow;
use std::str::FromStr;
use super::enc::{Encrypted, ToDecrypt};
pub use crate::crypto::{
alg::KeyAlg,
buffer::{SecretBytes, WriteBuffer},
encrypt::KeyAeadParams,
};
use crate::{
crypto::{
alg::{bls::BlsKeyGen, AnyKey, AnyKeyCreate, BlsCurves},
encrypt::KeyAeadInPlace,
jwk::{FromJwk, ToJwk},
kdf::{KeyDerivation, KeyExchange},
random::{fill_random, RandomDet},
repr::{ToPublicBytes, ToSecretBytes},
sign::{KeySigVerify, KeySign, SignatureType},
Error as CryptoError,
},
error::Error,
};
#[derive(Debug)]
pub struct LocalKey {
pub(crate) inner: Box<AnyKey>,
pub(crate) ephemeral: bool,
}
impl LocalKey {
pub fn generate(alg: KeyAlg, ephemeral: bool) -> Result<Self, Error> {
let inner = Box::<AnyKey>::random(alg)?;
Ok(Self { inner, ephemeral })
}
pub fn from_seed(alg: KeyAlg, seed: &[u8], method: Option<&str>) -> Result<Self, Error> {
let inner = match method {
Some("bls_keygen") => Box::<AnyKey>::generate(alg, BlsKeyGen::new(seed)?)?,
None | Some("") => Box::<AnyKey>::generate(alg, RandomDet::new(seed))?,
_ => {
return Err(err_msg!(
Unsupported,
"Unknown seed method for key generation"
))
}
};
Ok(Self {
inner,
ephemeral: false,
})
}
pub fn from_jwk_slice(jwk: &[u8]) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_jwk_slice(jwk)?;
Ok(Self {
inner,
ephemeral: false,
})
}
pub fn from_jwk(jwk: &str) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_jwk(jwk)?;
Ok(Self {
inner,
ephemeral: false,
})
}
pub fn from_public_bytes(alg: KeyAlg, public: &[u8]) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_public_bytes(alg, public)?;
Ok(Self {
inner,
ephemeral: false,
})
}
pub fn to_public_bytes(&self) -> Result<SecretBytes, Error> {
Ok(self.inner.to_public_bytes()?)
}
pub fn from_secret_bytes(alg: KeyAlg, secret: &[u8]) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_secret_bytes(alg, secret)?;
Ok(Self {
inner,
ephemeral: false,
})
}
pub fn to_secret_bytes(&self) -> Result<SecretBytes, Error> {
Ok(self.inner.to_secret_bytes()?)
}
pub fn to_key_exchange(&self, alg: KeyAlg, pk: &LocalKey) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_key_exchange(alg, &*self.inner, &*pk.inner)?;
Ok(Self {
inner,
ephemeral: self.ephemeral || pk.ephemeral,
})
}
pub(crate) fn from_key_derivation(
alg: KeyAlg,
derive: impl KeyDerivation,
) -> Result<Self, Error> {
let inner = Box::<AnyKey>::from_key_derivation(alg, derive)?;
Ok(Self {
inner,
ephemeral: false,
})
}
pub(crate) fn encode(&self) -> Result<SecretBytes, Error> {
Ok(self.inner.to_jwk_secret()?)
}
pub fn algorithm(&self) -> KeyAlg {
self.inner.algorithm()
}
pub fn to_jwk_public(&self, alg: Option<KeyAlg>) -> Result<String, Error> {
Ok(self.inner.to_jwk_public(alg)?)
}
pub fn to_jwk_secret(&self) -> Result<SecretBytes, Error> {
Ok(self.inner.to_jwk_secret()?)
}
pub fn to_jwk_thumbprint(&self, alg: Option<KeyAlg>) -> Result<String, Error> {
Ok(self.inner.to_jwk_thumbprint(alg)?)
}
pub fn to_jwk_thumbprints(&self) -> Result<Vec<String>, Error> {
if self.inner.algorithm() == KeyAlg::Bls12_381(BlsCurves::G1G2) {
return Ok(vec![
self.inner
.to_jwk_thumbprint(Some(KeyAlg::Bls12_381(BlsCurves::G1)))?,
self.inner
.to_jwk_thumbprint(Some(KeyAlg::Bls12_381(BlsCurves::G2)))?,
]);
} else {
Ok(vec![self.inner.to_jwk_thumbprint(None)?])
}
}
pub fn convert_key(&self, alg: KeyAlg) -> Result<Self, Error> {
let inner = self.inner.convert_key(alg)?;
Ok(Self {
inner,
ephemeral: self.ephemeral,
})
}
pub fn aead_params(&self) -> Result<KeyAeadParams, Error> {
let params = self.inner.aead_params();
if params.tag_length == 0 {
return Err(err_msg!(
Unsupported,
"AEAD is not supported for this key type"
));
}
Ok(params)
}
pub fn aead_padding(&self, msg_len: usize) -> usize {
self.inner.aead_padding(msg_len)
}
pub fn aead_random_nonce(&self) -> Result<Vec<u8>, Error> {
let nonce_len = self.inner.aead_params().nonce_length;
if nonce_len == 0 {
return Ok(Vec::new());
}
let mut buf = Vec::with_capacity(nonce_len);
buf.resize(nonce_len, 0u8);
fill_random(&mut buf);
Ok(buf)
}
pub fn aead_encrypt(
&self,
message: &[u8],
nonce: &[u8],
aad: &[u8],
) -> Result<Encrypted, Error> {
let params = self.inner.aead_params();
let mut nonce = Cow::Borrowed(nonce);
if nonce.is_empty() && params.nonce_length > 0 {
nonce = Cow::Owned(self.aead_random_nonce()?);
}
let pad_len = self.inner.aead_padding(message.len());
let mut buf =
SecretBytes::from_slice_reserve(message, pad_len + params.tag_length + nonce.len());
let tag_pos = self.inner.encrypt_in_place(&mut buf, nonce.as_ref(), aad)?;
let nonce_pos = buf.len();
if !nonce.is_empty() {
buf.extend_from_slice(nonce.as_ref());
}
Ok(Encrypted::new(buf, tag_pos, nonce_pos))
}
pub fn aead_decrypt<'d>(
&'d self,
ciphertext: impl Into<ToDecrypt<'d>>,
nonce: &[u8],
aad: &[u8],
) -> Result<SecretBytes, Error> {
let mut buf = ciphertext.into().into_secret();
self.inner.decrypt_in_place(&mut buf, nonce, aad)?;
Ok(buf)
}
pub fn sign_message(&self, message: &[u8], sig_type: Option<&str>) -> Result<Vec<u8>, Error> {
let mut sig = Vec::new();
self.inner.write_signature(
message,
sig_type.map(SignatureType::from_str).transpose()?,
&mut sig,
)?;
Ok(sig)
}
pub fn verify_signature(
&self,
message: &[u8],
signature: &[u8],
sig_type: Option<&str>,
) -> Result<bool, Error> {
Ok(self.inner.verify_signature(
message,
signature,
sig_type.map(SignatureType::from_str).transpose()?,
)?)
}
pub fn wrap_key(&self, key: &LocalKey, nonce: &[u8]) -> Result<Encrypted, Error> {
let params = self.inner.aead_params();
let mut buf = SecretBytes::with_capacity(
key.inner.secret_bytes_length()? + params.tag_length + params.nonce_length,
);
key.inner.write_secret_bytes(&mut buf)?;
let tag_pos = self.inner.encrypt_in_place(&mut buf, nonce, &[])?;
let nonce_pos = buf.len();
buf.extend_from_slice(nonce);
Ok(Encrypted::new(buf, tag_pos, nonce_pos))
}
pub fn unwrap_key<'d>(
&'d self,
alg: KeyAlg,
ciphertext: impl Into<ToDecrypt<'d>>,
nonce: &[u8],
) -> Result<LocalKey, Error> {
let mut buf = ciphertext.into().into_secret();
self.inner.decrypt_in_place(&mut buf, nonce, &[])?;
Self::from_secret_bytes(alg, buf.as_ref())
}
}
impl KeyExchange for LocalKey {
fn write_key_exchange(
&self,
other: &LocalKey,
out: &mut dyn WriteBuffer,
) -> Result<(), CryptoError> {
self.inner.write_key_exchange(&other.inner, out)
}
}