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
//! # Tpfs Krypt
//!
//! The `tpfs_krypt` crate provides an implementation-agnostic interface used to manage
//! (e.g. generate, list or import keypairs) and work with (e.g. sign and later
//! encrypt) cryptographic secrets.
//!
//! The common apis are [`KeyManagement`] and [`Signature`] traits, and the [`Address`] struct.
//!
//! [`KeyManagement`]: trait.KeyManagement.html
//! [`Signature`]: trait.Signature.html
//! [`Address`]: struct.Address.html
//!
//! How to configure a specific KeyManager can be found within the module. Two sample ones are
//! the [`file_key_manager`] and the [`in_memory_key_manager`] modules.
//!
//! [`file_key_manager`]: file_key_manager/index.html
//! [`in_memory_key_manager`]: in_memory_key_manager/index.html
//!
//! ## Example: Performing Signing
//!
//! Here's a basic example of using a directory and the FileKeyManager to create a key and then perform a signing.
//!
//! ```rust
//! use std::fs;
//! use std::path::PathBuf;
//! use tpfs_krypt::{
//! config::{KeyManagerConfig, KryptConfig},
//! errors::KeyManagementError,
//! from_config, FileKeyManagerConfig, KeyType
//! };
//!
//! let path = PathBuf::from("/tmp/krypt/keypairs/");
//! if !path.exists() {
//! fs::create_dir_all(&path).unwrap();
//! }
//!
//! let config = KryptConfig {
//! key_manager_config: KeyManagerConfig::FileKeyManager(FileKeyManagerConfig {
//! keypair_directory_path: path.into_os_string().into_string().unwrap(),
//! }),
//! };
//!
//! let mut key_manager = from_config(config)?;
//! let address = key_manager.generate_keypair(KeyType::SubstrateSr25519)?;
//! let signature = key_manager.sign(address.as_ref(), b"My important message that can be verified was done by me via my public address.")?;
//! let signature_bytes: &[u8] = signature.as_ref().as_ref();
//! # Ok::<(), KeyManagementError>(())
//! ```
//!
//! ## Example: Performing shared encryption, generating a deterministic key per-message.
//!
//! Shared Encryption allows for two parties to share a secret with each other. Diffie-Hellman is
//! used for this purpose, but we deviate from the standard interactive protocol in order to avoid
//! additional storage overhead in the context of on-chain transactions. Rather than having the
//! initiator send some encrypted randomness to the receiver, we use something that is unique and
//! publicly available (as part of the transaction, typically) to take the place of this randomness.
//! This also makes it convenient for the initiator/sender to decrypt old messages, since the
//! process is always the same. IE: They don't have to store the randomness that would normally
//! be transmitted to the receiver somewhere.
//!
//! This does mean that, if either party's private key is stolen, the owner will be able to decrypt
//! the exchanged data. Periodic rotation of encryption keys is recommended.
//!
//! ```rust
//! use secrecy::ExposeSecret;
//! use std::fs;
//! use std::path::PathBuf;
//! use tpfs_krypt::{
//! config::{KeyManagerConfig, KryptConfig},
//! errors::KeyManagementError,
//! from_config, FileKeyManagerConfig, KeyManagement, KeyType, SharedEncryption, DecryptionStrategy
//! };
//!
//! fn create_file_key_manager(path: PathBuf) -> Result<Box<dyn KeyManagement>, KeyManagementError> {
//! if !path.exists() {
//! fs::create_dir_all(&path).unwrap();
//! }
//!
//! let config = KryptConfig {
//! key_manager_config: KeyManagerConfig::FileKeyManager(FileKeyManagerConfig {
//! keypair_directory_path: path.into_os_string().into_string().unwrap(),
//! }),
//! };
//!
//! from_config(config)
//! }
//!
//! let mut sender_key_manager = create_file_key_manager(PathBuf::from("/tmp/krypt/sender/keypairs/"))?;
//! let mut receiver_key_manager = create_file_key_manager(PathBuf::from("/tmp/krypt/receiver/keypairs/"))?;
//! let sender = sender_key_manager.generate_keypair(KeyType::SharedEncryptionX25519)?;
//! let receiver = receiver_key_manager.generate_keypair(KeyType::SharedEncryptionX25519)?;
//!
//! let message = b"My super super secret message.";
//! let public_input = b"Some public data";
//! let encrypted = sender_key_manager.shared_encrypt(sender.as_ref(),
//! &receiver.pubkey,
//! message,
//! public_input)?;
//! let decrypted = receiver_key_manager.shared_decrypt(receiver.as_ref(),
//! DecryptionStrategy::Receiver(encrypted))?;
//! assert_eq!(message, decrypted.expose_secret().as_slice());
//! # Ok::<(), KeyManagementError>(())
//! ```
//!
//! ## Substrate DEV_PHRASE with derived keys.
//!
//! You'll notice the use of the `Secrecy` crate and that it is to make sure that the phrase's
//! contents are zeroed out from memory once the secret is imported into the key manager.
//! The `sp_core` crate is used for pulling in substrate keys and for checking the address
//! returned from the key manager match.
//!
//! ```rust
//! use std::{path::PathBuf, fs};
//! use tpfs_krypt::{
//! config::{KeyManagerConfig, KryptConfig},
//! errors::KeyManagementError,
//! from_config, FileKeyManagerConfig, KeyType, secrecy::Secret,
//! sp_core::{crypto::{DEV_PHRASE, Pair, Ss58Codec}, sr25519}
//! };
//!
//! let path = PathBuf::from("/tmp/krypt/keypairs/");
//! if !path.exists() {
//! fs::create_dir_all(&path).unwrap();
//! }
//!
//! let config = KryptConfig {
//! key_manager_config: KeyManagerConfig::FileKeyManager(FileKeyManagerConfig {
//! keypair_directory_path: path.into_os_string().into_string().unwrap(),
//! }),
//! };
//!
//! let mut key_manager = from_config(config)?;
//! let secret_phrase = Secret::new(format!("{}//Xand", DEV_PHRASE));
//! let address = key_manager.import_keypair(secret_phrase, KeyType::SubstrateSr25519)?;
//! let signature = key_manager.sign(address.as_ref(), b"My important message that can be verified was done by me via my public address.")?;
//! let signature_bytes: &[u8] = signature.as_ref().as_ref();
//!
//! // You can generate the address yourself with the code below.
//! let pair = sr25519::Pair::from_string("//Xand", None)?;
//! assert_eq!(pair.public().to_ss58check(), address.id.value);
//! # Ok::<(), KeyManagementError>(())
//! ```
//!
//! ## Example: For use in Tests
//!
//! Since it can be kind of heavy to set up a directory with keys to just run a series of tests.
//! This is what the InMemoryKeyManager was built for to allow for quick uses of the key manager
//! without having to set up a way to actually persist the keys. It allows for importing a set of
//! initial keys to avoid having to run import and manage them as secrets.
//!
//! ```rust
//! use sp_core::crypto::DEV_PHRASE;
//! use tpfs_krypt::{
//! config::{KeyManagerConfig, KryptConfig},
//! from_config, InMemoryKeyManagerConfig, KeyType,
//! };
//!
//! let config = KryptConfig {
//! key_manager_config: KeyManagerConfig::InMemoryKeyManager(InMemoryKeyManagerConfig {
//! initial_keys: get_initial_keys(),
//! }),
//! };
//!
//! let key_manager = from_config(config).unwrap();
//!
//! /// Creates an initial set of keys for tests to work with.
//! pub fn get_initial_keys() -> Vec<(KeyType, String)> {
//! let paths = vec!["Biggie", "2Pac", "Xand", "Trust"];
//!
//! let mut keys: Vec<(KeyType, String)> = paths
//! .iter()
//! .map(|path| {
//! (
//! KeyType::SubstrateSr25519,
//! format!("{}//{}", DEV_PHRASE, path),
//! )
//! })
//! .collect();
//!
//! keys.push((KeyType::SubstrateSr25519, String::from(DEV_PHRASE)));
//! keys
//! }
//! ```
extern crate config as cfg;
extern crate derive_more;
extern crate lazy_static;
extern crate proptest;
extern crate serde;
extern crate strum_macros;
pub use HashicorpVaultKeyManagerConfig;
pub use ;
pub use crate;
pub use ;
pub use secrecy;
pub use sp_core;
pub use Encrypted;
pub use ;
pub
pub
use Result;
use Secret;
use TryFrom;
use Zeroize;
/// The different sorts of keys that will be managed via this crate.
/// This will be persisted with the key for when we may want to be able
/// to return the type of the key after it's been imported or generated.
/// The ability to validate the address using this trait.
/// Uniquely identifies (the public portion of) a key
/// Returned specifically from calls to generate new keypairs. Includes the public key bytes, which
/// is useful for shared encryption, for example.
/// The trait for KeyManagement that is organized based on addresses
/// created based on the key type.
/// A trait that just performs encryption that is intended to be both ways via SharedEncryption
/// which is accessible via KeyManagement trait.
/// The decryption strategy provides the context needed to decrypt a message
/// based on whether you are the sender or receiver of the message,
/// as they are slightly different protocols.
/// Contains an encrypted message sent by you,
/// along with the parameters used to generate the original encrypted message.
/// Contains an encrypted message along with the sender Diffie-Hellman key.
/// A fixed sized type alias for a public key
pub type PublicKey = ;
/// A trait for the signature that may be expanded on later.
/// A trait that specifies any of the signing portions which is shared publicly via KeyManagement trait.