This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients Talos, christian.heimes
Date 2019-01-15.16:54:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547571286.09.0.893585467865.issue35746@roundup.psfhosted.org>
In-reply-to
Content
I can confirm that CPython is affected.

By the way PyCA cryptography handles the CRL DB just fine.

>>> from cryptography import x509
>>> from cryptography.hazmat.backends import default_backend
>>> with open("Lib/test/talos-2019-0758.pem", "rb") as f:
...     pem_data = f.read()
... 
>>> cert = x509.load_pem_x509_certificate(pem_data, default_backend())
>>> cert.extensions[-1]
<Extension(oid=<ObjectIdentifier(oid=2.5.29.31, name=cRLDistributionPoints)>, critical=False, value=<CRLDistributionPoints([<DistributionPoint(full_name=None, relative_name=None, reasons=None, crl_issuer=None)>])>)>
History
Date User Action Args
2019-01-15 16:54:48christian.heimessetrecipients: + christian.heimes, Talos
2019-01-15 16:54:46christian.heimessetmessageid: <1547571286.09.0.893585467865.issue35746@roundup.psfhosted.org>
2019-01-15 16:54:46christian.heimeslinkissue35746 messages
2019-01-15 16:54:46christian.heimescreate