aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/backends/openssl/x509.py
Commit message (Expand)AuthorAgeFilesLines
* Switch to new notBefore/After APIs (#4914)Rosen Penev2019-06-071-2/+2
* Simplify string formatting (#4757)Alex Gaynor2019-02-201-5/+5
* Fixes #4734 -- Deal with deprecated things (#4736)Alex Gaynor2019-01-231-10/+0
* Add eq/ne/hash to PrecertificateSignedCertificateTimestamps (#4534)Paul Kehrer2018-10-291-0/+20
* don't sort the serial numbers in a parsed CRL (#4457)Paul Kehrer2018-09-041-2/+12
* Fixed two memory leaks in x509 csr extensions (#4434)Alex Gaynor2018-08-311-0/+8
* add crl.get_revoked_certificate method (#4331)Paul Kehrer2018-07-161-0/+19
* Add is_signature_valid method on CertificateRevocationList (#3849)Vincent Pelletier2017-08-121-0/+16
* Fixed #3747 -- cache extensions on x.509 objects (#3769)Alex Gaynor2017-07-081-4/+4
* don't parse SCTs on older openssl (#3749)Paul Kehrer2017-07-041-5/+12
* Refs #3461 -- parse SCTs from x.509 extension (#3480)Alex Gaynor2017-06-041-0/+41
* Remove API deprecated in 1.6, clean up the legacy deprecations (#3468)Alex Gaynor2017-03-211-1/+1
* add support for signature_algorithm_oid to cert, CSR, and CRL (#3124)Paul Kehrer2016-08-311-18/+33
* constify and reorder getter args (#3103)Paul Kehrer2016-08-241-4/+4
* small cleanups to the cert.serial warning (#2958)Alex Gaynor2016-06-031-1/+2
* Add alias for Certificate serial as serial number (#2950)Chelsea Winfree2016-06-021-0/+9
* Merge pull request #2809 from reaperhulk/110-patch-28Alex Gaynor2016-03-131-10/+34
|\
| * add 5 accessor functions that exist in 1.1.0 to help opaque x509 structsPaul Kehrer2016-03-111-10/+34
* | move crypto_ex_data to macros, add i2d_re_X509_tbs & X509_get0_signaturePaul Kehrer2016-03-101-4/+13
|/
* Change method to propertyJoern Heissler2016-01-181-3/+6
* Add verify method on CertificateSigningRequestJoern Heissler2016-01-131-1/+11
* move more functions out of the openssl backend classPaul Kehrer2016-01-101-12/+13
* move openssl asn1 decode functions to a new modulePaul Kehrer2016-01-101-709/+5
* rename _create_mem_bio to _create_mem_bio_gc for consistencyPaul Kehrer2016-01-071-4/+4
* support unrecognized extensions in x509Paul Kehrer2015-12-301-0/+9
* add a comment and a dict we need in #2582Paul Kehrer2015-12-261-2/+28
* unused importAlex Gaynor2015-12-261-1/+0
* A handful of small cleanups and simplificationsAlex Gaynor2015-12-261-6/+1
* add invaliditydate class for crl entry extensionsPaul Kehrer2015-12-261-1/+3
* switch CRLReason to use a classPaul Kehrer2015-12-261-1/+1
* start switching the CRL entry extensions to be full-fledged classesPaul Kehrer2015-12-251-1/+1
* rename CRLExtensionOID to CRLEntryExtensionOIDPaul Kehrer2015-12-251-6/+6
* please the great flake8 in the skyAlex Gaynor2015-12-241-3/+1
* full indexing support + testsgAlex Gaynor2015-12-241-4/+12
* Make indexing a CRL O(1) instead of O(n).Alex Gaynor2015-12-241-2/+5
* Simplify implementation of CRL indexing and iteration.Alex Gaynor2015-12-241-13/+8
* coverage fixAlex Gaynor2015-12-241-8/+7
* Improve the performance of len(crl)Alex Gaynor2015-12-231-3/+6
* fix a potential memory issue when retaining revoked certs from a CRLPaul Kehrer2015-12-231-2/+13
* CRLNumber needs to be a class for reasons.Paul Kehrer2015-12-221-1/+1
* add support for parsing AuthorityInfoAccess and IssuerAltName CRL extsPaul Kehrer2015-12-221-0/+4
* support parsing CRL extensions in the OpenSSL backendPaul Kehrer2015-12-211-1/+18
* add a CRL public_bytes methodPaul Kehrer2015-12-201-0/+14
* support CRLs with no revoked certificatesPaul Kehrer2015-12-201-7/+6
* fix the comment so that it is no longer nonsensePaul Kehrer2015-12-031-1/+1
* expose tbs_certrequest_bytes and signature on CertificateSigningRequestPaul Kehrer2015-12-031-0/+15
* add tbsCertList and signature interfaces to CRLsErik Trauschke2015-11-191-0/+15
* rename tbs_certificate to tbs_certificate_bytes, add a commentPaul Kehrer2015-11-031-1/+2
* add support for Certificate signature and tbs_certificatePaul Kehrer2015-11-031-0/+14
* hoist a dict up to module scope so we don't recreate it every callPaul Kehrer2015-10-211-12/+15