[issue24107] Add support for retrieving the certificate chain

2016-06-11 Thread rugk
rugk added the comment: Is this issue the same as https://bugs.python.org/issue25529? -- ___ Python tracker ___ ___ Python-bugs-list m

[issue24107] Add support for retrieving the certificate chain

2016-06-11 Thread rugk
Changes by rugk <20510...@opayq.com>: -- nosy: +rugk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue24107] Add support for retrieving the certificate chain

2015-05-01 Thread Ian Cordasco
Changes by Ian Cordasco : -- nosy: +icordasc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue24107] Add support for retrieving the certificate chain

2015-05-01 Thread Christian Heimes
Christian Heimes added the comment: I have an experimental branch that adds the feature and also exposes the subject public key information. https://github.com/tiran/cpython/tree/feature/x509cert -- ___ Python tracker

[issue24107] Add support for retrieving the certificate chain

2015-05-01 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou ___ Python tracker ___ ___ Pytho

[issue24107] Add support for retrieving the certificate chain

2015-05-01 Thread Cory Benfield
New submission from Cory Benfield: In order to perform HTTP Public Key Pinning (HPKP), it's necessary to have access to every certificate in the certificate trust chain. This is because the pinned key may actually be an intermediate or root certificate, rather than the leaf certificate. PyOpe