chromium-base64-rs 0.1.0

Pure rust implementation of chromium's btoa and atob
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# chromium-base64-rs
Pure rust implementation of chromium's btoa and atob

# Dependency
```toml
chromium-base64-rs = "0.1.0"
```

# Example
Here's a encoding and decoding example:
```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());
```