bech32 0.8

This commit is contained in:
Jack Grigg 2021-03-21 12:02:11 +13:00
parent 98a4c993b3
commit 9b82182828
6 changed files with 24 additions and 11 deletions

View file

@ -10,7 +10,7 @@ edition = "2018"
[dependencies]
age-core = { version = "0.5.0", path = "../age-core", features = ["plugin"] }
bech32 = "0.7.2"
bech32 = "0.8"
chrono = "0.4"
secrecy = "0.7"

View file

@ -159,6 +159,7 @@
#![deny(intra_doc_link_resolution_failure)]
#![deny(missing_docs)]
use bech32::Variant;
use secrecy::SecretString;
use std::io;
@ -184,6 +185,7 @@ pub fn print_new_identity(plugin_name: &str, identity: &[u8], recipient: &[u8])
bech32::encode(
&format!("{}{}", PLUGIN_RECIPIENT_PREFIX, plugin_name),
recipient.to_base32(),
Variant::Bech32
)
.expect("HRP is valid")
);
@ -192,6 +194,7 @@ pub fn print_new_identity(plugin_name: &str, identity: &[u8], recipient: &[u8])
bech32::encode(
&format!("{}{}-", PLUGIN_IDENTITY_PREFIX, plugin_name),
identity.to_base32(),
Variant::Bech32,
)
.expect("HRP is valid")
.to_uppercase()