.. | ||
benches | ||
src | ||
tests | ||
.cargo-checksum.json | ||
Cargo.toml | ||
README.md |
rust-multibase
multibase implementation in Rust.
Table of Contents
Install
First add this to your Cargo.toml
[dependencies]
multibase = "*"
Then run cargo build
.
Usage
base32 and base64 are orders of magnitude faster due to byte alignment. Don't be surprised if using a different base turns into a performance bottleneck. You were warned!
use multibase::Base;
let base64 = encode(Base::Base64, b"hello world");
let (base, data) = decode(base64);
Maintainers
Captain: @dignifiedquire.
Contribute
Contributions welcome. Please check out the issues.
Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.
Small note: If editing the README, please conform to the standard-readme specification.
License
MIT © 2017 Friedel Ziegelmayer