3个版本
0.0.2 | 2024年6月25日 |
---|---|
0.0.1 | 2021年1月6日 |
0.0.0 | 2020年9月6日 |
#1496 在 编码
每月 38 次下载
在 11 个crate中使用(通过 koibumi-core)
7KB
93 行
此crate是一个Base58编码/解码库。
该库旨在实现Bitmessage地址编码/解码器。
lib.rs
:
此crate是一个Base58编码/解码库。
该库旨在实现Bitmessage地址编码/解码器。
示例
use koibumi_base58 as base58;
let test = base58::encode(b"hello");
let expected = "Cn8eVZg";
assert_eq!(test, expected);
use koibumi_base58 as base58;
let test = base58::decode("Cn8eVZg")?;
let expected = b"hello";
assert_eq!(test, expected);
依赖关系
~495KB
~10K SLoC