Skip to content

Commit

Permalink
aes: remove 192-bits CTR-mode (looks unused) (#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored Nov 30, 2024
1 parent 88b1b07 commit 618b374
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/aes/openssl/aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ static const EVP_CIPHER *aes_cipher(enum aes_mode mode, size_t key_bits)
switch (key_bits) {

case 128: return EVP_aes_128_ctr();
case 192: return EVP_aes_192_ctr();
case 256: return EVP_aes_256_ctr();
default:
return NULL;
Expand Down

0 comments on commit 618b374

Please sign in to comment.