aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends
Commit message (Collapse)AuthorAgeFilesLines
...
| * OAEP support for RSA decryptionPaul Kehrer2014-04-221-0/+51
| |
* | Added _REASONAyrx2014-04-221-4/+2
| |
* | Added tests for multibackendAyrx2014-04-221-3/+33
|/
* Added missing tests for 100% coverageAyrx2014-04-221-0/+16
|
* remove OAEP decryption to simplify reviewPaul Kehrer2014-04-201-51/+0
|
* docs, tests, general huge improvements to RSA decryptionPaul Kehrer2014-04-201-2/+53
|
* Inplace mode for _int_to_bnAlex Stapleton2014-04-201-0/+19
| | | | Mostly useful for working with (EC)?DSA_SIG right now
* move some rsa tests to a new classPaul Kehrer2014-04-161-38/+40
|
* pep8, ironyAlex Gaynor2014-04-051-1/+0
|
* Some cleanups to importsAlex Gaynor2014-04-051-6/+3
|
* Add docs for DSA parameters and key generationMohammed Attia2014-04-041-5/+3
|
* Add DSABackendMohammed Attia2014-04-042-1/+46
|
* Add tests for DSA parameters and key generationMohammed Attia2014-04-031-1/+12
|
* fix pep8 errorsAlex Stapleton2014-04-011-2/+0
|
* Add _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHMAlex Stapleton2014-04-011-3/+9
|
* Fixes to @alex's commentsAlex Stapleton2014-03-271-3/+1
|
* Update tests and raise sitesAlex Stapleton2014-03-273-18/+30
|
* Fixed #809 -- switch back to always using UnsupportedAlgorithmAlex Gaynor2014-03-273-22/+18
|
* Merge branch 'master' into rsa-pss-signingPaul Kehrer2014-03-203-6/+14
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| * add mgf1_hash_supported unsupported hash checkPaul Kehrer2014-03-191-0/+8
| |
| * import order fixes for future automated checkingPaul Kehrer2014-03-193-6/+6
| |
* | RSA PSS signature supportPaul Kehrer2014-03-191-0/+11
|/
* cover a missing line for older opensslPaul Kehrer2014-03-161-0/+25
|
* Added future imports and licenses that are missingAlex Gaynor2014-03-084-0/+20
|
* Convert stuffAlex Gaynor2014-03-063-16/+20
|
* raise InternalErrorAlex Stapleton2014-03-011-1/+10
|
* pep8Alex Stapleton2014-03-011-1/+1
|
* Get rid of handle_errorsAlex Stapleton2014-03-011-34/+5
|
* more PKCS1->PKCS1v15Paul Kehrer2014-02-251-3/+3
|
* add RSA verification supportPaul Kehrer2014-02-251-0/+11
|
* update multibackend with new PKCS1v15 class namePaul Kehrer2014-02-241-2/+2
|
* add basic multibackend so we can do signatures using default_backendPaul Kehrer2014-02-231-0/+11
|
* flake8 fixAlex Gaynor2014-02-121-0/+1
|
* Added RSABackend to MultiBackendAlex Gaynor2014-02-121-3/+21
|
* remove deactivate and replace with activate_builtin_randomPaul Kehrer2014-02-051-147/+13
|
* Merge branch 'master' into urandom-enginePaul Kehrer2014-02-051-1/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: PKCS #1 RSA test vector loader Removed pointless anchor Docs need virtualenv as well Everything about bash is the worst Some reST markup nonsense Fix for OS X More clearly describe the behavior of constant_time.bytes_eq Run the doc tests under OS X Made OpenSSL's derive_pbkdf2_hmac raise the right exception Document which backends implement which itnerfaces. Fixes #538 pep8 Fixed a typo in the docs Make the default backend be a multi-backend Conflicts: tests/hazmat/backends/test_openssl.py
| * Made OpenSSL's derive_pbkdf2_hmac raise the right exceptionAlex Gaynor2014-02-041-1/+7
| |
* | assert the right thingPaul Kehrer2014-02-041-1/+1
| |
* | Merge branch 'master' into urandom-enginePaul Kehrer2014-02-032-17/+194
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (66 commits) Chanloge + versionadded Added an example usage Typo fix Added to toctree Rename and document Linkify the things we have that others don't add HKDF to changelog Strings have quote marks at both ends. HKDF example. Properly mark all test cases as dependant on HMAC. Remove language about the separate stages of HKDF until we expose multiple stages of HKDF. Don't forget InvalidKey. Fix typo Import exception classes instead of the exceptions module. Lose the bit about passwords. https a bunch of links. Pseudorandom is a word. Backtick the entire equation. Clarify salt language and link to the paper in addition to the RFC. Don't expose extract and expand on this class yet because we don't know how best to expose verify functionality, continue testing the stages using the private methods. ... Conflicts: docs/hazmat/backends/openssl.rst
| * Merge branch 'master' into prioritized-multi-backendAlex Gaynor2014-02-031-13/+50
| |\
| | * More detailed error message for InternalErrorAlex Stapleton2014-02-021-0/+17
| | | | | | | | | | | | | | | Uses ERR_error_string_n because the source contains horrible warnings against ever using ERR_error_string.
| | * Handle multiple errors on the stackAlex Stapleton2014-02-011-13/+33
| | |
| * | Rename and documentAlex Gaynor2014-02-031-6/+6
| | |
| * | pep8 fixesAlex Gaynor2014-01-312-2/+0
| | |
| * | FixAlex Gaynor2014-01-301-1/+9
| | |
| * | More direct testsAlex Gaynor2014-01-301-1/+49
| | |
| * | Not true anymoreAlex Gaynor2014-01-301-3/+0
| | |
| * | Direct tests for the hash supportAlex Gaynor2014-01-301-0/+25
| | |
| * | Direct tests for the cipher supportAlex Gaynor2014-01-301-1/+49
| | |
| * | Replace re-running all tests with some unit testsAlex Gaynor2014-01-301-0/+16
| |/