base-x

Build Status

This is a Rust fork of https://github.com/cryptocoinjs/base-x

WARNING: This module is NOT RFC3548 compliant, it cannot be used for base16 (hex), base32, or base64 encoding in a standards compliant manner.

And this my very first Rust project: please review the source code!

Installation

Add this to Cargo.toml file:

toml [dependencies] base-x = "0.2.0"

Usage

```rust extern crate base_x;

fn main() { let decoded = basex::decode("01", "11111111000000001111111100000000").unwrap(); let encoded = basex::encode("01", &decoded); assert_eq!(encoded, "11111111000000001111111100000000"); } ```

Changelog

Contributors