Hex Utilities

A collection of utilities for working with hexadecimals

Install

Add package to Cargo.toml file rust [dependencies] hex-utilities = "0.1.1"

Usage:

```rust use hexutilities::{ gettextforhex, }

// Convert hext to text // Should work similiar to this http://www.unit-conversion.info/texttools/hexadecimal let hex = "30784e6f6e63652077617320666f756e646564".tostring(); let expectedtext = "0xNonce was founded".tostring(); let maybetext = gettextforhex(&hex); let text = match maybetext { Ok(text) => text.tostring(), Err() => "wrong".tostring(), }; asserteq!(text, expected_text); ```

License

MIT © Joe Gesualdo