borden 0.1.0

A simple RFC 4648-compliant Base64 encoder and decoder
Documentation
1
2
3
4
5
6
7
# Borden

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>) -> String`
 - `decode(input: &str) -> Vec<u8>`