|
@@ -6,10 +6,20 @@ fn main() {
|
|
|
// create new bridgedb (implicitly generates keys)
|
|
|
let bridgedb = BridgeDb::new();
|
|
|
|
|
|
- // output public key to new file
|
|
|
- let pubkey_bytes = bridgedb.pubkey.to_bytes();
|
|
|
- let mut outfile =
|
|
|
- File::create("bridgedb_pubkey").expect("Failed to create pubkey file");
|
|
|
- outfile.write_all(&pubkey_bytes)
|
|
|
- .expect("Failed to write pubkey");
|
|
|
+ // output full serialized bridgedb
|
|
|
+ let mut bridgedb_outfile =
|
|
|
+ File::create("bridgedb.json").expect("Failed to create bridgedb.json");
|
|
|
+ let bridgedb_outfile_json = serde_json::to_string(&bridgedb).unwrap();
|
|
|
+ write!(bridgedb_outfile, "{}", bridgedb_outfile_json)
|
|
|
+ .expect("Failed to write to bridgedb.json");
|
|
|
+
|
|
|
+ // output bridgedb public key
|
|
|
+ let mut bridgedb_pubkey_outfile =
|
|
|
+ File::create("bridgedb_pubkey.json").expect("Failed to create bridgedb_pubkey.json");
|
|
|
+ write!(
|
|
|
+ bridgedb_pubkey_outfile,
|
|
|
+ "{}",
|
|
|
+ serde_json::to_string(&bridgedb.pubkey).unwrap()
|
|
|
+ )
|
|
|
+ .expect("Failed to write to bridgedb_pubkey.json");
|
|
|
}
|