#base64 #rfc-4648

borden

A simple RFC 4648-compliant Base64 encoder and decoder

1 unstable release

0.1.0 Feb 23, 2023

#2184 in Encoding

MIT/Apache

6KB
198 lines

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>

No runtime deps