aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #1727 from public/dh-key-iface-2015Paul Kehrer2015-04-091-12/+77
|\ | | | | DH key interfaces
| * DH key interfacesAlex Stapleton2015-04-051-12/+77
| |
* | after closer review, it would appear that PKCS7_NOSMIMECAP was added in ↵Mahmoud Hashemi2015-04-081-16/+3
| | | | | | | | 0.9.6. Removing conditional logic and making it a normal constant. (source: http://marc.info/?l=openssl-cvs&m=96816036412988&w=2 )
* | remove stray PKCS7_encrypt arg 'certs'Mahmoud Hashemi2015-04-081-1/+1
| |
* | PKCS7 signature, encryption and serialization bindings.Mark Williams2015-04-082-1/+44
| | | | | | | | | | These bindings do NOT expose the APIs necessary to add multiple signatures.
* | support openssl no-comp on linux/os xPaul Kehrer2015-04-041-5/+1
| |
* | Merge pull request #1820 from schlenk/get_crl_propertiesAlex Gaynor2015-04-031-0/+11
|\ \ | | | | | | More CRL related bindings
| * | More CRL related bindingsMichael Schlenker2015-04-031-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) manipulationMichael Schlenker2015-04-031-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.
* | add some ASN1_BIT_STRING bindings for OpenSSLPaul Kehrer2015-04-021-0/+4
| |
* | add load_der_x509_csr to support loading DER encoded CSRsPaul Kehrer2015-03-303-0/+25
| |
* | Merge pull request #1796 from rev112/minor_refactoringsPaul Kehrer2015-03-293-15/+15
|\ \ | | | | | | Minor refactorings
| * | Rename 'type' variable which shadows built-in name 'type'Anton Ovchinnikov2015-03-291-12/+12
| | |
| * | Rename lambda argumentAnton Ovchinnikov2015-03-291-1/+1
| | |
| * | Simplify chained comparisonAnton Ovchinnikov2015-03-291-1/+1
| | |
| * | Remove redundant parenthesesAnton Ovchinnikov2015-03-291-1/+1
| | |
* | | rename to CertificateSigningRequestPaul Kehrer2015-03-292-4/+6
| | |
* | | address some review commentsPaul Kehrer2015-03-291-3/+1
| | |
* | | rename request to CSRPaul Kehrer2015-03-294-9/+9
| | |
* | | basic support for parsing x509 requestsPaul Kehrer2015-03-295-2/+63
|/ /
* / basicConstraints support for OpenSSL X509 backendPaul Kehrer2015-03-281-4/+33
|/
* add x509 extensions class and basic tests (no extensions supported)Paul Kehrer2015-03-281-0/+36
|
* allow zero value bn using _bn_to_int in the openssl backendPaul Kehrer2015-03-251-1/+2
|
* DohAlex Gaynor2015-03-242-2/+2
|
* Fixes #1776 -- ensure that we only init bindings once per processAlex Gaynor2015-03-242-12/+20
|
* Merge pull request #1774 from chelseawinfree/im_confidentAlex Gaynor2015-03-243-188/+183
|\ | | | | Moved OpenSSL engine into standalone c and h files
| * Added lines at end of file and adjusted parensChellygel2015-03-233-6/+6
| |
| * Moved OpenSSL engine into standalone c and h filesChellygel2015-03-233-188/+183
| | | | | | | | References #1301
* | Attempt at simplifying the repr code.Alex Gaynor2015-03-231-1/+1
|/
* add BASIC_CONSTRAINTS_free macroPaul Kehrer2015-03-201-0/+3
|
* new openssl bindings for parsing some x509 extensionsPaul Kehrer2015-03-182-0/+12
|
* add AES key wrap bindings to commoncryptoPaul Kehrer2015-03-142-0/+38
|
* Don't trigger any deprecation warnings on importAlex Gaynor2015-03-142-6/+6
|
* DER serialization of DSA private keysPaul Kehrer2015-03-141-4/+2
|
* support DER encoded EC private key serializationPaul Kehrer2015-03-131-1/+4
|
* support RSA DER private key serializationPaul Kehrer2015-03-131-18/+44
|
* Merge pull request #1752 from reaperhulk/tiny-cleanupAlex Gaynor2015-03-111-6/+2
|\ | | | | remove some pointless extra lines in multibackend
| * remove some pointless extra lines in multibackendPaul Kehrer2015-03-111-6/+2
| |
* | Merge pull request #1751 from reaperhulk/x509-refactorAlex Gaynor2015-03-111-38/+40
|\ \ | | | | | | move some helper functions in x509
| * | move some helper functions in x509Paul Kehrer2015-03-111-38/+40
| |/ | | | | | | This will make supporting CSR parsing easier
* | eep not this oneAlex Gaynor2015-03-111-1/+1
| |
* | Use the new names to reference these classesAlex Gaynor2015-03-112-2/+2
| |
* | remove unneeded deprecated interface registrationPaul Kehrer2015-03-111-3/+1
|/
* refactor OpenSSL backend private_key_bytesPaul Kehrer2015-03-114-5/+9
|
* support DER serialization of public keysPaul Kehrer2015-03-104-11/+13
|
* Do the deprecation dancePaul Kehrer2015-03-091-7/+0
|
* DSA public key serializationPaul Kehrer2015-03-082-2/+40
|
* serialize EC public keysPaul Kehrer2015-03-082-2/+40
|
* support RSA public key serializationPaul Kehrer2015-03-074-3/+60
|
* Merge pull request #1715 from reaperhulk/rsa-pkcs1-public-keyAlex Gaynor2015-03-071-10/+38
|\ | | | | RSA PKCS1 public key loading support