CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2023/05/27 23:25:24
Modified files: lib/libcrypto/x509: x509_local.h x509_vfy.c x509_vfy.h x509_vpm.c Log message: Merge X509_VERIFY_PARAM_ID into X509_VERIFY_PARAM Back in the day when essentially every struct was open to all applications, X509_VERIFY_PARAM_ID provided a modicum of opacity. This indirection is now no longer needed with X509_VERIFY_PARAM being opaque itself, so stop using X509_VERIFY_PARAM_ID and merge it into X509_VERIFY_PARAM. This is a first small step towards cleaning up the X509_VERIFY_PARAM mess. ok jsing