Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | add the remaining extension OIDs | Paul Kehrer | 2015-04-04 | 1 | -2/+32 | |
| | | | | ||||||
* | | | | support openssl no-comp on linux/os x | Paul Kehrer | 2015-04-04 | 1 | -5/+1 | |
|/ / / | ||||||
* | | | Merge pull request #1820 from schlenk/get_crl_properties | Alex Gaynor | 2015-04-03 | 1 | -0/+11 | |
|\ \ \ | | | | | | | | | More CRL related bindings | |||||
| * | | | More CRL related bindings | Michael Schlenker | 2015-04-03 | 1 | -0/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of those are needed to implement pyca/pyopenssl#181, others are just for having a complete useful set. Might be a nice fit for the new X509Extension work, as the extensions for CRLs and Revoked objects have the same type. | |||||
* | | | | Add wrappers for STACK_OF(X509_CRL) manipulation | Michael Schlenker | 2015-04-03 | 1 | -0/+6 | |
|/ / / | | | | | | | | | | | | | | | | This is useful for PyOpenssl to implement CRL checking in the new X509StoreContext.verify_certificate() API to add CRLs to the check via X509_STORE_CTX_set0_crls() which is already wrapped. | |||||
* | | | Merge pull request #1812 from reaperhulk/asn1-bitstring | Alex Gaynor | 2015-04-03 | 1 | -0/+4 | |
|\ \ \ | | | | | | | | | add some ASN1_BIT_STRING bindings for OpenSSL | |||||
| * | | | add some ASN1_BIT_STRING bindings for OpenSSL | Paul Kehrer | 2015-04-02 | 1 | -0/+4 | |
| | |/ | |/| | ||||||
* / | | add extendedkeyusage repr | Paul Kehrer | 2015-04-02 | 1 | -0/+3 | |
|/ / | ||||||
* | | remove extra blank line | Paul Kehrer | 2015-03-31 | 1 | -1/+0 | |
| | | ||||||
* | | add keyusage extension | Paul Kehrer | 2015-03-31 | 1 | -0/+48 | |
| | | ||||||
* | | add extendedkeyusage extension | Paul Kehrer | 2015-03-31 | 1 | -0/+17 | |
| | | ||||||
* | | support the EKU OIDs specified in RFC 5280 section 4.2.1.12 | Paul Kehrer | 2015-03-30 | 1 | -0/+15 | |
| | | ||||||
* | | add load_der_x509_csr to support loading DER encoded CSRs | Paul Kehrer | 2015-03-30 | 4 | -0/+29 | |
| | | ||||||
* | | Emit a warning on Python 2.6 | Alex Gaynor | 2015-03-29 | 1 | -0/+10 | |
| | | ||||||
* | | Merge pull request #1796 from rev112/minor_refactorings | Paul Kehrer | 2015-03-29 | 3 | -15/+15 | |
|\ \ | | | | | | | Minor refactorings | |||||
| * | | Rename 'type' variable which shadows built-in name 'type' | Anton Ovchinnikov | 2015-03-29 | 1 | -12/+12 | |
| | | | ||||||
| * | | Rename lambda argument | Anton Ovchinnikov | 2015-03-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | Simplify chained comparison | Anton Ovchinnikov | 2015-03-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | Remove redundant parentheses | Anton Ovchinnikov | 2015-03-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | rename to CertificateSigningRequest | Paul Kehrer | 2015-03-29 | 3 | -5/+7 | |
| | | | ||||||
* | | | address some review comments | Paul Kehrer | 2015-03-29 | 1 | -3/+1 | |
| | | | ||||||
* | | | rename request to CSR | Paul Kehrer | 2015-03-29 | 5 | -12/+12 | |
| | | | ||||||
* | | | basic support for parsing x509 requests | Paul Kehrer | 2015-03-29 | 6 | -2/+89 | |
|/ / | ||||||
* / | basicConstraints support for OpenSSL X509 backend | Paul Kehrer | 2015-03-28 | 2 | -4/+46 | |
|/ | ||||||
* | add x509 extensions class and basic tests (no extensions supported) | Paul Kehrer | 2015-03-28 | 2 | -0/+64 | |
| | ||||||
* | allow zero value bn using _bn_to_int in the openssl backend | Paul Kehrer | 2015-03-25 | 1 | -1/+2 | |
| | ||||||
* | Doh | Alex Gaynor | 2015-03-24 | 2 | -2/+2 | |
| | ||||||
* | Fixes #1776 -- ensure that we only init bindings once per process | Alex Gaynor | 2015-03-24 | 2 | -12/+20 | |
| | ||||||
* | Merge pull request #1774 from chelseawinfree/im_confident | Alex Gaynor | 2015-03-24 | 3 | -188/+183 | |
|\ | | | | | Moved OpenSSL engine into standalone c and h files | |||||
| * | Added lines at end of file and adjusted parens | Chellygel | 2015-03-23 | 3 | -6/+6 | |
| | | ||||||
| * | Moved OpenSSL engine into standalone c and h files | Chellygel | 2015-03-23 | 3 | -188/+183 | |
| | | | | | | | | References #1301 | |||||
* | | Merge pull request #1768 from reaperhulk/basic-constraints | Alex Gaynor | 2015-03-23 | 1 | -0/+54 | |
|\ \ | | | | | | | basic constraints class & extensions interface | |||||
| * | | review feedback updates | Paul Kehrer | 2015-03-23 | 1 | -3/+2 | |
| | | | ||||||
| * | | use kwargs for BasicConstraints creation | Paul Kehrer | 2015-03-23 | 1 | -2/+5 | |
| | | | | | | | | | | | | Also check path_length using integer_types | |||||
| * | | doc updates and simplification of __repr__ | Paul Kehrer | 2015-03-22 | 1 | -8/+4 | |
| | | | ||||||
| * | | doc update | Paul Kehrer | 2015-03-22 | 1 | -1/+1 | |
| | | | ||||||
| * | | rework BasicConstraints and Extension. | Paul Kehrer | 2015-03-22 | 1 | -18/+26 | |
| | | | ||||||
| * | | right, {} format support was added in 2.7 | Paul Kehrer | 2015-03-21 | 1 | -2/+4 | |
| | | | ||||||
| * | | basic constraints class & extensions interface | Paul Kehrer | 2015-03-21 | 1 | -0/+46 | |
| |/ | ||||||
* / | Attempt at simplifying the repr code. | Alex Gaynor | 2015-03-23 | 2 | -5/+2 | |
|/ | ||||||
* | add BASIC_CONSTRAINTS_free macro | Paul Kehrer | 2015-03-20 | 1 | -0/+3 | |
| | ||||||
* | new openssl bindings for parsing some x509 extensions | Paul Kehrer | 2015-03-18 | 2 | -0/+12 | |
| | ||||||
* | add AES key wrap bindings to commoncrypto | Paul Kehrer | 2015-03-14 | 2 | -0/+38 | |
| | ||||||
* | Don't trigger any deprecation warnings on import | Alex Gaynor | 2015-03-14 | 2 | -6/+6 | |
| | ||||||
* | DER serialization of DSA private keys | Paul Kehrer | 2015-03-14 | 1 | -4/+2 | |
| | ||||||
* | support DER encoded EC private key serialization | Paul Kehrer | 2015-03-13 | 1 | -1/+4 | |
| | ||||||
* | support RSA DER private key serialization | Paul Kehrer | 2015-03-13 | 1 | -18/+44 | |
| | ||||||
* | Merge pull request #1752 from reaperhulk/tiny-cleanup | Alex Gaynor | 2015-03-11 | 1 | -6/+2 | |
|\ | | | | | remove some pointless extra lines in multibackend | |||||
| * | remove some pointless extra lines in multibackend | Paul Kehrer | 2015-03-11 | 1 | -6/+2 | |
| | | ||||||
* | | Merge pull request #1751 from reaperhulk/x509-refactor | Alex Gaynor | 2015-03-11 | 1 | -38/+40 | |
|\ \ | | | | | | | move some helper functions in x509 |