Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove maccontext (#4803) | Paul Kehrer | 2019-03-07 | 1 | -2/+1 |
| | |||||
* | support bytes-like keys in CMAC and HMAC contexts (#4701) | Paul Kehrer | 2019-01-16 | 1 | -1/+2 |
| | |||||
* | Check for CMAC_Init errors. (#4232) | David Benjamin | 2018-05-12 | 1 | -1/+2 |
| | |||||
* | move MACContext to mac.py and eliminate interfaces.py (#3631) | Paul Kehrer | 2017-05-29 | 1 | -2/+2 |
| | | | | | | | | | | | | | * move MACContext to mac.py and eliminate interfaces.py finally * improve title * re-add and deprecate interfaces.MACContext * use pytest.warns instead of deprecated_call The pytest docs insist that deprecation warnings are handled differently and that you should use deprecated_call, but this works so okay then | ||||
* | convert the rest of the openssl backend to using openssl_assert | Paul Kehrer | 2015-09-25 | 1 | -4/+4 |
| | |||||
* | Update the license header for every source file, as well as the documentation. | Alex Gaynor | 2014-11-16 | 1 | -12/+3 |
| | | | | Fixes #1209 | ||||
* | Move the cryptography package into a src/ subdirectory | Donald Stufft | 2014-11-13 | 1 | -0/+89 |
Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py. |