mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 03:17:42 +03:00
bech32 0.8
This commit is contained in:
parent
98a4c993b3
commit
9b82182828
6 changed files with 24 additions and 11 deletions
|
@ -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"
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue