Skip to content

Commit

Permalink
fix: PRF bench (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
grandchildrice authored Oct 14, 2023
1 parent 4408dfa commit 1a9fc7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/prf/hmac-sha256/benches/prf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 1a9fc7e

Please sign in to comment.