pub fn encode_hex(input: &impl AsRef<[u8]>) -> String
Convert u8 to Hex string
Example:
assert_eq!(encode_hex(&[0, 15, 16, 255]), "000f10ff");