aboutsummaryrefslogtreecommitdiffstats
path: root/src/db.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-05-03 02:38:01 -0400
committerJesse Luehrs <doy@tozt.net>2020-05-03 02:38:01 -0400
commit1b0b0e9eaa546f50f6916cc631edaaa7dc8442e8 (patch)
treeb464713fdc59bbdb9006842a03de9cbddbd1dddf /src/db.rs
parente89ecaf0792dea1d36b6f071cb32bf79665c8e37 (diff)
downloadrbw-1b0b0e9eaa546f50f6916cc631edaaa7dc8442e8.tar.gz
rbw-1b0b0e9eaa546f50f6916cc631edaaa7dc8442e8.zip
also store org keys in the local db
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/db.rs b/src/db.rs
index af7a29c..5f200ab 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -33,6 +33,7 @@ pub struct Db {
pub iterations: Option<u32>,
pub protected_key: Option<String>,
pub protected_private_key: Option<String>,
+ pub protected_org_keys: std::collections::HashMap<String, String>,
pub entries: Vec<Entry>,
}