diff options
-rw-r--r-- | src/regress/lib/libcrypto/aead/aeadtest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/aead/aeadtest.c b/src/regress/lib/libcrypto/aead/aeadtest.c index 189cece6a4..1301a19487 100644 --- a/src/regress/lib/libcrypto/aead/aeadtest.c +++ b/src/regress/lib/libcrypto/aead/aeadtest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aeadtest.c,v 1.20 2022/07/30 16:30:42 jsing Exp $ */ | 1 | /* $OpenBSD: aeadtest.c,v 1.21 2022/07/30 16:31:41 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014, Google Inc. | 3 | * Copyright (c) 2014, Google Inc. |
4 | * | 4 | * |
@@ -93,6 +93,8 @@ aead_from_name(const EVP_AEAD **aead, const EVP_CIPHER **cipher, | |||
93 | if (strcmp(name, "aes-128-gcm") == 0) { | 93 | if (strcmp(name, "aes-128-gcm") == 0) { |
94 | *aead = EVP_aead_aes_128_gcm(); | 94 | *aead = EVP_aead_aes_128_gcm(); |
95 | *cipher = EVP_aes_128_gcm(); | 95 | *cipher = EVP_aes_128_gcm(); |
96 | } else if (strcmp(name, "aes-192-gcm") == 0) { | ||
97 | *cipher = EVP_aes_192_gcm(); | ||
96 | } else if (strcmp(name, "aes-256-gcm") == 0) { | 98 | } else if (strcmp(name, "aes-256-gcm") == 0) { |
97 | *aead = EVP_aead_aes_256_gcm(); | 99 | *aead = EVP_aead_aes_256_gcm(); |
98 | *cipher = EVP_aes_256_gcm(); | 100 | *cipher = EVP_aes_256_gcm(); |