Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added missing tests for 100% coverage | Ayrx | 2014-04-22 | 2 | -13/+19 |
| | |||||
* | Merge pull request #931 from Ayrx/cmac-implementation | Alex Stapleton | 2014-04-22 | 11 | -9/+498 |
|\ | | | | | CMAC implementation and docs | ||||
| * | Added test skip for test_copy_with_backend() | Ayrx | 2014-04-22 | 1 | -0/+5 |
| | | |||||
| * | Added more copy() tests | Ayrx | 2014-04-22 | 2 | -3/+9 |
| | | |||||
| * | Added documentation to note rfc 4493 | Ayrx | 2014-04-22 | 2 | -2/+3 |
| | | |||||
| * | Added wikipedia link | Ayrx | 2014-04-22 | 2 | -3/+6 |
| | | |||||
| * | Fix pep8 errors | Ayrx | 2014-04-22 | 3 | -3/+3 |
| | | |||||
| * | Changed doctests to code-block | Ayrx | 2014-04-22 | 1 | -1/+1 |
| | | |||||
| * | Removed multibackend changes for another PR | Ayrx | 2014-04-22 | 1 | -10/+1 |
| | | |||||
| * | Changed stub keys and ivs to use null bytes | Ayrx | 2014-04-22 | 2 | -3/+6 |
| | | |||||
| * | Updated multibackend | Ayrx | 2014-04-22 | 1 | -2/+2 |
| | | |||||
| * | Various fixes | Ayrx | 2014-04-22 | 2 | -7/+12 |
| | | |||||
| * | Fixed pep8 error | Ayrx | 2014-04-22 | 1 | -4/+9 |
| | | |||||
| * | Updated tests | Ayrx | 2014-04-22 | 2 | -26/+55 |
| | | |||||
| * | Updated CMAC documentation | Ayrx | 2014-04-22 | 2 | -2/+11 |
| | | |||||
| * | Added CMACBackend to MultiBackend | Ayrx | 2014-04-22 | 1 | -2/+11 |
| | | |||||
| * | Added CMAC docs | Ayrx | 2014-04-22 | 5 | -4/+105 |
| | | |||||
| * | Added CMAC tests | Ayrx | 2014-04-22 | 3 | -3/+176 |
| | | |||||
| * | CMAC primitive implementation | Ayrx | 2014-04-22 | 1 | -0/+75 |
| | | |||||
| * | OpenSSL backend's CMAC implementation | Ayrx | 2014-04-22 | 1 | -2/+76 |
| | | |||||
* | | Merge pull request #944 from reaperhulk/fix-773 | Alex Stapleton | 2014-04-22 | 2 | -13/+49 |
|\ \ | |/ |/| | fix SSL_OP_ALL being unusable on Windows due to long being 32-bit signed | ||||
| * | move some comments | Paul Kehrer | 2014-04-20 | 1 | -3/+3 |
| | | |||||
| * | fix SSL_OP_ALL being unusable on Windows due to long being 32-bit signed | Paul Kehrer | 2014-04-20 | 2 | -13/+49 |
| | | |||||
* | | Merge pull request #888 from reaperhulk/rsa-decrypt | Alex Gaynor | 2014-04-21 | 10 | -6/+261 |
|\ \ | | | | | | | RSA PKCS1v15 Decryption Support | ||||
| * | | more key length checks, docs update | Paul Kehrer | 2014-04-20 | 2 | -4/+6 |
| | | | |||||
| * | | remove InvalidDecryption and replace with ValueError | Paul Kehrer | 2014-04-20 | 5 | -19/+8 |
| | | | |||||
| * | | remove redundant blinding | Paul Kehrer | 2014-04-20 | 1 | -2/+0 |
| | | | |||||
| * | | more docs | Paul Kehrer | 2014-04-20 | 2 | -0/+51 |
| | | | |||||
| * | | remove OAEP decryption to simplify review | Paul Kehrer | 2014-04-20 | 5 | -164/+1 |
| | | | |||||
| * | | move an assignment for clarity | Paul Kehrer | 2014-04-20 | 1 | -1/+1 |
| | | | |||||
| * | | change some alignment | Paul Kehrer | 2014-04-20 | 1 | -8/+8 |
| | | | |||||
| * | | cover a missing line | Paul Kehrer | 2014-04-20 | 1 | -0/+11 |
| | | | |||||
| * | | improve comment based on review | Paul Kehrer | 2014-04-20 | 1 | -1/+1 |
| | | | |||||
| * | | more testing for rsa decrypt | Paul Kehrer | 2014-04-20 | 3 | -0/+29 |
| | | | |||||
| * | | register the EVP_PKEY_CTX for gc | Paul Kehrer | 2014-04-20 | 1 | -0/+1 |
| | | | |||||
| * | | test should check for the right exception | Paul Kehrer | 2014-04-20 | 1 | -1/+1 |
| | | | |||||
| * | | add InvalidDecryption exception, check for ct > key size | Paul Kehrer | 2014-04-20 | 4 | -4/+29 |
| | | | |||||
| * | | update docs for OAEP | Paul Kehrer | 2014-04-20 | 1 | -2/+2 |
| | | | |||||
| * | | fix indentation | Paul Kehrer | 2014-04-20 | 1 | -45/+45 |
| | | | |||||
| * | | split 0.9.8 and evp_pkey_ctx branches into separate methods | Paul Kehrer | 2014-04-20 | 1 | -1/+8 |
| | | | |||||
| * | | docs, tests, general huge improvements to RSA decryption | Paul Kehrer | 2014-04-20 | 8 | -23/+178 |
| | | | |||||
| * | | prelim OAEP and PKCS1v15 for openssl 1.0.0+ and 0.9.8. decryption only | Paul Kehrer | 2014-04-20 | 4 | -1/+151 |
| | | | |||||
* | | | Merge pull request #945 from reaperhulk/document-tested-ossl-versions | Alex Stapleton | 2014-04-21 | 1 | -3/+14 |
|\ \ \ | |/ / |/| | | document the OpenSSL versions we're testing against | ||||
| * | | document the OpenSSL versions we're testing against | Paul Kehrer | 2014-04-20 | 1 | -3/+14 |
|/ / | |||||
* | | Merge pull request #838 from public/import-order-lint | Alex Gaynor | 2014-04-20 | 8 | -9/+14 |
|\ \ | |/ |/| | Enable import order linter | ||||
| * | Fix pep8 errors for latest import linter | Alex Stapleton | 2014-04-20 | 6 | -7/+7 |
| | | |||||
| * | Alphabetize tox.ini deps | Alex Stapleton | 2014-04-20 | 1 | -3/+3 |
| | | |||||
| * | Alphabetize dev-requirements.txt | Alex Stapleton | 2014-04-20 | 1 | -2/+2 |
| | | |||||
| * | Fix import order | Alex Stapleton | 2014-04-20 | 1 | -0/+1 |
| | | |||||
| * | Enable import order lint | Alex Stapleton | 2014-04-20 | 2 | -1/+5 |
| | |