bee64 1.0.0

easily encodes and decodes standard base64
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 13.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 336.43 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • gaetanww/bee64
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • gaetanww

bee64

One-line base64 standard encoding and decoding. Thin-wrapper over base64 to enable you to write

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