summaryrefslogtreecommitdiff
path: root/src/cryptography/utils.py
Commit message (Collapse)AuthorAgeFilesLines
...
* use signature so stuff works on 3.6 -- fixes #2382Alex Gaynor2015-09-291-3/+8
|
* resolve incorrect docs/naming around DSA (r, s) tuple encode/decodePaul Kehrer2015-08-101-0/+1
|
* py3 int.to_bytes is dead to mePaul Kehrer2015-08-081-10/+4
|
* refactor integer to bytes as utils.int_to_bytesPaul Kehrer2015-08-081-0/+13
|
* move int_from_bytes so we can use it elsewherePaul Kehrer2015-06-271-0/+21
|
* deprecation dance.Paul Kehrer2015-05-131-2/+1
| | | | fixes #1950
* add changelog entry, set proper deprecation warningPaul Kehrer2015-04-141-1/+1
|
* Add DeprecatedIn09Steven Buss2015-04-131-0/+1
|
* Do the deprecation dancePaul Kehrer2015-03-091-2/+1
|
* Use the official API for deprecation with the MACContext renameAlex Gaynor2015-03-011-3/+1
|
* Move DSA* interfaces to interfaces.dsa moduleAlex Stapleton2015-01-221-0/+2
|
* flake8Alex Gaynor2015-01-011-1/+0
|
* Added a utility for deprecating a module attributeAlex Gaynor2015-01-011-4/+38
|
* remove fully deprecated items from 0.6 deprecation cyclePaul Kehrer2014-12-181-1/+2
|
* A handful of tiny fixesAlex Gaynor2014-12-151-3/+4
|
* Update the license header for every source file, as well as the documentation.Alex Gaynor2014-11-161-12/+3
| | | | Fixes #1209
* Move the cryptography package into a src/ subdirectoryDonald Stufft2014-11-131-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.