Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 492 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 492 Bytes

Bech32 Rust

Rust implementation of the Bech32 encoding format described in BIP-0173.

Bitcoin-specific address encoding is handled by the bitcoin-bech32 crate.

Example

use bech32::Bech32;

let b = Bech32::new("bech32".into(), vec![0x00, 0x01, 0x02]).unwrap();
let encoded = b.to_string();
assert_eq!(encoded, "bech321qpz4nc4pe".to_string());

let c = encoded.parse::<Bech32>();
assert_eq!(b, c.unwrap());