| Crates.io | borden |
| lib.rs | borden |
| version | 0.1.0 |
| created_at | 2023-02-23 13:10:18.611924+00 |
| updated_at | 2023-02-23 13:10:18.611924+00 |
| description | A simple RFC 4648-compliant Base64 encoder and decoder |
| homepage | |
| repository | https://github.com/hoosiernational/Borden |
| max_upload_size | |
| id | 792742 |
| size | 7,339 |
Simple lightweight Base64 encoder/decoder which allows fast RFC 4648-compliant Base64 usage without the engine generation, large dependencies, and unnecessary customization of the base64 crate.
It has no public structs, and only two methods:
encode(input: Vec<u8>) -> Stringdecode(input: &str) -> Vec<u8>