Message333712
| 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:48 | christian.heimes | set | recipients: + christian.heimes, Talos |
| 2019-01-15 16:54:46 | christian.heimes | set | messageid: <1547571286.09.0.893585467865.issue35746@roundup.psfhosted.org> |
| 2019-01-15 16:54:46 | christian.heimes | link | issue35746 messages |
| 2019-01-15 16:54:46 | christian.heimes | create | |