#base64 #decode-base64 #codec #urlsafe

ub64

urlsafe base64 编码/解码

3 个版本

0.0.10 2023年8月19日
0.0.5 2023年8月19日
0.0.4 2023年8月19日

#21#decode-base64

BSL-1.0 许可证

10KB
162

ub64 : urlsafe base64 编码/解码

→ tests/main.rs

use ub64::{b64_u64, b64d, b64e, u64_b64};

#[test]
fn main() {
  let bin = [1, 2, 3];
  let b64 = b64e(bin);
  dbg!(&b64);
  dbg!(b64d(b64).unwrap());
  let n = 9876543210;
  let u64_b64 = u64_b64(n);
  dbg!(&u64_b64);
  dbg!(b64_u64(u64_b64));
}

运行

→ out.txt

+ cargo test --all-features -- --nocapture
     Running tests/main.rs (target/debug/deps/main-8af48d1761c45bbe)
[tests/main.rs:7] &b64 = "AQID"
[tests/main.rs:8] b64d(b64).unwrap() = [
    1,
    2,
    3,
]
[tests/main.rs:11] &u64_b64 = "6hawTAI"
[tests/main.rs:12] b64_u64(u64_b64) = 9876543210

依赖

~230KB