binkit 0.1.1

A modular toolbox for analyzing, disassembling, and patching binary formats
Documentation
1
2
3
4
5
6
pub fn bytes_to_hex(bytes: &[u8]) -> String {
    bytes.iter()
         .map(|b| format!("{b:02X}"))
         .collect::<Vec<String>>()
         .join(" ") 
}