pub fn hex_encode(bytes: &[u8]) -> String
Encode bytes as lowercase hexadecimal text.
use sim_lib_net_core::hex_encode; assert_eq!(hex_encode(&[0xde, 0xad]), "dead");