CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/12/24 15:17:05
Modified files:
lib/libcrypto/evp: digest.c
Log message:
Move EVP_Digest() next to the functions it wraps
It really makes no sense to have the mess that is EVP_MD_CTX_copy{,_ex}()
live between EVP_Digest{Init{,_ex},Update,Final{,_ex}}() and EVP_Digest(),
the latter being a relatively simple wrapper of Init_ex/Update/Final_ex.
