This is a base16 (e.g. hexadecimal) encoding and decoding library which was initially written with an emphasis on performance.
This was before Rust added SIMD, and I haven't gotten around to adding that. It's still probably the fastest non-SIMD impl, but that doesn't say much.
Add base16 = "0.1"
to Cargo.toml, then:
```rust extern crate base16;
fn main() { let originalmsg = "Foobar"; let hexstring = base16::encodelower(originalmsg); asserteq!(hexstring, "466f6f626172"); let decoded = base16::decode(&hexstring).unwrap(); asserteq!(String::fromutf8(decoded).unwrap(), originalmsg); } ```
More usage examples in the docs.
no_std
UsageThis crate supports use in no_std
configurations using the following knobs.
"alloc"
feature, which is on by default, adds a number of helpful functions
that require use of the alloc
crate,
but not the rest of std
. This is no_std
compatible.
alloc
feature."std"
feature, which is on by default, enables the "alloc"
feature, and
additionally makes base16::DecodeError
implement the std::error::Error
trait.
(Frustratingly, this trait is in std
and not in core
or alloc
...)For clarity, this means that by default, we assume you are okay with use of std
.
If you'd like to disable the use of std
, but are in an environment where you have
an allocator (e.g. use of the alloc
crate is acceptable), then you require this as alloc
-only as follows:
```toml [dependencies]
std
(but leave use of alloc
).base16 = { version = "0.2", default-features = false, features = ["alloc"] } ```
If you just want the core base16
functionality and none of the helpers, then
you should turn off all features.
```toml [dependencies]
std
and alloc
.base16 = { version = "0.2", default-features = false } ```
Both of these configurations are no_std
compatible.
Public domain, as explained here