Use more consistent naming for some files in evp
authortb <tb@openbsd.org>
Fri, 29 Dec 2023 05:57:24 +0000 (05:57 +0000)
committertb <tb@openbsd.org>
Fri, 29 Dec 2023 05:57:24 +0000 (05:57 +0000)
commit1cc76114d489046325db16299f875e8175c74330
treed8913929801c9ab6939956ef0137962d5432c473
parent58c567065c63a83ba9512981eeda9d39997d4ff0
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
lib/libcrypto/Makefile
lib/libcrypto/evp/digest.c [deleted file]
lib/libcrypto/evp/encode.c [deleted file]
lib/libcrypto/evp/evp_cipher.c [new file with mode: 0644]
lib/libcrypto/evp/evp_digest.c [new file with mode: 0644]
lib/libcrypto/evp/evp_enc.c [deleted file]
lib/libcrypto/evp/evp_encode.c [new file with mode: 0644]