Rename EVP_aes_XXX_cfb to EVP_aes_XXX_cfb128.
authorbeck <beck@openbsd.org>
Tue, 9 Apr 2024 13:48:51 +0000 (13:48 +0000)
committerbeck <beck@openbsd.org>
Tue, 9 Apr 2024 13:48:51 +0000 (13:48 +0000)
For consitency with everything else.

ok tb@

lib/libcrypto/evp/e_aes.c

index 6ef3fb3..1102b21 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: e_aes.c,v 1.56 2024/01/04 17:38:36 tb Exp $ */
+/* $OpenBSD: e_aes.c,v 1.57 2024/04/09 13:48:51 beck Exp $ */
 /* ====================================================================
  * Copyright (c) 2001-2011 The OpenSSL Project.  All rights reserved.
  *
@@ -666,7 +666,7 @@ static const EVP_CIPHER aes_128_cfb = {
 };
 
 const EVP_CIPHER *
-EVP_aes_128_cfb(void)
+EVP_aes_128_cfb128(void)
 {
 #ifdef AESNI_CAPABLE
        return AESNI_CAPABLE ? &aesni_128_cfb : &aes_128_cfb;
@@ -905,7 +905,7 @@ static const EVP_CIPHER aes_192_cfb = {
 };
 
 const EVP_CIPHER *
-EVP_aes_192_cfb(void)
+EVP_aes_192_cfb128(void)
 {
 #ifdef AESNI_CAPABLE
        return AESNI_CAPABLE ? &aesni_192_cfb : &aes_192_cfb;
@@ -1144,7 +1144,7 @@ static const EVP_CIPHER aes_256_cfb = {
 };
 
 const EVP_CIPHER *
-EVP_aes_256_cfb(void)
+EVP_aes_256_cfb128(void)
 {
 #ifdef AESNI_CAPABLE
        return AESNI_CAPABLE ? &aesni_256_cfb : &aes_256_cfb;