aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* move two tests to the openssl backend tests where they belongPaul Kehrer2015-12-262-52/+51
|
* A handful of small cleanups and simplificationsAlex Gaynor2015-12-261-9/+3
|
* Merge pull request #2585 from reaperhulk/san-iterableAlex Gaynor2015-12-261-0/+26
|\ | | | | support indexing on GeneralNames and SubjectAlternativeName
| * support indexing on GeneralNames and SubjectAlternativeNamePaul Kehrer2015-12-261-0/+26
| |
* | Merge pull request #2583 from alex/ski-hashPaul Kehrer2015-12-261-0/+14
|\ \ | |/ |/| Refs #2578 -- implement __hash__ on SubjectKeyIdentifier
| * Refs #2578 -- implement __hash__ on SubjectKeyIdentifierAlex Gaynor2015-12-261-0/+14
| |
* | Merge pull request #2581 from reaperhulk/crlentry-invaliditydateAlex Gaynor2015-12-262-3/+34
|\ \ | |/ |/| add invaliditydate class for crl entry extensions
| * ...pep8Paul Kehrer2015-12-261-0/+1
| |
| * add __hash__ to InvalidityDatePaul Kehrer2015-12-261-0/+6
| |
| * add invaliditydate class for crl entry extensionsPaul Kehrer2015-12-262-3/+27
| |
* | Refs #2578 -- implement __hash__ on CRLNumberAlex Gaynor2015-12-261-0/+7
|/
* switch CRLReason to use a classPaul Kehrer2015-12-262-5/+28
|
* Merge pull request #2575 from reaperhulk/crlentry-extensions-classesAlex Gaynor2015-12-262-7/+44
|\ | | | | start switching the CRL entry extensions to be full-fledged classes
| * start switching the CRL entry extensions to be full-fledged classesPaul Kehrer2015-12-252-7/+44
| | | | | | | | first up: CertificateIssuer
* | make the Extensions class support indexingPaul Kehrer2015-12-261-0/+12
|/
* support revoked certificates in CertificateRevocationListBuilderPaul Kehrer2015-12-251-0/+47
|
* RevokedCertificateBuilderPaul Kehrer2015-12-252-2/+82
|
* add create_x509_revoked_certificate to x509backend interfacePaul Kehrer2015-12-252-0/+12
|
* 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
|
* Merge pull request #2567 from alex/this-is-americaPaul Kehrer2015-12-241-1/+1
|\ | | | | Spell serialization consistently
| * Spell serialization consistentlyAlex Gaynor2015-12-241-1/+1
| |
* | CertificateRevocationListBuilderPaul Kehrer2015-12-242-3/+228
|/ | | | | RSA keys only. Currently does not support CRL extensions or CRLEntry extensions.
* coveragePaul Kehrer2015-12-241-0/+5
|
* add create_x509_crl interfacePaul Kehrer2015-12-241-0/+8
|
* full indexing support + testsgAlex Gaynor2015-12-241-3/+8
|
* tests on indexingAlex Gaynor2015-12-241-1/+12
|
* address review commentsPaul Kehrer2015-12-231-8/+3
|
* add test that fails if CRL references aren't properly retainedPaul Kehrer2015-12-231-0/+19
| | | | | | If the X509_CRL reference is not properly retained then this test will return an openssl error or potentially a crash as it's reading freed memory to obtain the revocation_date and serial_number
* missed a test for CRLNumber not being an integer, oopsPaul Kehrer2015-12-221-0/+4
|
* CRLNumber needs to be a class for reasons.Paul Kehrer2015-12-222-1/+16
|
* add support for parsing AuthorityInfoAccess and IssuerAltName CRL extsPaul Kehrer2015-12-221-3/+18
| | | | Expand the CRL extensions test to check the value
* support parsing CRL extensions in the OpenSSL backendPaul Kehrer2015-12-211-5/+17
|
* add test for byte matchingPaul Kehrer2015-12-211-0/+24
|
* add a CRL public_bytes methodPaul Kehrer2015-12-201-0/+42
|
* Merge pull request #2538 from reaperhulk/empty-crls-are-beautiful-tooAlex Gaynor2015-12-201-0/+8
|\ | | | | support CRLs with no revoked certificates
| * support CRLs with no revoked certificatesPaul Kehrer2015-12-201-0/+8
| |
* | Merge pull request #2525 from nbastin/20151112-access-methodPaul Kehrer2015-12-202-3/+40
|\ \ | |/ |/| issue-2524
| * Dealing with the pedantry of pep8Nick Bastin2015-12-201-2/+0
| |
| * Test for non-standard AIA support in CertificateBuilderNick Bastin2015-12-201-0/+32
| |
| * Dangling pep8 fixNick Bastin2015-12-201-1/+1
| |
| * PEP8 fixesNick Bastin2015-12-201-1/+0
| |
| * Style cleanup, missing importNick Bastin2015-12-201-3/+6
| |
| * Add test for arbitrary access_methodNick Bastin2015-12-201-0/+4
| |
| * Allow any OID for access_method, validate OIDs at creation time, fix tests.Nick Bastin2015-12-201-1/+2
| |
* | Change password callback to use userdata pointerChristian Heimes2015-12-201-2/+15
|/ | | | | | | | | Instead of a closure the pem_password_cb now uses the void *userdata argument to exchange data with the callback function. It's a necessary step to port all callbacks to new static callbacks. See: #2477 Signed-off-by: Christian Heimes <christian@python.org>
* Merge pull request #2535 from alex/encode-dssPaul Kehrer2015-12-191-3/+3
|\ | | | | use the non-deprecated name for this function
| * use the non-deprecated name for this functionAlex Gaynor2015-12-191-3/+3
| |
* | Merge pull request #2530 from nbastin/20151214-oid-valPaul Kehrer2015-12-182-36/+72
|\ \ | |/ |/| OID validation