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