aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | add __hash__ to InvalidityDatePaul Kehrer2015-12-262-0/+9
| | | |
| * | | add invaliditydate class for crl entry extensionsPaul Kehrer2015-12-267-7/+87
| | | |
* | | | Merge pull request #2580 from alex/crl-number-hashPaul Kehrer2015-12-262-0/+10
|\ \ \ \ | |/ / / |/| / / | |/ / Refs #2578 -- implement __hash__ on CRLNumber
| * / Refs #2578 -- implement __hash__ on CRLNumberAlex Gaynor2015-12-262-0/+10
|/ /
* | Merge pull request #2579 from reaperhulk/crlentry-crlreasonAlex Gaynor2015-12-267-9/+80
|\ \ | | | | | | switch CRLReason to use a class
| * | switch CRLReason to use a classPaul Kehrer2015-12-267-9/+80
|/ /
* | Merge pull request #2575 from reaperhulk/crlentry-extensions-classesAlex Gaynor2015-12-267-12/+127
|\ \ | | | | | | start switching the CRL entry extensions to be full-fledged classes
| * | start switching the CRL entry extensions to be full-fledged classesPaul Kehrer2015-12-257-12/+127
| | | | | | | | | | | | first up: CertificateIssuer
* | | Merge pull request #2576 from reaperhulk/extensions-indexableAlex Gaynor2015-12-262-0/+15
|\ \ \ | |/ / |/| | make the Extensions class support indexing
| * | make the Extensions class support indexingPaul Kehrer2015-12-262-0/+15
|/ /
* | Merge pull request #2574 from reaperhulk/rename-crlextensionAlex Gaynor2015-12-255-16/+44
|\ \ | | | | | | rename CRLExtensionOID to CRLEntryExtensionOID
| * | allow CRLExtensionOID to still be imported from x509Paul Kehrer2015-12-251-1/+2
| | |
| * | rename CRLExtensionOID to CRLEntryExtensionOIDPaul Kehrer2015-12-255-16/+43
| | |
* | | Merge pull request #2572 from reaperhulk/crlbuilder-add-revoked-certificateAlex Gaynor2015-12-255-2/+98
|\ \ \ | |/ / |/| | support revoked certificates in CertificateRevocationListBuilder
| * | X509_REVOKED_dup isn't available everywhere, we get to define our ownPaul Kehrer2015-12-252-2/+13
| | |
| * | support revoked certificates in CertificateRevocationListBuilderPaul Kehrer2015-12-255-2/+87
|/ /
* | Merge pull request #2571 from reaperhulk/revokedcertificatebuilderAlex Gaynor2015-12-256-5/+195
|\ \ | | | | | | RevokedCertificateBuilder
| * | RevokedCertificateBuilderPaul Kehrer2015-12-256-5/+195
|/ /
* | Merge pull request #2570 from reaperhulk/revokedcertificate-interfaceAlex Gaynor2015-12-256-0/+40
|\ \ | | | | | | add create_x509_revoked_certificate to x509backend interface
| * | add create_x509_revoked_certificate to x509backend interfacePaul Kehrer2015-12-256-0/+40
|/ /
* | Merge pull request #2568 from reaperhulk/crlbuilder-extensionsAlex Gaynor2015-12-254-2/+176
|\ \ | | | | | | add extension support to the CRLBuilder
| * | use type instead of __class__Paul Kehrer2015-12-251-1/+1
| | |
| * | use _create_x509_extensions in create_x509_crlPaul Kehrer2015-12-251-20/+8
| | |
| * | coverage for invalid extensionsPaul Kehrer2015-12-251-0/+8
| | |
| * | add extension support to the CRLBuilderPaul Kehrer2015-12-254-2/+180
|/ /
* | Merge pull request #2569 from reaperhulk/extension-builderAlex Gaynor2015-12-252-41/+48
|\ \ | | | | | | refactor x509 extension creation to make it a bit more reusable
| * | a different approach to refactoring the x509 extension additionPaul Kehrer2015-12-242-21/+25
| | |
| * | don't reuse a variable, it's confusingPaul Kehrer2015-12-241-4/+6
| | |
| * | refactor x509 extension creation to make it a bit more reusablePaul Kehrer2015-12-241-38/+39
| | | | | | | | | | | | | | | Unfortunately X509 certs and CSRs add extensions differently, so we can't reuse quite as much as we'd like to...
* | | 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
| | |
* | | Merge pull request #2559 from reaperhulk/crlbuilderAlex Gaynor2015-12-247-6/+446
|\ \ \ | |/ / |/| | CertificateRevocationListBuilder
| * | fix rebase mistake in the docsPaul Kehrer2015-12-241-21/+1
| | |
| * | update docs with review feedbackPaul Kehrer2015-12-241-12/+12
| | |
| * | CertificateRevocationListBuilderPaul Kehrer2015-12-247-4/+464
|/ / | | | | | | | | RSA keys only. Currently does not support CRL extensions or CRLEntry extensions.
* | Merge pull request #2565 from reaperhulk/crl-interfaceAlex Gaynor2015-12-246-0/+52
|\ \ | | | | | | add create_x509_crl interface
| * | coveragePaul Kehrer2015-12-242-1/+6
| | |
| * | better languagePaul Kehrer2015-12-241-2/+2
| | |
| * | add create_x509_crl interfacePaul Kehrer2015-12-245-0/+47
| | |
* | | Merge pull request #2562 from evilaliv3/PEM_write_bio_DHparamsAlex Gaynor2015-12-241-0/+1
|\ \ \ | | | | | | | | Add PEM_write_bio_DHparams binding
| * | | Add PEM_write_bio_DHparams bindingevilaliv32015-12-241-0/+1
| |/ /
* | | Merge pull request #2566 from alex/better-languagePaul Kehrer2015-12-241-4/+3
|\ \ \ | |/ / |/| | Use clearer language in the backend interface docs.
| * | Use clearer language in the backend interface docs.Alex Gaynor2015-12-241-4/+3
|/ / | | | | | | Refs #2565
* | Merge pull request #2564 from alex/crl-index-perfPaul Kehrer2015-12-242-3/+28
|\ \ | | | | | | Make indexing a CRL O(1) instead of O(n).
| * | please the great flake8 in the skyAlex Gaynor2015-12-241-3/+1
| | |
| * | full indexing support + testsgAlex Gaynor2015-12-242-7/+20
| | |
| * | tests on indexingAlex Gaynor2015-12-241-1/+12
| | |
| * | Make indexing a CRL O(1) instead of O(n).Alex Gaynor2015-12-241-2/+5
|/ / | | | | | | This drops support for slicing, if that's important someone say something and I can add it back
* | Merge pull request #2563 from alex/crl-iter-perfPaul Kehrer2015-12-241-13/+8
|\ \ | | | | | | Simplify implementation of CRL indexing and iteration.
| * | Simplify implementation of CRL indexing and iteration.Alex Gaynor2015-12-241-13/+8
|/ / | | | | | | No longer allocates a list just to iterate over it.