aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hmac.py
Commit message (Collapse)AuthorAgeFilesLines
* remove multibackend (#3555)Paul Kehrer2017-05-201-11/+0
| | | | | | | | * remove multibackend * oops * goodbye pointless tests
* Un-double the test doublesAlex Gaynor2016-03-051-9/+2
|
* Refs #1870 - replace six.u with u prefix in tests/hazmat/primitivesEeshan Garg2015-04-291-4/+2
|
* move hash interfacesPaul Kehrer2015-02-131-2/+2
|
* Update the license header for every source file, as well as the documentation.Alex Gaynor2014-11-161-12/+3
| | | | Fixes #1209
* When using a test double for backends, always use one which really ↵Alex Gaynor2014-10-281-9/+5
| | | | implements the interface
* Added attributes that are part of hte interface to several test fakesAlex Gaynor2014-10-271-0/+2
|
* Change how we represented that a test requires a backend.Alex Gaynor2014-10-231-2/+2
| | | | This way is more extensible and requires less maintaince
* fix overindentPaul Kehrer2014-10-221-1/+1
|
* Update tests and raise sitesAlex Stapleton2014-03-271-3/+4
|
* Fixed #809 -- switch back to always using UnsupportedAlgorithmAlex Gaynor2014-03-271-3/+3
|
* import order fixes for future automated checkingPaul Kehrer2014-03-191-1/+1
|
* Tiny style changes to some importsAlex Gaynor2014-03-161-3/+1
|
* Fixed style nitpickAyrx2014-03-161-1/+2
|
* Added backend check to hmac primitivesAyrx2014-03-161-4/+16
|
* Convert stuffAlex Gaynor2014-03-061-2/+2
|
* instantiate hash objects for hmac checks tooPaul Kehrer2014-01-041-1/+1
|
* Merge pull request #353 from reaperhulk/supported-markAlex Gaynor2013-12-271-3/+8
|\ | | | | Add mark that allows us to do skip tests on backends via decorators
| * re-add some removed generators to simplify patchPaul Kehrer2013-12-271-12/+12
| |
| * refactor all tests to use mark instead of generator skipsPaul Kehrer2013-12-261-4/+9
| |
* | Merge branch 'master' of https://github.com/pyca/cryptography into verifyJulian Krause2013-12-251-3/+16
|\| | | | | | | | | | | Conflicts: tests/hazmat/primitives/test_hashes.py tests/hazmat/primitives/test_hmac.py
| * add all the markers to the testsPaul Kehrer2013-12-241-0/+1
| |
| * add hmac_supported method to backend.Paul Kehrer2013-12-231-1/+1
| | | | | | | | | | Previously we were implicitly assuming that if a hash was supported then its hmac equivalent was as well.
| * Raise UnsupportedAlgorithm when initing HMACsAlex Stapleton2013-12-211-2/+12
| |
* | Add verify function to hmac and hashes.Julian Krause2013-12-171-1/+24
|/
* Use keyword argument forms everywhere.David Reid2013-11-251-4/+5
|
* Explicit backendDavid Reid2013-11-201-7/+6
|
* Make HMAC methods raise AlreadyFinalized.David Reid2013-11-131-0/+14
|
* Remove the hash and hmac specific classes, now that the logic is the Context ↵Alex Gaynor2013-11-131-1/+1
| | | | classes they don't really add value
* Get a HashContext from the hmac backend like we do a CipherContextDavid Reid2013-11-121-2/+3
|
* TypeErrors are pretty cool, there are lot of reasons you get them.David Reid2013-11-011-1/+1
|
* Enforce HMAC taking an instance of HashAlgorithmDavid Reid2013-11-011-3/+7
|
* Strip down the HMAC interface to be HashContext.David Reid2013-11-011-13/+2
|
* change type of exception raised, fix docs typoPaul Kehrer2013-10-281-1/+1
|
* make hmac (mostly) compatible with stdlib hmacPaul Kehrer2013-10-281-4/+8
|
* HMAC supportPaul Kehrer2013-10-281-0/+53
Conflicts: docs/primitives/index.rst tests/hazmat/primitives/utils.py