Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move the cryptography package into a src/ subdirectory | Donald Stufft | 2014-11-13 | 1 | -124/+0 |
| | | | | | | | | | | | | | 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. | ||||
* | Make exceptions end with a period consistently | Ayrx | 2014-05-18 | 1 | -6/+6 |
| | |||||
* | We don't need six.binary_type, it's always bytes | Alex Gaynor | 2014-05-17 | 1 | -4/+4 |
| | |||||
* | Simplified exception message | Ayrx | 2014-05-17 | 1 | -16/+4 |
| | |||||
* | Fixed TypeError and added documentation | Ayrx | 2014-05-17 | 1 | -10/+14 |
| | |||||
* | Minor fixes | Ayrx | 2014-05-09 | 1 | -7/+1 |
| | |||||
* | Modified HKDF to use HKDFExpand | Ayrx | 2014-05-07 | 1 | -34/+47 |
| | |||||
* | Renamed HKDFExpandOnly to HKDFExpand | Ayrx | 2014-05-07 | 1 | -1/+1 |
| | |||||
* | Fixed test failures | Ayrx | 2014-05-06 | 1 | -0/+1 |
| | |||||
* | Added HKDFExpandOnly | Ayrx | 2014-05-05 | 1 | -0/+22 |
| | |||||
* | Update tests and raise sites | Alex Stapleton | 2014-03-27 | 1 | -2/+4 |
| | |||||
* | Fixed #809 -- switch back to always using UnsupportedAlgorithm | Alex Gaynor | 2014-03-27 | 1 | -2/+2 |
| | |||||
* | Small style cleanup for imports | Alex Gaynor | 2014-03-15 | 1 | -2/+2 |
| | |||||
* | Removed newline from start of methods | Ayrx | 2014-03-15 | 1 | -1/+0 |
| | |||||
* | Added backend check to kdf primitives | Ayrx | 2014-03-15 | 1 | -1/+9 |
| | |||||
* | Added future imports and licenses that are missing | Alex Gaynor | 2014-03-08 | 1 | -0/+2 |
| | |||||
* | Fix typo | David Reid | 2014-02-03 | 1 | -1/+1 |
| | |||||
* | Import exception classes instead of the exceptions module. | David Reid | 2014-02-03 | 1 | -7/+4 |
| | |||||
* | Don't expose extract and expand on this class yet because we don't know how ↵ | David Reid | 2014-02-03 | 1 | -16/+0 |
| | | | | best to expose verify functionality, continue testing the stages using the private methods. | ||||
* | Remove redundant type checks per @alex and @reaperhulk. | David Reid | 2014-02-03 | 1 | -12/+0 |
| | |||||
* | Consistently use double quotes. | David Reid | 2014-02-03 | 1 | -1/+1 |
| | |||||
* | Aggressively type-check for text. | David Reid | 2014-02-03 | 1 | -0/+26 |
| | |||||
* | Actually register the interface. | David Reid | 2014-02-03 | 1 | -1/+5 |
| | |||||
* | Expand, extract, verify. | David Reid | 2014-02-03 | 1 | -4/+19 |
| | |||||
* | Add test cases for length checking and already finalized. | David Reid | 2014-02-03 | 1 | -3/+25 |
| | |||||
* | Closer to proposed interface in #513. | David Reid | 2014-02-03 | 1 | -27/+29 |
| | |||||
* | Break up hkdf_derive into hkdf_extract and hkdf_expand. | David Reid | 2014-02-03 | 1 | -23/+24 |
| | | | | | | | | Testing each individually against all the vectors and actually asserting about the intermediate state. hkdf_derive is now just a helper function which copes with the default arguments. | ||||
* | Refactor HKDF support and provide vectors for tests. | David Reid | 2014-02-03 | 1 | -0/+52 |