1个不稳定版本
0.1.0 | 2023年10月6日 |
---|
#2184 在 编码
6KB
99 行
chromium-base64-rs
chromium的btoa和atob的纯Rust实现
依赖项
chromium-base64-rs = "0.1.0"
示例
以下是一个编码和解码示例
let base64_encoded_string = base64_encode_to_string("Hello World!".as_bytes());
let decoded_string = base64_decode_to_string(base64_encoded_string.as_bytes());
lib.rs
:
chromium的btoa
和atob
的纯Rust移植。
使用示例
let base64_encoded_string = base64_encode_to_string("Hello World!".as_bytes());
let decoded_string = base64_decode_to_string(base64_encoded_string.as_bytes());