Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx committed Aug 13, 2018
1 parent 03a418b commit 949345a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ fn bench_hmac(b: &mut Bencher) {
fn bench_hkdf(b: &mut Bencher) {
b.iter(|| {
let mut okm_out = [0u8; 64];
hkdf::derive_key(&vec![0x01; 64], &vec![0x01; 64], &vec![0x01; 64], &mut okm_out).unwrap();
hkdf::derive_key(
&vec![0x01; 64],
&vec![0x01; 64],
&vec![0x01; 64],
&mut okm_out,
).unwrap();
});
}

Expand Down

0 comments on commit 949345a

Please sign in to comment.