Base32 编码/解码器
作者 Ram
使用旧的 Rust 2015
#38 in #base32
3KB 62 行代码(不包括注释)
一个简单的 Base-32 编码/解码器。它只包含两个函数
b32::encode(String) -> String; b32::decode(String) -> Option<String>;
将以下内容添加到您的 Cargo.toml
Cargo.toml
[dependencies] b32 = "0.1.0"
这段小巧的代码发布在 MIT 许可证下。