A collection of utilities for working with hexadecimals
Add package to Cargo.toml file
rust [dependencies] hex-utilities = "0.1.2"
```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); ```
Available methods and documentation can be found here
MIT © Joe Gesualdo