aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509_crlbuilder.py
Commit message (Collapse)AuthorAgeFilesLines
* disallow MD5 in CertificateBuilder and CertificateSigningRequestBuilder (#3738)Paul Kehrer2017-06-301-1/+33
| | | | | | | | | | | | * disallow MD5 in CertificateBuilder and CertificateSigningRequestBuilder * only error on ECDSA and DSA lots of duplication in tests here, bleh * remove changelog entry, also handle this for CRLBuilder * pep8
* Drop 1.0.0 (#3312)Alex Gaynor2016-12-131-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * delete the 1.0.0 support * drop the version check * drop the AES-CTR stuff * Update the example * openssl truncates for us now * delete unused test * unused imports * Remove a bunch of conditional bindings for NPN * no more 1.0.0 builders * libressl fix * update the docs * remove dead branches * oops * this is a word, damnit * spelling * try removing this * this test is not needed * unused import
* CertificateBuilder accepts aware datetimes for not_valid_after and ↵InvalidInterrupt2016-08-161-0/+38
| | | | | | | | | | | | | | | | | | | not_valid_before (#2920) * CertificateBuilder accepts aware datetimes for not_valid_after and not_valid_before These functions now accept aware datetimes and convert them to UTC * Added pytz to test requirements * Correct pep8 error and improve Changelog wording * Improve tests and clarify changelog message * Trim Changelog line length * Allow RevokedCertificateBuilder and CertificateRevocationListBuilder to accept aware datetimes * Fix accidental changelog entry
* Use a series of constants for OpenSSL version checks (#3037)Alex Gaynor2016-07-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | * Use a series of constants for OpenSSL version checks. N.B. I removed several qualifiers that were being used to express beta vs. release in OpenSSL version numbers. Reviewers please look closely! * Convert some python as well, also add the file * flake8 * Simplify code, remove functionality that can be expressed more simply * clean up the tests as well * more constants * wrap long lines * reflect feedback * unused * add this back?
* Support EC and DSA signing of CRLs in the OpenSSL backendPaul Kehrer2015-12-271-5/+59
|
* support CRL entry extension encoding in the RevokedCertificateBuilderPaul Kehrer2015-12-271-1/+9
|
* support revoked certificates in CertificateRevocationListBuilderPaul Kehrer2015-12-251-0/+47
|
* use type instead of __class__Paul Kehrer2015-12-251-1/+1
|
* coverage for invalid extensionsPaul Kehrer2015-12-251-0/+8
|
* add extension support to the CRLBuilderPaul Kehrer2015-12-251-1/+111
|
* CertificateRevocationListBuilderPaul Kehrer2015-12-241-0/+222
RSA keys only. Currently does not support CRL extensions or CRLEntry extensions.