crate::ix!();
pub struct BenchEcdhData {
ctx: *mut Secp256k1Context,
point: PubKey,
scalar: [u8; 32],
}
pub fn bench_ecdh_setup(arg: *mut c_void) {
todo!();
}
pub fn bench_ecdh(
arg: *mut c_void,
iters: i32) {
todo!();
}
pub fn secp256k1_bench_ecdh_main() -> i32 {
todo!();
}