aboutsummaryrefslogtreecommitdiffstats
path: root/tests/x509/test_x509_revokedcertbuilder.py
Commit message (Collapse)AuthorAgeFilesLines
* allow asn1 times of 1950-01-01 and later. (#4728)Paul Kehrer2019-01-221-2/+2
| | | | | | | | * allow asn1 times of 1950-01-01 and later. * add a test * pretty up the test
* Backwards incompatible change to DNSName (#3951)Paul Kehrer2017-10-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Backwards incompatible change to DNSName During this release cycle we decided to officially deprecate passing U-labels to our GeneralName constructors. At first we tried changing this in a purely backwards compatible way but get_values_for_type made that untenable. This PR modifies DNSName to take three different types. U-label strings (which raises a deprecation warning), A-label strings (the new preferred type), and bytes (which are assumed to be decodable to unicode strings). The latter, while supported, is primarily intended for use by our parser and allows us to return the actual encoded data in a certificate even if it has not been properly encoded to A-label before the certificate is created. (Of course, if the certificate contains invalid utf8 sequences this will still fail, but let's handle one catastrophic failure at a time). * coverage * don't delete that asterisk from a test. it does things. * no bytes in DNSName. Private constructor for bypassing validation * test unicode in dnsname (yuck) * fix docs * empty commit, you disappoint me codecov * CI is the worst
* move x509 tests into a module (#3889)Paul Kehrer2017-09-061-0/+205
* 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