Skip to content

Commit

Permalink
test: add aes-ctr benches
Browse files Browse the repository at this point in the history
  • Loading branch information
TobTheRock committed Oct 22, 2023
1 parent 493c831 commit e4c8a6e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions benches/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ fn crypto_benches(c: &mut Criterion) {
for variant in [
CipherSuiteVariant::AesGcm128Sha256,
CipherSuiteVariant::AesGcm256Sha512,
#[cfg(feature = "openssl")]
CipherSuiteVariant::AesCtr128HmacSha256_80,
#[cfg(feature = "openssl")]
CipherSuiteVariant::AesCtr128HmacSha256_64,
#[cfg(feature = "openssl")]
CipherSuiteVariant::AesCtr128HmacSha256_32,
] {
let mut ctx = CryptoBenches::from(variant);
ctx.run_benches(c);
Expand Down

0 comments on commit e4c8a6e

Please sign in to comment.