From 82fe904a9e9088317b5afb8410dd00e80e8e6d63 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 29 Dec 2023 05:57:24 +0000 Subject: Use more consistent naming for some files in evp EVP_Digest{Init,Update,Final}() move from digest.c to evp_digest.c which will become the home of all things related to EVP_MD{,_CTX} handling. EVP_Cipher{Init,Update,Final}() move from evp_enc.c to evp_cipher.c which will become the home of all things related to EVP_CIPHER{,_CTX} handling. EVP_Encode{Init,Update,Final}() move from encode.c to evp_encode.c which already is the home of EVP_ENCODE_CTX_{new,free}(). discussed with jsing --- src/lib/libcrypto/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib/libcrypto/Makefile') diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 6329d309e7..d9b3e180f0 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.159 2023/12/20 13:52:17 tb Exp $ +# $OpenBSD: Makefile,v 1.160 2023/12/29 05:57:24 tb Exp $ LIB= crypto LIBREBUILD=y @@ -350,7 +350,6 @@ SRCS+= bio_enc.c SRCS+= bio_md.c SRCS+= c_all.c SRCS+= cipher_method_lib.c -SRCS+= digest.c SRCS+= e_aes.c SRCS+= e_aes_cbc_hmac_sha1.c SRCS+= e_bf.c @@ -368,9 +367,10 @@ SRCS+= e_rc4.c SRCS+= e_rc4_hmac_md5.c SRCS+= e_sm4.c SRCS+= e_xcbc_d.c -SRCS+= encode.c SRCS+= evp_aead.c -SRCS+= evp_enc.c +SRCS+= evp_cipher.c +SRCS+= evp_digest.c +SRCS+= evp_encode.c SRCS+= evp_err.c SRCS+= evp_key.c SRCS+= evp_lib.c -- cgit v1.2.3-55-g6feb