bee64 1.0.0

easily encodes and decodes standard base64
Documentation
1
2
3
4
5
6
7
8
9
# bee64

One-line base64 standard encoding and decoding.
Thin-wrapper over [base64](https://crates.io/crates/base64) to enable you to write

```rust
let b64_encoded = bee64::endode(&vec![1; 42]);
let b64_decoded = bee64::decode(&b64_encoded).unwrap();
```