aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into validate-ivAlex Gaynor2014-01-0114-489/+511
|\ | | | | | | | | | | Conflicts: tests/hazmat/backends/test_openssl.py tests/hazmat/primitives/test_block.py
| * Merge pull request #353 from reaperhulk/supported-markAlex Gaynor2013-12-2713-406/+297
| |\ | | | | | | Add mark that allows us to do skip tests on backends via decorators
| | * re-add some removed generators to simplify patchPaul Kehrer2013-12-273-50/+101
| | |
| | * refactor all tests to use mark instead of generator skipsPaul Kehrer2013-12-2613-450/+290
| | |
| * | Remove verify from Hash.Julian Krause2013-12-261-26/+1
| | |
| * | Merge branch 'master' of https://github.com/pyca/cryptography into verifyJulian Krause2013-12-2513-202/+312
| |\| | | | | | | | | | | | | | | | Conflicts: tests/hazmat/primitives/test_hashes.py tests/hazmat/primitives/test_hmac.py
| | * correct import stylePaul Kehrer2013-12-247-0/+7
| | |
| | * add all the markers to the testsPaul Kehrer2013-12-2411-0/+45
| | |
| | * Cover a missed branchAlex Gaynor2013-12-241-2/+1
| | |
| | * add more skip check lambdasPaul Kehrer2013-12-232-0/+40
| | |
| | * add hmac_supported method to backend.Paul Kehrer2013-12-232-8/+8
| | | | | | | | | | | | | | | Previously we were implicitly assuming that if a hash was supported then its hmac equivalent was as well.
| | * Merge pull request #325 from public/unsupported-cipher-messagesAlex Gaynor2013-12-222-8/+16
| | |\ | | | | | | | | UnsupportedAlgorithm error messages for Ciphers
| | | * UnsupportedAlgorithm error messages for CiphersAlex Stapleton2013-12-222-8/+16
| | | |
| | * | Merge pull request #327 from reaperhulk/gcm-lower-limit-tagAlex Gaynor2013-12-211-0/+7
| | |\ \ | | | | | | | | | | Restrict GCM tag length to 4+ bytes
| | | * | restrict gcm tags to a minimum of 4 bytes in lengthPaul Kehrer2013-12-211-0/+7
| | | | |
| | * | | Merge pull request #326 from public/unsupported-hmac-hashAlex Gaynor2013-12-211-2/+12
| | |\ \ \ | | | |/ / | | |/| | Raise UnsupportedAlgorithm when initing HMACs
| | | * | Raise UnsupportedAlgorithm when initing HMACsAlex Stapleton2013-12-211-2/+12
| | | |/
| | * | Merge pull request #324 from public/unsupported-hashAlex Gaynor2013-12-211-2/+12
| | |\ \ | | | | | | | | | | Raise UnsupportedAlgorithm when initing Hash()
| | | * | Raise UnsupportedAlgorithm when initing Hash()Alex Stapleton2013-12-211-2/+12
| | | |/ | | | | | | | | | | | | Instead of just an AssertionError.
| | * | use both kwargs and named args in lambdas for clarityPaul Kehrer2013-12-216-65/+43
| | | |
| | * | don't modify params on parametrized testsPaul Kehrer2013-12-207-55/+77
| | |/ | | | | | | | | | | | | multiple backends receive the same params dicts, but we were modifying them using pop.
| | * Merge branch 'master' into no-more-generatorAlex Gaynor2013-12-173-2/+43
| | |\ | | | | | | | | | | | | | | | | Conflicts: tests/hazmat/primitives/utils.py
| | * | pep8Alex Gaynor2013-12-131-1/+1
| | | |
| | * | Make this less invasiveAlex Gaynor2013-12-131-177/+280
| | | |
| | * | Clean up test generation to not use generators anymore and use parametrizationAlex Gaynor2013-12-131-332/+209
| | | |
| * | | Add verify function to hmac and hashes.Julian Krause2013-12-172-2/+48
| | |/ | |/|
* | | Merge branch 'master' into validate-ivAlex Gaynor2013-12-157-8/+278
|\| | | | | | | | | | | | | | | | | Conflicts: cryptography/hazmat/primitives/ciphers/modes.py tests/hazmat/primitives/test_block.py
| * | Merge pull request #308 from alex/rename-bindingsDonald Stufft2013-12-153-3/+3
| |\ \ | | | | | | | | Renamed bindings to backends
| | * | Also rename teh testsAlex Gaynor2013-12-132-0/+0
| | | |
| | * | Renamed bindings to backendsAlex Gaynor2013-12-132-3/+3
| | |/
| * | Merge pull request #283 from juliankrause/constant_timePaul Kehrer2013-12-141-0/+41
| |\ \ | | |/ | |/| Beginnings of a constant_time module.
| | * Beginnings of a constant_time module.Julian Krause2013-12-041-0/+41
| | |
| * | raise ValueErrors when supplying/not supplying tags for GCMPaul Kehrer2013-12-043-3/+59
| |/
| * create AEADEncryptionContext and DecryptionContextPaul Kehrer2013-11-291-1/+1
| |
| * raise TypeError if you attempt to get the tag attribute on a decryptPaul Kehrer2013-11-291-0/+9
| | | | | | | | | | * To support this the _AEADCipherContext in base.py now needs to be aware of whether it is encrypting/decrypting
| * rename add_data to authenticate_additional_data for clarity (hopefully)Paul Kehrer2013-11-291-5/+5
| |
| * invalidtag exception for gcmPaul Kehrer2013-11-291-2/+2
| | | | | | | | | | This exception is probably not safe. It depends on the assumption that if ERR_get_error returns a 0 then it is an AEAD tag error.
| * enforce AEAD add_data before updatePaul Kehrer2013-11-293-12/+14
| |
| * _AEADCipherContext refactorPaul Kehrer2013-11-291-0/+4
| | | | | | | | | | | | * No longer extends _CipherContext * Remove _tag from _CipherContext * This change duplicates a small amount of code from _CipherContext
| * rename NotFinalized exception to NotYetFinalized because alex is rightPaul Kehrer2013-11-291-2/+2
| | | | | | | | ...it does read better that way
| * GCM supportPaul Kehrer2013-11-294-5/+163
| |
* | Merge branch 'master' into validate-ivAlex Gaynor2013-11-271-2/+2
|\|
| * Fixed this test. It was passing for the wrong reason.Alex Gaynor2013-11-271-2/+2
| | | | | | | | Shame on us for letting something without coverage land.
* | Merge branch 'master' into validate-ivAlex Gaynor2013-11-275-30/+59
|\| | | | | | | | | Conflicts: tests/hazmat/primitives/test_block.py
| * Merge pull request #227 from dreid/explicit-backend-in-hazmatAlex Gaynor2013-11-265-30/+22
| |\ | | | | | | Explicit backend
| | * Fix pep8David Reid2013-11-251-1/+2
| | |
| | * Use keyword argument forms everywhere.David Reid2013-11-253-15/+16
| | |
| | * Test that openssl is the default backend.David Reid2013-11-201-0/+4
| | |
| | * Explicit backendDavid Reid2013-11-204-37/+23
| | |
| * | Fixed branch coverageAlex Gaynor2013-11-231-0/+17
| | |