aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | use mgf1_hash_supported to simplify some logicPaul Kehrer2014-03-171-2/+1
| | | |
| * | | extract RSA struct from EVP_PKEYPaul Kehrer2014-03-161-1/+5
| | | |
| * | | consume errors before assertingPaul Kehrer2014-03-161-2/+4
| | | |
| * | | make mgf privatePaul Kehrer2014-03-162-6/+6
| | | |
| * | | add RSA PSS verification supportPaul Kehrer2014-03-162-1/+80
| | | |
* | | | Merge pull request #768 from reaperhulk/cffi-modulename-fixDavid Reid2014-03-171-8/+30
|\ \ \ \ | | | | | | | | | | Workaround for cffi issue 140
| * | | | address review commentsPaul Kehrer2014-03-171-5/+6
| | | | |
| * | | | be less dumbPaul Kehrer2014-03-131-8/+3
| | | | |
| * | | | make create_modulename private, add testPaul Kehrer2014-03-131-4/+8
| | | | |
| * | | | workaround for cffi issue 140. refs #762Paul Kehrer2014-03-091-7/+29
| | | | |
* | | | | Merge pull request #759 from public/no-hexAlex Gaynor2014-03-171-11/+38
|\ \ \ \ \ | |_|_|/ / |/| | | | Don't go via hex() when working with BNs
| * | | | Don't go via hex() when working with BNsAlex Stapleton2014-03-141-11/+38
| | | | |
* | | | | Add key_size property to DSAPublicKeyMohammed Attia2014-03-171-0/+6
| |_|/ / |/| | |
* | | | Merge pull request #808 from public/tidy-rsaPaul Kehrer2014-03-161-34/+58
|\ \ \ \ | | | | | | | | | | RSAPrivateKey to evp_pkey utility method
| * | | | s/set1/assign/Alex Stapleton2014-03-161-2/+2
| | | | |
| * | | | Just EVP_PKEY GC free the contained keys.Alex Stapleton2014-03-161-2/+5
| | | | | | | | | | | | | | | | | | | | Fortunately we never use these bare.
| * | | | RSAPrivateKey to evp_pkey utility methodAlex Stapleton2014-03-161-32/+53
| | | | |
* | | | | Merge pull request #811 from alex/import-stylePaul Kehrer2014-03-162-4/+2
|\ \ \ \ \ | | | | | | | | | | | | Tiny style changes to some imports
| * | | | | Tiny style changes to some importsAlex Gaynor2014-03-162-4/+2
| | | | | |
* | | | | | s/available_backends/_available_backends/Alex Stapleton2014-03-161-9/+9
| | | | | |
* | | | | | Fix circular imports with available_backends()Alex Stapleton2014-03-161-7/+26
|/ / / / /
* | | | | Merge pull request #807 from Ayrx/add-backend-check-to-rsaPaul Kehrer2014-03-161-0/+14
|\ \ \ \ \ | | | | | | | | | | | | Added backend check to rsa primitives
| * | | | | Added backend check to rsa primitivesAyrx2014-03-161-0/+14
| |/ / / /
* | | | | Merge pull request #806 from Ayrx/add-backend-check-to-cipherPaul Kehrer2014-03-161-1/+7
|\ \ \ \ \ | | | | | | | | | | | | Added backend check to cipher primitives
| * | | | | Added backend check to cipher primitivesAyrx2014-03-161-1/+7
| |/ / / /
* | | | | Merge pull request #805 from Ayrx/add-backend-check-to-hmacPaul Kehrer2014-03-161-1/+9
|\ \ \ \ \ | | | | | | | | | | | | Added backend check to hmac primitives
| * | | | | Fixed style nitpickAyrx2014-03-161-1/+2
| | | | | |
| * | | | | Added backend check to hmac primitivesAyrx2014-03-161-1/+8
| |/ / / /
* / / / / Added backend check to hash primitivesAyrx2014-03-161-1/+6
|/ / / /
* | | | Merge pull request #803 from alex/stylePaul Kehrer2014-03-151-2/+4
|\ \ \ \ | | | | | | | | | | Don't put things with side effects in assert statements
| * | | | Don't put things with side effects in assert statementsAlex Gaynor2014-03-151-2/+4
| | | | |
* | | | | Merge pull request #775 from reaperhulk/rsa-mgf1-classAlex Gaynor2014-03-151-0/+21
|\ \ \ \ \ | |/ / / / |/| | | | add MGF1 class, docs, tests
| * | | | restructure if statements to be less confusingPaul Kehrer2014-03-151-2/+2
| | | | |
| * | | | make MAX_LENGTH an object()Paul Kehrer2014-03-141-3/+1
| | | | |
| * | | | make attributes of MGF1 private since that's our general conventionPaul Kehrer2014-03-111-2/+2
| | | | |
| * | | | change MAX_LENGTH to be an object rather than a byte stringPaul Kehrer2014-03-111-3/+5
| | | | |
| * | | | add MGF1 class, docs, testsPaul Kehrer2014-03-101-0/+21
| | | | |
* | | | | Small style cleanup for importsAlex Gaynor2014-03-152-5/+4
| | | | |
* | | | | Removed newline from start of methodsAyrx2014-03-154-4/+0
| | | | |
* | | | | Added backend check to kdf primitivesAyrx2014-03-152-3/+18
| | | | |
* | | | | Added backend check to twofactor primitivesAyrx2014-03-153-2/+18
| | | | |
* | | | | RHEL 5's inaccurate OPENSSL_VERSION_NUMBER is a real painPaul Kehrer2014-03-131-5/+6
| | | | |
* | | | | complete 0.9.8b PRPaul Kehrer2014-03-131-1/+2
| | | | |
* | | | | Add support for openssl 0.9.8bArturo Filastò2014-03-131-3/+17
| | | | |
* | | | | Merge pull request #784 from reaperhulk/fix-783Laurens Van Houtven2014-03-121-1/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Partially deopaque SSL_CTX to support a pyopenssl use case This allows PyOpenSSL to access the "method" field of the SSL_CTX struct, which allows you to see the method of an already existing context. This is useful, for example, for debugging and testing. The relevant PyOpenSSL ticket is pyca/pyopenssl#61. Fixes #783.
| * | | | | partially deopaque SSL_CTX to support a pyopenssl use case. fixes #783Paul Kehrer2014-03-111-1/+6
| | | | | |
* | | | | | Merge pull request #782 from reaperhulk/enable-idea-cipherAlex Gaynor2014-03-112-4/+21
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Enable IDEA cipher
| * | | | | add IDEA support for CBC, CFB, OFB + tests for all IDEAPaul Kehrer2014-03-111-9/+6
| | | | | |
| * | | | | basic IDEA ECB support for OpenSSL backendPaul Kehrer2014-03-112-1/+21
| |/ / / /
* / / / / small bindings change to make cryptography work with openssl 1.0.2Paul Kehrer2014-03-111-1/+3
|/ / / /