According to issue #15290 the d2i_X509() is creating a legacy key rather than a provider key. This is not correct behaviour. The reproducer from #15290 is replicated here: // gcc -lcrypto -o keymgmt keymgmt.c #include <openssl/evp.h> #include <openssl/x509.h> const unsigned char ...
d2i_X509_CERT_AUX(&ret->aux, &q, length)) goto err; *pp = q; return ret; err: if (freeret) { X509_free(ret); if (a) *a = NULL; } where the passed in reference is not decremented in case of error, and the *pval is again not set to NULL,...
问iOS接收验证d2i_X509_bio返回NULLEN今天遇到了这样一个问题:Controller层接收到前端传入的参数,传给...
@@ -209,15 +209,16 @@ STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio_ex(BIO *bp, STACK_OF(X509_INFO) *sk, goto err; p = data; if (ptype) { if (!d2i_PrivateKey(ptype, pp, &p, len)) { if (d2i_PrivateKey_ex(ptype, pp, &p, len, libctx, propq) == NULL) { ERR...