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.

classification
Title: Emit more information in decoded SSL certificates
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pitrou
Priority: normal Keywords:

Created on 2010-10-04 16:32 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg117962 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-10-04 16:32
There's some code in _ssl.c which exports more information in decoded SSL certificates (such as notBefore or issuer), but it is only enabled when the hidden function _ssl._test_decode_cert is used. It would be nice to export all this information by default; I can't think of any inconvenience caused by it.
msg120897 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-11-09 20:21
Fixed in r86369.
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54231
2010-11-09 20:21:37pitrousetstatus: open -> closed
resolution: fixed
messages: + msg120897

stage: needs patch -> resolved
2010-10-04 16:32:13pitroucreate