| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | update test to cover missing line | Paul Kehrer | 2014-06-22 | 1 | -0/+2 |
| | | |||||
| * | modify RSA numbers loading to match elliptic curve | Paul Kehrer | 2014-06-20 | 1 | -204/+183 |
| | | | | | fixes #1111 | ||||
| * | deprecate old RSA classes and methods | Paul Kehrer | 2014-06-19 | 1 | -28/+79 |
| | | |||||
| * | do value checks when converting from numbers to key | Paul Kehrer | 2014-06-12 | 1 | -1/+1 |
| | | |||||
| * | simplify test_rsa changes | Paul Kehrer | 2014-06-12 | 1 | -467/+343 |
| | | |||||
| * | backend specific RSA*Key implementation for OpenSSL | Paul Kehrer | 2014-06-12 | 1 | -430/+516 |
| | | |||||
| * | Merge pull request #1102 from reaperhulk/rsa-generate-function | Alex Stapleton | 2014-06-07 | 1 | -14/+23 |
| |\ | | | | | add rsa_generate_private_key function to replace RSAPrivateKey.generate | ||||
| | * | rename the function | Paul Kehrer | 2014-06-07 | 1 | -17/+17 |
| | | | |||||
| | * | more coverage... | Paul Kehrer | 2014-06-06 | 1 | -0/+3 |
| | | | |||||
| | * | fix coverage | Paul Kehrer | 2014-06-06 | 1 | -0/+6 |
| | | | |||||
| | * | add rsa_generate_private_key function to replace RSAPrivateKey.generate | Paul Kehrer | 2014-06-06 | 1 | -17/+17 |
| | | | | | | | | | refs #1026. #1101 is dependent on this | ||||
| * | | Switch the tests to load numbers | Alex Gaynor | 2014-06-06 | 1 | -30/+33 |
| |/ | |||||
| * | Split load_rsa_numbers into load_rsa_private_numbers and ↵ | David Reid | 2014-06-03 | 1 | -17/+17 |
| | | | | | load_rsa_public_numbers. | ||||
| * | Implement load_rsa_numbers on the openssl backend. | David Reid | 2014-06-03 | 1 | -0/+248 |
| | | |||||
| * | Merge pull request #984 from dreid/rsa-numbers | Paul Kehrer | 2014-06-03 | 1 | -0/+114 |
| |\ | | | | | RSA numbers | ||||
| | * | Pep8 | David Reid | 2014-05-06 | 1 | -1/+0 |
| | | | |||||
| | * | Check types. | David Reid | 2014-05-06 | 1 | -0/+88 |
| | | | |||||
| | * | Make public_numbers a property. | David Reid | 2014-05-01 | 1 | -1/+1 |
| | | | |||||
| | * | Pep8 | David Reid | 2014-04-30 | 1 | -2/+2 |
| | | | |||||
| | * | Failing tests. | David Reid | 2014-04-30 | 1 | -0/+27 |
| | | | |||||
| * | | Merge pull request #1080 from reaperhulk/generate-rsa-parameters | Alex Stapleton | 2014-05-27 | 1 | -1/+1 |
| |\ \ | | | | | | | add generate_rsa_parameters_supported to RSABackend | ||||
| | * | | add generate_rsa_parameters_supported to RSABackend | Paul Kehrer | 2014-05-25 | 1 | -1/+1 |
| | | | | |||||
| * | | | use the keys in the RSA tests | Paul Kehrer | 2014-05-26 | 1 | -157/+53 |
| | | | | |||||
| * | | | add a few more RSA supported checks | Paul Kehrer | 2014-05-25 | 1 | -1/+21 |
| |/ / | |||||
| * | | add supported marks in the RSA tests that use rsa_padding_supported | Paul Kehrer | 2014-05-24 | 1 | -27/+288 |
| | | | |||||
| * | | Always use deprecated_call | Alex Gaynor | 2014-05-03 | 1 | -4/+8 |
| | | | |||||
| * | | Switch tests to pass salt length to the right place, except where actually ↵ | Alex Gaynor | 2014-05-03 | 1 | -12/+12 |
| |/ | | | | testing the deprecation support | ||||
| * | Don't import the exceptions module directly. | Alex Gaynor | 2014-04-29 | 1 | -12/+14 |
| | | | | | | The name "exceptions" is way too common for modules, so it's crappy to put that name in the namespace, just import the classes we need. | ||||
| * | Merge pull request #962 from reaperhulk/rsa-enc | Alex Gaynor | 2014-04-26 | 1 | -1/+119 |
| |\ | | | | | RSA encryption support | ||||
| | * | move ct length check into decrypt function, address review comments | Paul Kehrer | 2014-04-25 | 1 | -13/+8 |
| | | | |||||
| | * | another style fix in the rsa tests that I missed last time... | Paul Kehrer | 2014-04-24 | 1 | -2/+2 |
| | | | |||||
| | * | improve style in test, update docs for rsa encryption review | Paul Kehrer | 2014-04-24 | 1 | -1/+1 |
| | | | |||||
| | * | RSA encryption support | Paul Kehrer | 2014-04-24 | 1 | -0/+123 |
| | | | |||||
| * | | Rename OpenSSLSerializationBackend | Alex Stapleton | 2014-04-25 | 1 | -19/+3 |
| | | | |||||
| * | | No more comma seperated string strings | Alex Gaynor | 2014-04-24 | 1 | -1/+1 |
| |/ | |||||
| * | OAEP support for RSA decryption | Paul Kehrer | 2014-04-22 | 1 | -0/+59 |
| | | |||||
| * | more key length checks, docs update | Paul Kehrer | 2014-04-20 | 1 | -1/+3 |
| | | |||||
| * | remove InvalidDecryption and replace with ValueError | Paul Kehrer | 2014-04-20 | 1 | -2/+2 |
| | | |||||
| * | remove OAEP decryption to simplify review | Paul Kehrer | 2014-04-20 | 1 | -59/+0 |
| | | |||||
| * | cover a missing line | Paul Kehrer | 2014-04-20 | 1 | -0/+11 |
| | | |||||
| * | more testing for rsa decrypt | Paul Kehrer | 2014-04-20 | 1 | -0/+17 |
| | | |||||
| * | 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 | 1 | -0/+13 |
| | | |||||
| * | docs, tests, general huge improvements to RSA decryption | Paul Kehrer | 2014-04-20 | 1 | -11/+59 |
| | | |||||
| * | prelim OAEP and PKCS1v15 for openssl 1.0.0+ and 0.9.8. decryption only | Paul Kehrer | 2014-04-20 | 1 | -0/+63 |
| | | |||||
| * | Merge pull request #935 from public/rsa-crt | Paul Kehrer | 2014-04-20 | 1 | -17/+4 |
| |\ | | | | | Utility methods for RSA CRT params | ||||
| | * | Utility methods for RSA CRT params | Alex Stapleton | 2014-04-18 | 1 | -17/+4 |
| | | | |||||
| * | | some checks for PKCS1 keys being too small for the payload to be signed | Paul Kehrer | 2014-04-19 | 1 | -0/+29 |
| |/ | |||||
| * | added unused NIST test files for FIPS 186-2 RSA (PKCS#1 v1.5) to test cases | Thomas Fenzl | 2014-04-15 | 1 | -0/+10 |
| | | |||||
| * | DummyMGF needs a _salt_length too | Paul Kehrer | 2014-04-02 | 1 | -1/+1 |
| | | |||||
