Hello,
What is the best way to test whether a given OpenSSL build supports explicit
ECDSA curves?
Specifically, I’d like to know whether the OpenSSL in question will fail the
test at line 106 of providers/common/securitycheck.c:
if (nid == NID_undef) {
ERR_raise_data(ERR_LI
Hello experts
I used to load a self-signed cert using a program like below:
X509_STORE_set_verify_cb_func(lCertCtx, UserCert_cb_check_cert);
lLookup = X509_STORE_add_lookup(lCertCtx, X509_LOOKUP_file());
error = X509_LOOKUP_load_file(lLookup, NULL, X509_FILETYPE_DEFAULT);
It was all working great