aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #739 from skeuomorf/dsa-backendPaul Kehrer2014-04-054-3/+102
|\ | | | | DSA backend
| * Add DSABackendMohammed Attia2014-04-044-4/+49
| |
| * Add tests for DSA parameters and key generationMohammed Attia2014-04-032-5/+5
| |
| * Add generation methods and remove the optional arguments from the backendMohammed Attia2014-04-032-31/+32
| |
| * Add key_size to GCMohammed Attia2014-04-021-2/+8
| |
| * Remove validation from the backend since it's already done through the APIMohammed Attia2014-04-021-21/+2
| |
| * Add basic DSA backend methodsMohammed Attia2014-04-021-2/+68
| |
* | move DeprecatedIn04 to utils, some kwargs changesPaul Kehrer2014-04-023-6/+6
| |
* | address review commentsPaul Kehrer2014-04-022-5/+11
| |
* | move salt_length from MGF1 to PSS and start deprecation cyclePaul Kehrer2014-04-022-14/+44
| |
* | Merge pull request #885 from exarkun/X509_STORE_CTX-paraphernaliaAlex Gaynor2014-04-021-0/+4
|\ \ | |/ |/| Bind a few APIs related to X509_STORE_CTX structures.
| * Bind a few APIs related to X509_STORE_CTX structures.Jean-Paul Calderone2014-04-021-0/+4
| |
* | Add _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHMAlex Stapleton2014-04-012-3/+7
| |
* | Add _Reasons.UNSUPPORTED_MGFAlex Stapleton2014-04-012-2/+5
| |
* | Add DSA private key api, docs and testsMohammed Attia2014-03-301-1/+44
| |
* | Add DSA public key api, docs and testsMohammed Attia2014-03-301-0/+25
| |
* | Merge pull request #868 from skeuomorf/dsa-parametersPaul Kehrer2014-03-291-0/+74
|\ \ | | | | | | Add DSA parameters api, docs and tests
| * | Add DSA parameters api, docs and testsMohammed Attia2014-03-301-0/+74
| | |
* | | Merge pull request #867 from public/ecdsa-bindingsPaul Kehrer2014-03-292-0/+131
|\ \ \ | |/ / |/| | ECDSA bindings
| * | ECDSA bindingsAlex Stapleton2014-03-292-0/+131
| | |
* | | workaround 0.9.8 madness by creating our own madnessPaul Kehrer2014-03-291-10/+29
| | |
* | | add EVP_PKEY encrypt/decrypt functionsPaul Kehrer2014-03-291-0/+16
|/ /
* | Merge pull request #857 from Lukasa/masterPaul Kehrer2014-03-281-0/+62
|\ \ | | | | | | Add Next Protocol Negotiation functions for OpenSSL
| * | Remove extraneous spaces.Cory Benfield2014-03-281-10/+10
| | |
| * | Add NPN functions.Cory Benfield2014-03-281-0/+62
| | |
* | | update versions for 0.4.dev1 and add boilerplate to changelogPaul Kehrer2014-03-271-1/+1
| | |
* | | bump versions and changelog for third releasePaul Kehrer2014-03-271-1/+1
|/ /
* | Remove change to bindingsAlex Stapleton2014-03-271-2/+2
| |
* | Fixes to @alex's commentsAlex Stapleton2014-03-271-2/+2
| |
* | Update tests and raise sitesAlex Stapleton2014-03-279-46/+87
| |
* | Add additional reason tagsAlex Stapleton2014-03-271-0/+3
| |
* | Address most of my own commentsAlex Stapleton2014-03-273-6/+10
| |
* | Fixed #809 -- switch back to always using UnsupportedAlgorithmAlex Gaynor2014-03-2713-76/+81
| |
* | Add SSL_CTX method getter to fix #794Alex Stapleton2014-03-221-1/+7
| |
* | Merge pull request #833 from reaperhulk/rsa-pss-signingAlex Gaynor2014-03-211-10/+126
|\ \ | | | | | | RSA PSS Signing
| * | improve exception msgs, change how test_pss_signing_sha2 worksPaul Kehrer2014-03-201-4/+10
| | |
| * | Merge branch 'master' into rsa-pss-signingPaul Kehrer2014-03-209-19/+21
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: add mgf1_hash_supported unsupported hash check more concise way of generating tests switch to a lambda rename some things add FIPS 186-2/3 signature verification tests for RSA PKCSv15 and PSS revert one import order change a few small fixes Add ASN1_TIME_free import order fixes for future automated checking Conflicts: tests/hazmat/primitives/test_rsa.py tests/hazmat/primitives/utils.py
| * | | document the ValueErrorPaul Kehrer2014-03-191-2/+2
| | | |
| * | | never trust opensslPaul Kehrer2014-03-191-16/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Turns out you can't trust it to safely compute the max salt length allowed for PSS, so now we get to do it ourselves. We also check for whether the key size is large enough for the selected hash function (PSS only for now, PKCS1 coming in another PR)
| * | | RSA PSS signature supportPaul Kehrer2014-03-191-2/+77
| | | |
* | | | Merge pull request #836 from reaperhulk/netbsd-why-oh-whyAlex Gaynor2014-03-211-0/+23
|\ \ \ \ | | | | | | | | | | workaround a netbsd bug where they did not compile with d1_meth.c
| * | | | c has syntax rules tooPaul Kehrer2014-03-211-1/+1
| | | | |
| * | | | workaround a netbsd bug where they did not compile with d1_meth.cPaul Kehrer2014-03-211-0/+23
| | |/ / | |/| |
* / | | padding and constant time also need the cffi modulename fixPaul Kehrer2014-03-212-12/+28
|/ / /
* | | Merge pull request #829 from reaperhulk/import-order-fixerAlex Gaynor2014-03-198-19/+20
|\ \ \ | | | | | | | | import order fixes for future automated checking
| * | | import order fixes for future automated checkingPaul Kehrer2014-03-198-19/+20
| |/ /
* | | Merge pull request #830 from jgiannuzzi/masterAlex Gaynor2014-03-191-0/+1
|\ \ \ | |/ / |/| | Add ASN1_TIME_free
| * | Add ASN1_TIME_freeJonathan Giannuzzi2014-03-191-0/+1
| | | | | | | | | | | | Required function to solve a memory leak in pyOpenSSL
* | | Merge pull request #792 from reaperhulk/rsa-pss-verifyAlex Gaynor2014-03-172-2/+90
|\ \ \ | | | | | | | | RSA PSS Verify
| * | | change exception and improve some languagePaul Kehrer2014-03-171-4/+8
| | | |