CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2023/12/16 07:04:59
Modified files: lib/libcrypto/evp: evp_pbe.c Log message: Remove OBJ_bsearch_() usage from PBE Split the table of built-in password based encryption algorithms into two and use a linear scan over the table corresponding to the type specified in EVP_PBE_find()'s type argument. Use better variable names, make the API a bit safer and generally reduce the eye bleed in here. ok jsing