1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2025-08-31 21:16:59 +02:00

Fix breaking change in ToHex crate

This commit is contained in:
Valentin Brandl
2020-11-30 16:35:19 +01:00
parent a31c30a3b0
commit 55aa95a41c
2 changed files with 3 additions and 5 deletions

View File

@@ -55,10 +55,8 @@ use ring::{digest, hmac};
type Result<T> = std::result::Result<T, Error>;
/// Converts a byte slice to a lowercase hex string.
pub fn bytes_to_hex_str(bytes: &[u8]) -> Result<String> {
let mut output = String::new();
bytes.write_hex(&mut output)?;
Ok(output)
pub fn bytes_to_hex_str(bytes: &[u8]) -> String {
bytes.encode_hex::<String>()
}
/// Converts a hey string to a vec of bytes.