CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/01/13 04:12:32
Modified files: lib/libcrypto/evp: evp_names.c names.c Log message: Reimplement EVP_get_{cipher,digest}byname() Instead of a hashtable lookup do a bsearch() over the static table. This needs about the same number of strcmp and is a lot simpler. ok jsing