aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/crypto/store.rs
blob: f57359d3861a9d712d1c6624771e76c3fb00d00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::collections::HashMap;

/// A thin user keystore
/// 
/// It's implementation can manage multiple keys per user, of various
/// types and constrained for limited access rights.
pub struct KeyStore {

}

struct StoreUser {
    name: String,
    HashMap<
}