We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9dd8d commit f38221cCopy full SHA for f38221c
benches/chacha20_poly1305/chacha20poly1305.rs
@@ -46,7 +46,8 @@ fn bench_chacha20poly1305(c: &mut Criterion) {
46
let mut buf = ct.clone();
47
let cipher = ChaCha20Poly1305::new(key, nonce);
48
let res = cipher.decrypt(black_box(&mut buf), tag, Some(aad));
49
- black_box(res.unwrap());
+ res.unwrap();
50
+ black_box(());
51
});
52
53
}
0 commit comments