1
0
Fork 0
forked from wry/wry

dbus: use challenge-response authentication

This commit is contained in:
Julian Orth 2026-01-18 15:20:54 +01:00
parent 2f4543912b
commit 3d7dc1161f
4 changed files with 9 additions and 19 deletions

View file

@ -1,15 +0,0 @@
pub fn to_hex(b: &str) -> String {
let mut s = String::with_capacity(b.len() * 2);
for &b in b.as_bytes() {
s.push(nibble_to_hex(b >> 4) as char);
s.push(nibble_to_hex(b & 7) as char);
}
s
}
fn nibble_to_hex(n: u8) -> u8 {
match n {
n @ 0..=9 => b'0' + n,
n => b'a' + n,
}
}