From 94d86681cdef7dae37d5ce494a200523ce63b70c Mon Sep 17 00:00:00 2001 From: beck <> Date: Tue, 9 Apr 2024 13:48:51 +0000 Subject: Rename EVP_aes_XXX_cfb to EVP_aes_XXX_cfb128. For consitency with everything else. ok tb@ --- src/lib/libcrypto/evp/e_aes.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 @@ -/* $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; -- cgit v1.2.3-55-g6feb