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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
//! Items for connecting and interacting with a lair keystore as a client.
use crate::lair_api::api_traits::*;
use crate::*;
use futures::future::{BoxFuture, FutureExt};
use futures::stream::StreamExt;
use hc_seed_bundle::dependencies::sodoken::{BufRead, BufReadSized};
use parking_lot::RwLock;
use std::collections::HashMap;
use std::future::Future;
use std::sync::Arc;
/// Traits related to LairClient. Unless you're writing a new
/// implementation, you probably don't need these.
pub mod client_traits {
use super::*;
/// Object-safe lair client trait. Implement this to provide a new
/// lair client backend implementation.
pub trait AsLairClient: 'static + Send + Sync {
/// Return the encryption context key for passphrases, etc.
fn get_enc_ctx_key(&self) -> sodoken::BufReadSized<32>;
/// Return the decryption context key for passphrases, etc.
fn get_dec_ctx_key(&self) -> sodoken::BufReadSized<32>;
/// Shutdown the client connection.
fn shutdown(&self) -> BoxFuture<'static, LairResult<()>>;
/// Handle a lair client request
fn request(
&self,
request: LairApiEnum,
) -> BoxFuture<'static, LairResult<LairApiEnum>>;
}
}
use client_traits::*;
/// A lair keystore client handle. Use this to make requests of the keystore.
#[derive(Clone)]
pub struct LairClient(pub Arc<dyn AsLairClient>);
/// Helper fn that auto matches responses with request type,
/// and converts 'Error' type messages into actual Err results.
fn priv_lair_api_request<R: AsLairRequest>(
client: &dyn AsLairClient,
request: R,
) -> impl Future<Output = LairResult<R::Response>> + 'static + Send
where
one_err::OneErr: std::convert::From<
<<R as AsLairRequest>::Response as std::convert::TryFrom<
LairApiEnum,
>>::Error,
>,
{
let request = request.into_api_enum();
let fut = AsLairClient::request(client, request);
async move {
let res = fut.await?;
match res {
LairApiEnum::ResError(err) => Err(err.error),
res => {
let res: R::Response = std::convert::TryFrom::try_from(res)?;
Ok(res)
}
}
}
}
impl LairClient {
/// Return the encryption context key for passphrases, etc.
pub fn get_enc_ctx_key(&self) -> sodoken::BufReadSized<32> {
AsLairClient::get_enc_ctx_key(&*self.0)
}
/// Return the decryption context key for passphrases, etc.
pub fn get_dec_ctx_key(&self) -> sodoken::BufReadSized<32> {
AsLairClient::get_dec_ctx_key(&*self.0)
}
/// Shutdown the client connection.
pub fn shutdown(
&self,
) -> impl Future<Output = LairResult<()>> + 'static + Send {
AsLairClient::shutdown(&*self.0)
}
/// Handle a generic lair client request.
pub fn request<R: AsLairRequest>(
&self,
request: R,
) -> impl Future<Output = LairResult<R::Response>> + 'static + Send
where
one_err::OneErr: std::convert::From<
<<R as AsLairRequest>::Response as std::convert::TryFrom<
LairApiEnum,
>>::Error,
>,
{
priv_lair_api_request(&*self.0, request)
}
/// Send the hello message to establish server authenticity.
/// Check with your implementation before invoking this...
/// it likely handles this for you in its constructor.
pub fn hello(
&self,
expected_server_pub_key: BinDataSized<32>,
) -> impl Future<Output = LairResult<Arc<str>>> + 'static + Send {
let inner = self.0.clone();
async move {
// build / send the message
let req = LairApiReqHello::new();
let res = priv_lair_api_request(&*inner, req).await?;
// expect the expected server pub key
if res.server_pub_key != expected_server_pub_key {
return Err(one_err::OneErr::with_message(
"ServerPubKeyMismatch",
format!(
"expected {} != returned {}",
expected_server_pub_key, res.server_pub_key,
),
));
}
Ok(res.version)
}
}
/// Send the unlock request to unlock / communicate with the server.
/// (this verifies client authenticity)
/// Check with your implementation before invoking this...
/// it likely handles this for you in its constructor.
pub fn unlock(
&self,
passphrase: sodoken::BufRead,
) -> impl Future<Output = LairResult<()>> + 'static + Send {
let inner = self.0.clone();
async move {
let passphrase =
encrypt_passphrase(passphrase, inner.get_enc_ctx_key()).await?;
let req = LairApiReqUnlock::new(passphrase);
let _res = priv_lair_api_request(&*inner, req).await?;
Ok(())
}
}
/// Request a list of entries from lair.
pub fn list_entries(
&self,
) -> impl Future<Output = LairResult<Vec<LairEntryInfo>>> + 'static + Send
{
let r_fut =
priv_lair_api_request(&*self.0, LairApiReqListEntries::new());
async move {
let r = r_fut.await?;
Ok(r.entry_list)
}
}
/// Return the EntryInfo for a given tag, or error if no such tag.
pub fn get_entry(
&self,
tag: Arc<str>,
) -> impl Future<Output = LairResult<LairEntryInfo>> + 'static + Send {
let inner = self.0.clone();
async move {
let req = LairApiReqGetEntry::new(tag);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.entry_info)
}
}
/// Instruct lair to generate a new seed from cryptographically secure
/// random data with given tag. If the seed should be deeply locked,
/// supply the deep_lock_passphrase as well.
/// Respects hc_seed_bundle::PwHashLimits.
pub fn new_seed(
&self,
tag: Arc<str>,
deep_lock_passphrase: Option<sodoken::BufRead>,
exportable: bool,
) -> impl Future<Output = LairResult<SeedInfo>> + 'static + Send {
let limits = hc_seed_bundle::PwHashLimits::current();
let inner = self.0.clone();
async move {
// if this is to be a deep locked seed / encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => {
let passphrase =
encrypt_passphrase(pass, inner.get_enc_ctx_key())
.await?;
Some(DeepLockPassphrase::new(passphrase, limits))
}
};
let req = LairApiReqNewSeed::new(tag, secret, exportable);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.seed_info)
}
}
/// Export seeds (that are marked "exportable") by using the
/// x25519xsalsa20poly1305 "crypto_box" algorithm.
pub fn export_seed_by_tag(
&self,
tag: Arc<str>,
sender_pub_key: X25519PubKey,
recipient_pub_key: X25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
) -> impl Future<Output = LairResult<([u8; 24], Arc<[u8]>)>> + 'static + Send
{
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqExportSeedByTag::new(
tag,
sender_pub_key,
recipient_pub_key,
secret,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok((res.nonce, res.cipher))
}
}
/// Import a seed encrypted via x25519xsalsa20poly1305 secretbox.
/// Note it is 100% valid to co-opt this function to allow importing
/// seeds that have been generated via custom algorithms, but
/// you take responsibility for those security concerns.
/// Respects hc_seed_bundle::PwHashLimits.
#[allow(clippy::too_many_arguments)]
pub fn import_seed(
&self,
sender_pub_key: X25519PubKey,
recipient_pub_key: X25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
nonce: [u8; 24],
cipher: Arc<[u8]>,
tag: Arc<str>,
exportable: bool,
) -> impl Future<Output = LairResult<SeedInfo>> + 'static + Send {
let limits = hc_seed_bundle::PwHashLimits::current();
let inner = self.0.clone();
async move {
// if this is to be a deep locked seed / encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => {
let secret =
encrypt_passphrase(pass, inner.get_enc_ctx_key())
.await?;
Some(DeepLockPassphrase::new(secret, limits))
}
};
let req = LairApiReqImportSeed::new(
sender_pub_key,
recipient_pub_key,
secret,
nonce,
cipher,
tag,
exportable,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.seed_info)
}
}
// uhhhh... clippy?? [u32] by itself is not sized... so, yes
// this *does* have to be Boxed...
#[allow(clippy::boxed_local)]
/// Derive a pre-existing key identified by given src_tag, with given
/// derivation path, storing the final resulting sub-seed with
/// the given dst_tag.
/// Respects hc_seed_bundle::PwHashLimits.
pub fn derive_seed(
&self,
src_tag: Arc<str>,
src_deep_lock_passphrase: Option<BufRead>,
dst_tag: Arc<str>,
dst_deep_lock_passphrase: Option<BufRead>,
derivation_path: Box<[u32]>,
) -> impl Future<Output = LairResult<SeedInfo>> + 'static + Send {
let inner = self.0.clone();
let limits = PwHashLimits::current();
async move {
let src_deep_lock_passphrase =
if let Some(p) = src_deep_lock_passphrase {
Some(DeepLockPassphrase::new(
encrypt_passphrase(p, inner.get_enc_ctx_key()).await?,
limits,
))
} else {
None
};
let dst_deep_lock_passphrase =
if let Some(p) = dst_deep_lock_passphrase {
Some(DeepLockPassphrase::new(
encrypt_passphrase(p, inner.get_enc_ctx_key()).await?,
limits,
))
} else {
None
};
let req = LairApiReqDeriveSeed::new(
src_tag,
src_deep_lock_passphrase,
dst_tag,
dst_deep_lock_passphrase,
derivation_path,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.seed_info)
}
}
/// Generate a signature for given data, with the ed25519 keypair
/// derived from seed identified by the given ed25519 pubkey.
pub fn sign_by_pub_key(
&self,
pub_key: Ed25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
data: Arc<[u8]>,
) -> impl Future<Output = LairResult<Ed25519Signature>> + 'static + Send
{
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqSignByPubKey::new(pub_key, secret, data);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.signature)
}
}
/// Encrypt data for a target recipient using the
/// x25519xsalsa20poly1305 "crypto_box" algorithm.
pub fn crypto_box_xsalsa_by_pub_key(
&self,
sender_pub_key: X25519PubKey,
recipient_pub_key: X25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
data: Arc<[u8]>,
) -> impl Future<Output = LairResult<([u8; 24], Arc<[u8]>)>> + 'static + Send
{
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqCryptoBoxXSalsaByPubKey::new(
sender_pub_key,
recipient_pub_key,
secret,
data,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok((res.nonce, res.cipher))
}
}
/// Decrypt data from a target sender using the
/// x25519xsalsa20poly1305 "crypto_box_open" algorithm.
pub fn crypto_box_xsalsa_open_by_pub_key(
&self,
sender_pub_key: X25519PubKey,
recipient_pub_key: X25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
nonce: [u8; 24],
cipher: Arc<[u8]>,
) -> impl Future<Output = LairResult<Arc<[u8]>>> + 'static + Send {
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqCryptoBoxXSalsaOpenByPubKey::new(
sender_pub_key,
recipient_pub_key,
secret,
nonce,
cipher,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.message)
}
}
/// Encrypt data for a target recipient using the
/// x25519xsalsa20poly1305 "crypto_box" algorithm.
/// WARNING: This function actually translates the ed25519 signing
/// keys into encryption keys. Please understand the downsides of
/// doing this before using this function:
/// <https://doc.libsodium.org/advanced/ed25519-curve25519>
pub fn crypto_box_xsalsa_by_sign_pub_key(
&self,
sender_pub_key: Ed25519PubKey,
recipient_pub_key: Ed25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
data: Arc<[u8]>,
) -> impl Future<Output = LairResult<([u8; 24], Arc<[u8]>)>> + 'static + Send
{
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqCryptoBoxXSalsaBySignPubKey::new(
sender_pub_key,
recipient_pub_key,
secret,
data,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok((res.nonce, res.cipher))
}
}
/// Decrypt data from a target sender using the
/// x25519xsalsa20poly1305 "crypto_box_open" algorithm.
/// WARNING: This function actually translates the ed25519 signing
/// keys into encryption keys. Please understand the downsides of
/// doing this before using this function:
/// <https://doc.libsodium.org/advanced/ed25519-curve25519>
pub fn crypto_box_xsalsa_open_by_sign_pub_key(
&self,
sender_pub_key: Ed25519PubKey,
recipient_pub_key: Ed25519PubKey,
deep_lock_passphrase: Option<sodoken::BufRead>,
nonce: [u8; 24],
cipher: Arc<[u8]>,
) -> impl Future<Output = LairResult<Arc<[u8]>>> + 'static + Send {
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqCryptoBoxXSalsaOpenBySignPubKey::new(
sender_pub_key,
recipient_pub_key,
secret,
nonce,
cipher,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.message)
}
}
/// Instruct lair to generate a new well-known-authority signed TLS cert.
/// This is a lot like a self-signed certificate, but slightly easier to
/// work with in that it allows registering a single well-known-authority
/// as a certificate authority which will respect multiple certs.
pub fn new_wka_tls_cert(
&self,
tag: Arc<str>,
) -> impl Future<Output = LairResult<CertInfo>> + 'static + Send {
let inner = self.0.clone();
async move {
let req = LairApiReqNewWkaTlsCert::new(tag);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.cert_info)
}
}
/// Fetch the private key associated with a wka_tls_cert entry.
/// Will error if the entry specified by 'tag' is not a wka_tls_cert.
pub fn get_wka_tls_cert_priv_key(
&self,
tag: Arc<str>,
) -> impl Future<Output = LairResult<sodoken::BufRead>> + 'static + Send
{
let inner = self.0.clone();
async move {
let req = LairApiReqGetWkaTlsCertPrivKey::new(tag);
let res = priv_lair_api_request(&*inner, req).await?;
let res = res.priv_key.decrypt(inner.get_dec_ctx_key()).await?;
Ok(res)
}
}
/// Shared secret encryption using the libsodium
/// xsalsa20poly1305 "secretbox" algorithm.
pub fn secretbox_xsalsa_by_tag(
&self,
tag: Arc<str>,
deep_lock_passphrase: Option<sodoken::BufRead>,
data: Arc<[u8]>,
) -> impl Future<Output = LairResult<([u8; 24], Arc<[u8]>)>> + 'static + Send
{
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqSecretBoxXSalsaByTag::new(tag, secret, data);
let res = priv_lair_api_request(&*inner, req).await?;
Ok((res.nonce, res.cipher))
}
}
/// Shared secret decryption using the libsodium
/// xsalsa20poly1305 "secretbox_open" algorithm.
pub fn secretbox_xsalsa_open_by_tag(
&self,
tag: Arc<str>,
deep_lock_passphrase: Option<sodoken::BufRead>,
nonce: [u8; 24],
cipher: Arc<[u8]>,
) -> impl Future<Output = LairResult<Arc<[u8]>>> + 'static + Send {
let inner = self.0.clone();
async move {
// if this is a deep locked seed, we need to encrypt the passphrase
let secret = match deep_lock_passphrase {
None => None,
Some(pass) => Some(
encrypt_passphrase(pass, inner.get_enc_ctx_key()).await?,
),
};
let req = LairApiReqSecretBoxXSalsaOpenByTag::new(
tag, secret, nonce, cipher,
);
let res = priv_lair_api_request(&*inner, req).await?;
Ok(res.message)
}
}
}
pub mod async_io;
async fn encrypt_passphrase(
pass: BufRead,
key: BufReadSized<32>,
) -> LairResult<DeepLockPassphraseBytes> {
// pre-hash the passphrase
let pw_hash = <sodoken::BufWriteSized<64>>::new_mem_locked()?;
sodoken::hash::blake2b::hash(pw_hash.clone(), pass).await?;
let secret = SecretDataSized::encrypt(key, pw_hash.to_read_sized()).await?;
Ok(secret)
}