pub fn hexdump(data: &[u8]) -> String
Generate a hexdump of bytes in the style of xxd or Scapy’s hexdump.
xxd
use stackforge_core::hexdump; let data = b"Hello, World!"; println!("{}", hexdump(data));