| Crates.io | b45 |
| lib.rs | b45 |
| version | 0.1.0 |
| created_at | 2021-11-10 22:11:21.450888+00 |
| updated_at | 2021-11-10 22:11:21.450888+00 |
| description | Base45 encoder and decoder |
| homepage | |
| repository | https://github.com/lostinc0de/b45.git |
| max_upload_size | |
| id | 479905 |
| size | 6,039 |
It works similarly to the base45 crate but decoding may be faster. The algorithm has been tested against the examples from the Base45 draft: https://datatracker.ietf.org/doc/draft-faltstrom-base45/
For encoding a string:
let str_encoded = b45::encode("...");
And for decoding a string:
let str_decoded = b45::decode("QED8WEX0");