Skip to content

Commit 35c86bd

Browse files
committed
test: add aes-ctr benches
1 parent 04a2de5 commit 35c86bd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

benches/crypto.rs

+6
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ fn crypto_benches(c: &mut Criterion) {
108108
for variant in [
109109
CipherSuiteVariant::AesGcm128Sha256,
110110
CipherSuiteVariant::AesGcm256Sha512,
111+
#[cfg(feature = "openssl")]
112+
CipherSuiteVariant::AesCtr128HmacSha256_80,
113+
#[cfg(feature = "openssl")]
114+
CipherSuiteVariant::AesCtr128HmacSha256_64,
115+
#[cfg(feature = "openssl")]
116+
CipherSuiteVariant::AesCtr128HmacSha256_32,
111117
] {
112118
let mut ctx = CryptoBenches::from(variant);
113119
ctx.run_benches(c);

0 commit comments

Comments
 (0)