aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_cryptography_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #4076 - simplify the implementation of int_from_bytes on python2 (#4077)Alex Gaynor2018-01-101-0/+2
| | | | | | | | * Fixes #4076 - simplify the implementation of int_from_bytes on python2 * whitespace * Added a test
* Inline calls to bit_length now that it's trivial (#3966)Alex Gaynor2017-10-121-0/+5
| | | | | | | | * Inline calls to bit_length now that it's trivial * unused imports * An comment
* Fixed #3747 -- cache extensions on x.509 objects (#3769)Alex Gaynor2017-07-081-0/+47
| | | | | | | | | | * Fixed #3747 -- cache extensions on x.509 objects * be kind to cpython, save a dict lookup * flake8 * changelog
* fix a regression in int_from_bytes (#3316)Paul Kehrer2016-12-131-0/+11
* fix a regression in int_from_bytes * add a new test file