Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | use signature so stuff works on 3.6 -- fixes #2382 | Alex Gaynor | 2015-09-29 | 1 | -3/+8 | |
| | ||||||
* | resolve incorrect docs/naming around DSA (r, s) tuple encode/decode | Paul Kehrer | 2015-08-10 | 1 | -0/+1 | |
| | ||||||
* | py3 int.to_bytes is dead to me | Paul Kehrer | 2015-08-08 | 1 | -10/+4 | |
| | ||||||
* | refactor integer to bytes as utils.int_to_bytes | Paul Kehrer | 2015-08-08 | 1 | -0/+13 | |
| | ||||||
* | move int_from_bytes so we can use it elsewhere | Paul Kehrer | 2015-06-27 | 1 | -0/+21 | |
| | ||||||
* | deprecation dance. | Paul Kehrer | 2015-05-13 | 1 | -2/+1 | |
| | | | | fixes #1950 | |||||
* | add changelog entry, set proper deprecation warning | Paul Kehrer | 2015-04-14 | 1 | -1/+1 | |
| | ||||||
* | Add DeprecatedIn09 | Steven Buss | 2015-04-13 | 1 | -0/+1 | |
| | ||||||
* | Do the deprecation dance | Paul Kehrer | 2015-03-09 | 1 | -2/+1 | |
| | ||||||
* | Use the official API for deprecation with the MACContext rename | Alex Gaynor | 2015-03-01 | 1 | -3/+1 | |
| | ||||||
* | Move DSA* interfaces to interfaces.dsa module | Alex Stapleton | 2015-01-22 | 1 | -0/+2 | |
| | ||||||
* | flake8 | Alex Gaynor | 2015-01-01 | 1 | -1/+0 | |
| | ||||||
* | Added a utility for deprecating a module attribute | Alex Gaynor | 2015-01-01 | 1 | -4/+38 | |
| | ||||||
* | remove fully deprecated items from 0.6 deprecation cycle | Paul Kehrer | 2014-12-18 | 1 | -1/+2 | |
| | ||||||
* | A handful of tiny fixes | Alex Gaynor | 2014-12-15 | 1 | -3/+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/+64 | |
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. |