1 unstable release

0.1.0 Nov 10, 2021

#155 in #encoder

MIT license

7KB
131 lines

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");

No runtime deps