47 个版本 (5 个重大更改)
使用旧的 Rust 2015
0.6.1 | 2017 年 7 月 7 日 |
---|---|
0.5.7 | 2017 年 7 月 5 日 |
#1 in #wdg
每月下载量 38 次
140KB
2K SLoC
rust-base32
安装
Cargo.toml
[dependencies]
wdg-base32="*"
如何使用?
B32::<type>::encode(data);
B32::<type>::validation(data);
B32::<type>::decode(data);
B32::<type>::unsafe_decode(data);
类型 | u8/i8 | u16/i16 | u32/i32 | u64/i64 | String |
---|---|---|---|---|---|
编码 | -/- | -/- | -/- | -/- | + |
验证 | +/+ | +/+ | +/+ | +/+ | + |
解码 | +/+ | +/+ | +/+ | +/+ | + |
示例
extern crate wdg_base32;
use wdg_base32::{B32,B32Encode,B32Decode};
fn main(){
// u8
println!("{}",B32::<String>::encode(5u8));
// u16
println!("{}",B32::<String>::encode(5u16));
}