CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/11/30 23:53:18
Modified files:
lib/libcrypto/evp: evp_enc.c
Log message:
Unify various EVP_*{Update,Final}*() wrappers
The correct way of wrapping foo() is 'int ret; ret = foo(); return ret;'
because 'return foo();' would be too simple... Also unify branching from
EVP_Cipher* into EVP_Encrypt* EVP_Decrypt*.
