diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/evp/e_aes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/evp/e_aes.c b/src/lib/libcrypto/evp/e_aes.c index 6ef3fb37c0..1102b21c15 100644 --- a/src/lib/libcrypto/evp/e_aes.c +++ b/src/lib/libcrypto/evp/e_aes.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: e_aes.c,v 1.56 2024/01/04 17:38:36 tb Exp $ */ | 1 | /* $OpenBSD: e_aes.c,v 1.57 2024/04/09 13:48:51 beck Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -666,7 +666,7 @@ static const EVP_CIPHER aes_128_cfb = { | |||
666 | }; | 666 | }; |
667 | 667 | ||
668 | const EVP_CIPHER * | 668 | const EVP_CIPHER * |
669 | EVP_aes_128_cfb(void) | 669 | EVP_aes_128_cfb128(void) |
670 | { | 670 | { |
671 | #ifdef AESNI_CAPABLE | 671 | #ifdef AESNI_CAPABLE |
672 | return AESNI_CAPABLE ? &aesni_128_cfb : &aes_128_cfb; | 672 | return AESNI_CAPABLE ? &aesni_128_cfb : &aes_128_cfb; |
@@ -905,7 +905,7 @@ static const EVP_CIPHER aes_192_cfb = { | |||
905 | }; | 905 | }; |
906 | 906 | ||
907 | const EVP_CIPHER * | 907 | const EVP_CIPHER * |
908 | EVP_aes_192_cfb(void) | 908 | EVP_aes_192_cfb128(void) |
909 | { | 909 | { |
910 | #ifdef AESNI_CAPABLE | 910 | #ifdef AESNI_CAPABLE |
911 | return AESNI_CAPABLE ? &aesni_192_cfb : &aes_192_cfb; | 911 | return AESNI_CAPABLE ? &aesni_192_cfb : &aes_192_cfb; |
@@ -1144,7 +1144,7 @@ static const EVP_CIPHER aes_256_cfb = { | |||
1144 | }; | 1144 | }; |
1145 | 1145 | ||
1146 | const EVP_CIPHER * | 1146 | const EVP_CIPHER * |
1147 | EVP_aes_256_cfb(void) | 1147 | EVP_aes_256_cfb128(void) |
1148 | { | 1148 | { |
1149 | #ifdef AESNI_CAPABLE | 1149 | #ifdef AESNI_CAPABLE |
1150 | return AESNI_CAPABLE ? &aesni_256_cfb : &aes_256_cfb; | 1150 | return AESNI_CAPABLE ? &aesni_256_cfb : &aes_256_cfb; |