summaryrefslogtreecommitdiff
path: root/tests/x509
AgeCommit message (Collapse)Author
2017-09-13AIA hashing (#3911)Paul Kehrer
2017-09-13fix a bug with URI value when parsing a string with no hostname (#3909)Paul Kehrer
strings of the form "scheme:///anything" would incorrectly have two slashes dropped. This is fixed in two code paths in this PR but one of those code paths will be entirely removed in a followup PR.
2017-09-13implement __hash__ on all GeneralName types (#3907)Paul Kehrer
Needed to implement __hash__ on AuthorityKeyIdentifier
2017-09-12compare against bytes values, not the U-label decoded ones (#3906)Paul Kehrer
We need to add one small test to cover a case that is no longer covered with this switch.
2017-09-10[WIP] add support for the TLSFeature extension in x509 (#3899)Paul Kehrer
* add support for the TLSFeature extension in x509 This extension is used for OCSP Must-Staple. * fix changelog link * pep8 * refactor to support the sequence properly and add status_request_v2 * update some language * add test vector, implement eq/ne/hash on TLSFeature * address review comments
2017-09-06move x509 tests into a module (#3889)Paul Kehrer
* move x509 tests into a module This is just to make grouping things like test_ocsp, etc a bit simpler in the future * fix path * pep8