#![no_main] use libfuzzer_sys::fuzz_target; use zkac_fuzz::handshake_respond; fuzz_target!(|data: &[u8]| { handshake_respond(data); });