CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2024/03/02 02:36:40
Modified files:
lib/libcrypto : Symbols.list
lib/libcrypto/evp: evp.h evp_names.c
Log message:
Remove EVP_add_{cipher,digest}() from public API
Ciphers and digests are now handled in a static lookup table and no
longer by the associative array that used to underlie the OBJ_NAME API.
Adding ciphers is no longer possible. What uses this API does so for
historic reasons coming from a time where SHA-2 and some AES variants
needed to be enabled explicitly. Ports doing this (PHP and DANE code)
were fixed.
ok jsing