From e0aedb9a1397cd5816661cdf8de2a699bdd94ed4 Mon Sep 17 00:00:00 2001 From: beck Date: Tue, 9 Apr 2024 13:48:51 +0000 Subject: [PATCH] Rename EVP_aes_XXX_cfb to EVP_aes_XXX_cfb128. For consitency with everything else. ok tb@ --- lib/libcrypto/evp/e_aes.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libcrypto/evp/e_aes.c b/lib/libcrypto/evp/e_aes.c index 6ef3fb37c07..1102b21c159 100644 --- a/lib/libcrypto/evp/e_aes.c +++ b/lib/libcrypto/evp/e_aes.c @@ -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; -- 2.20.1