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
//! interact with a lair keystore
use crate::lair_api::traits::*;
use crate::*;
use futures::future::{BoxFuture, FutureExt};
use futures::stream::StreamExt;
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 traits {
use super::*;
/// Defines the lair client API.
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 traits::*;
/// Concrete lair client struct.
#[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 key = inner.get_enc_ctx_key();
let passphrase = SecretData::encrypt(key, passphrase).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>,
) -> 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 key = inner.get_enc_ctx_key();
let secret = SecretData::encrypt(key, pass).await?;
Some(DeepLockPassphrase {
ops_limit: limits.as_ops_limit(),
mem_limit: limits.as_mem_limit(),
passphrase: secret,
})
}
};
let req = LairApiReqNewSeed::new(tag, secret);
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.
pub fn derive_seed(
&self,
_src_tag: Arc<str>,
_src_deep_lock_passphrase: Option<sodoken::BufRead>,
_dst_tag: Arc<str>,
_dst_deep_lock_passphrase: Option<sodoken::BufRead>,
_derivation: Box<[u32]>,
) -> impl Future<Output = LairResult<SeedInfo>> + 'static + Send {
async move { unimplemented!() }
}
/// Generate a signature for given data, with the ed25519 keypair
/// derived from seed identified by the given ed25519 pubkey.
/// Respects hc_seed_bundle::PwHashLimits.
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) => {
let key = inner.get_enc_ctx_key();
let secret = SecretData::encrypt(key, pass).await?;
Some(secret)
}
};
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.
/// Respects hc_seed_bundle::PwHashLimits.
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) => {
let key = inner.get_enc_ctx_key();
let secret = SecretData::encrypt(key, pass).await?;
Some(secret)
}
};
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.
/// Respects hc_seed_bundle::PwHashLimits.
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) => {
let key = inner.get_enc_ctx_key();
let secret = SecretData::encrypt(key, pass).await?;
Some(secret)
}
};
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)
}
}
/// 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)
}
}
}
pub mod async_io;