CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2022/11/09 11:17:17
Modified files:
lib/libcrypto/asn1: ameth_lib.c
Log message:
Clean up EVP_PKEY_ASN1_METHOD related tables and code.
Rather than messing around with an OBJ_bsearch() for a table that contains
16 entries (and a stack find for any application added methods), simply do
a reverse linear scan. This maintains the application method first
behaviour, while removing a chunk of code.
While here rename some variables and do some style clean up.
ok tb@