aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/crypto/mod.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-07-12 20:25:35 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-07-12 20:25:35 +0200
commit756101753bca95800ce2dfe6dcbfeedc4148b80d (patch)
tree82ae97572cd09aed8a3decc73d19dd3f3ca58bb3 /lockchain-core/src/crypto/mod.rs
parent73f788ecc9b02d7cf909f4326f6c8813cc6a39ca (diff)
Adding a new keystore to lockchain-core::crypto, composing a userstore
from two metadomains now (users, registry) to allow for a better user registry pipeline. Tweaking examples to make all this work and generally cleaning up code
Diffstat (limited to '')
-rw-r--r--lockchain-core/src/crypto/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/lockchain-core/src/crypto/mod.rs b/lockchain-core/src/crypto/mod.rs
index 6fa17bb..671cff0 100644
--- a/lockchain-core/src/crypto/mod.rs
+++ b/lockchain-core/src/crypto/mod.rs
@@ -13,10 +13,12 @@ mod keys {
impl AutoEncoder for KeyType {}
}
-pub mod passwords;
+// pub mod passwords;
pub mod encoding;
+pub mod keystore;
pub mod hashing;
pub mod random;
pub use self::data::PackedData;
+pub use self::keystore::KeyStore;
pub use self::keys::{Key, KeyType};