b45 0.1.0

Base45 encoder and decoder
Documentation
  • Coverage
  • 0%
    0 out of 6 items documented0 out of 5 items with examples
  • Size
  • Source code size: 5.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.44 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • lostinc0de/b45
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • lostinc0de

b45

A Base45 encoder and decoder written in Rust

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/

Usage

For encoding a string:

    let str_encoded = b45::encode("...");

And for decoding a string:

    let str_decoded = b45::decode("QED8WEX0");