X509_AUX is an odd, note widely used, OpenSSL extension to the X509 file format. This function doesn't actually use any of the extra metadata that it parses, so just use the standard API.
Automerge-Triggered-By: @tiran
(cherry picked from commit
40dad9545aad4ede89abbab1c1beef5303d9573e)
Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
goto fail0;
}
- x = PEM_read_bio_X509_AUX(cert,NULL, NULL, NULL);
+ x = PEM_read_bio_X509(cert, NULL, NULL, NULL);
if (x == NULL) {
PyErr_SetString(PySSLErrorObject,
"Error decoding PEM-encoded file");