b45

Crates.iob45
lib.rsb45
version0.1.0
sourcesrc
created_at2021-11-10 22:11:21.450888
updated_at2021-11-10 22:11:21.450888
descriptionBase45 encoder and decoder
homepage
repositoryhttps://github.com/lostinc0de/b45.git
max_upload_size
id479905
size6,039
(lostinc0de)

documentation

README

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");
Commit count: 3

cargo fmt