aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Load vectors from cryptography.vectorsMatthew Iversen2014-03-223-15/+9
|
* cryptography.vectorsAlex Stapleton2014-03-22329-3/+86
|
* Merge pull request #841 from public/ssl-ctx-methodAlex Gaynor2014-03-221-1/+7
|\ | | | | Add SSL_CTX method getter to fix #794
| * Add SSL_CTX method getter to fix #794Alex Stapleton2014-03-221-1/+7
| |
* | Merge pull request #839 from reaperhulk/more-import-orderAlex Gaynor2014-03-222-2/+2
|\ \ | |/ |/| Import order fixes for generation scripts
| * a few more import order fixes for upcoming flake8-import-orderPaul Kehrer2014-03-222-2/+2
|/
* Merge pull request #833 from reaperhulk/rsa-pss-signingAlex Gaynor2014-03-215-14/+399
|\ | | | | RSA PSS Signing
| * improve exception msgs, change how test_pss_signing_sha2 worksPaul Kehrer2014-03-203-62/+47
| |
| * Merge branch 'master' into rsa-pss-signingPaul Kehrer2014-03-2026-114/+214
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-192-2/+8
| | |
| * | never trust opensslPaul Kehrer2014-03-193-18/+184
| | | | | | | | | | | | | | | | | | | | | 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-195-5/+233
| | |
* | | 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
| | |/ | |/|
* | | Merge pull request #837 from reaperhulk/modulename-all-the-thingsAlex Gaynor2014-03-212-12/+28
|\ \ \ | |/ / |/| | padding and constant time also need the cffi modulename fix
| * | padding and constant time also need the cffi modulename fixPaul Kehrer2014-03-212-12/+28
|/ /
* | Merge pull request #826 from reaperhulk/rsa-more-sig-verificationAlex Gaynor2014-03-203-62/+158
|\ \ | | | | | | RSA more sig verification
| * | add mgf1_hash_supported unsupported hash checkPaul Kehrer2014-03-191-0/+8
| | |
| * | more concise way of generating testsPaul Kehrer2014-03-191-86/+52
| | |
| * | switch to a lambdaPaul Kehrer2014-03-192-23/+40
| | |
| * | rename some thingsPaul Kehrer2014-03-192-17/+17
| | |
| * | add FIPS 186-2/3 signature verification tests for RSA PKCSv15 and PSSPaul Kehrer2014-03-192-22/+127
|/ /
* | Merge pull request #829 from reaperhulk/import-order-fixerAlex Gaynor2014-03-1925-54/+57
|\ \ | | | | | | import order fixes for future automated checking
| * | revert one import order changePaul Kehrer2014-03-191-1/+1
| | |
| * | a few small fixesPaul Kehrer2014-03-194-2/+6
| | |
| * | import order fixes for future automated checkingPaul Kehrer2014-03-1925-55/+54
| |/
* | 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 #825 from reaperhulk/expand-rsa-nist-loaderDavid Reid2014-03-182-11/+175
|\ \ | | | | | | expand RSA NIST vector loader to support verification vectors as well
| * | remove a comma that was pointlessly addedPaul Kehrer2014-03-181-1/+1
| | |
| * | py3 fixPaul Kehrer2014-03-181-2/+2
| | |
| * | add headers to each test so the file source can be determinedPaul Kehrer2014-03-181-1/+11
| | |
| * | another file permutation for rsa nist tested.Paul Kehrer2014-03-182-1/+65
| | |
| * | expand RSA NIST vector loader to support verification vectors as wellPaul Kehrer2014-03-182-12/+102
| | |
* | | Merge pull request #827 from public/title-caseAlex Gaynor2014-03-1825-47/+46
|\ \ \ | |/ / |/| | Standardise on sentence case for titles
| * | Standardise on sentence case for titlesAlex Stapleton2014-03-1825-47/+46
|/ /
* | Merge pull request #792 from reaperhulk/rsa-pss-verifyAlex Gaynor2014-03-178-8/+417
|\ \ | | | | | | RSA PSS Verify
| * | link to Colin Percival re: recommended RSA signature paddingPaul Kehrer2014-03-171-1/+2
| | |
| * | change exception and improve some languagePaul Kehrer2014-03-172-6/+12
| | |
| * | use mgf1_hash_supported to simplify some logicPaul Kehrer2014-03-171-2/+1
| | |
| * | pass the hash class rather than using getattrPaul Kehrer2014-03-162-12/+12
| | |
| * | change rsa nist loader to use strings for algorithm namePaul Kehrer2014-03-162-4/+4
| | |
| * | fix indentationPaul Kehrer2014-03-161-18/+18
| | |
| * | extract RSA struct from EVP_PKEYPaul Kehrer2014-03-161-1/+5
| | |
| * | cover a missing line for older opensslPaul Kehrer2014-03-161-0/+25
| | |
| * | consume errors before assertingPaul Kehrer2014-03-161-2/+4
| | |
| * | make mgf privatePaul Kehrer2014-03-162-6/+6
| | |
| * | move PSS to top of docsPaul Kehrer2014-03-161-7/+7
| | |
| * | add RSA PSS verification supportPaul Kehrer2014-03-165-2/+374
| | |