Here are a few quick examples of the most commonly used operations: hexifying and dehexifying.
However, this crate also offers many other utilities for Array/Bytes/Hex, each with comprehensive documentation and examples. Check them out on docs.rs!
use array_bytes::{Dehexify, Hexify};
use smallvec::SmallVec;
// Hexify.
// Unsigned.
assert_eq!(52_u8.hexify(), "34");
assert_eq!(520_u16.hexify_upper(), "208");
assert_eq!(5_201_314_u32.hexify_prefixed(), "0x4f5da2");
assert_eq!(5_201_314_u64.hexify_prefixed_upper(), "0x4F5DA2");
assert_eq!(5_201_314_u128.hexify(), "4f5da2");
assert_eq!(5_201_314_usize.hexify_upper(), "4F5DA2");
// `[u8; N]`.
assert_eq!(*b"Love Jane Forever".hexify(), String::from("4c6f7665204a616e6520466f7265766572"));
// `&[u8; N]`.
assert_eq!(b"Love Jane Forever".hexify_upper(), String::from("4C6F7665204A616E6520466F7265766572"));
// `&[u8]`.
assert_eq!(
b"Love Jane Forever".as_slice().hexify_prefixed(),
String::from("0x4c6f7665204a616e6520466f7265766572")
);
// `Vec<u8>`.
assert_eq!(
b"Love Jane Forever".to_vec().hexify_prefixed_upper(),
String::from("0x4C6F7665204A616E6520466F7265766572")
);
// `&Vec<u8>`.
assert_eq!(
(&b"Love Jane Forever".to_vec()).hexify(),
String::from("4c6f7665204a616e6520466f7265766572")
);
// Dehexify.
// Unsigned.
assert_eq!(u8::dehexify("34"), Ok(52));
assert_eq!(u16::dehexify("208"), Ok(520));
assert_eq!(u32::dehexify("0x4f5da2"), Ok(5_201_314));
assert_eq!(u64::dehexify("0x4F5DA2"), Ok(5_201_314));
assert_eq!(u128::dehexify("4f5da2"), Ok(5_201_314));
assert_eq!(usize::dehexify("4F5DA2"), Ok(5_201_314));
// Array.
assert_eq!(<[u8; 17]>::dehexify("0x4c6f7665204a616e6520466f7265766572"), Ok(*b"Love Jane Forever"));
// SmallVec.
assert_eq!(
SmallVec::dehexify("0x4c6f7665204a616e6520466f7265766572").unwrap().into_vec(),
b"Love Jane Forever".to_vec()
);
assert_eq!(SmallVec::dehexify("我爱你"), Err(Error::InvalidLength));
assert_eq!(SmallVec::dehexify("0x我爱你"), Err(Error::InvalidLength));
// Vec.
assert_eq!(
<Vec<u8>>::dehexify("0x4c6f7665204a616e6520466f7265766572"),
Ok(b"Love Jane Forever".to_vec())
);
assert_eq!(
<Vec<u8>>::dehexify("我爱你 "),
Err(Error::InvalidCharacter { character: 'æ', index: 0 })
);
assert_eq!(
<Vec<u8>>::dehexify(" 我爱你"),
Err(Error::InvalidCharacter { character: ' ', index: 0 })
);
The following benchmarks were run on a Apple M4 Max 64GB - macOS 15.2 (24C101)
.
Sun, Dec 29th, 2024
// Hexify.
array_bytes::Hexify::hexify time: [11.195 µs 11.227 µs 11.264 µs]
const_hex::encode time: [1.0546 µs 1.0823 µs 1.1099 µs]
faster_hex::hex_string time: [12.054 µs 12.103 µs 12.154 µs]
faster_hex::hex_encode_fallback time: [12.170 µs 12.209 µs 12.245 µs]
hex::encode time: [87.014 µs 87.164 µs 87.312 µs]
rustc_hex::to_hex time: [45.022 µs 45.616 µs 46.304 µs]
// Dehexify.
array_bytes::Dehexify::dehexify time: [19.601 µs 19.815 µs 20.061 µs]
array_bytes::dehexify_slice_mut time: [20.455 µs 20.471 µs 20.489 µs]
const_hex::decode time: [14.098 µs 14.118 µs 14.137 µs]
faster_hex::hex_decode time: [29.356 µs 29.395 µs 29.435 µs]
faster_hex::hex_decode_unchecked time: [12.089 µs 12.134 µs 12.208 µs]
faster_hex::hex_decode_fallback time: [12.067 µs 12.082 µs 12.098 µs]
hex::decode time: [97.005 µs 98.854 µs 100.65 µs]
hex::decode_to_slice time: [39.262 µs 40.562 µs 42.064 µs]
rustc_hex::from_hex time: [108.91 µs 110.77 µs 112.53 µs]
To run the benchmarks yourself:
git clone https://github.com/hack-ink/array-bytes
cd array-bytes
cargo bench
Licensed under either of Apache-2.0 or GPL-3.0 at your option.