This commit is contained in:
Alex Auvolat
2020-11-20 23:20:20 +01:00
parent 173f0dbac9
commit 68be5072e5
2 changed files with 4 additions and 6 deletions
+2 -3
View File
@@ -31,14 +31,13 @@ impl Key {
pub fn new(name: String) -> Self {
let key_id = format!("GK{}", hex::encode(&rand::random::<[u8; 12]>()[..]));
let secret_key = hex::encode(&rand::random::<[u8; 32]>()[..]);
let ret = Self {
Self {
key_id,
secret_key,
name: crdt::LWW::new(name),
deleted: crdt::Bool::new(false),
authorized_buckets: crdt::LWWMap::new(),
};
ret
}
}
pub fn delete(key_id: String) -> Self {
Self {