fix: PRF bench (#363)

This commit is contained in:
0xvon
2023-10-15 07:13:22 +09:00
committed by GitHub
parent 4408dfa316
commit 1a9fc7ea6f

View File

@@ -9,6 +9,8 @@ async fn bench_prf() {
let mut leader = MpcPrf::new(leader_vm.new_thread("bench_thread").await.unwrap());
let mut follower = MpcPrf::new(follower_vm.new_thread("bench_thread").await.unwrap());
futures::try_join!(leader.setup(), follower.setup()).unwrap();
let pms = [42u8; 32];
let client_random = [0u8; 32];