diff options
author | Tin Lam <tinlam@gmail.com> | 2017-03-30 13:17:44 -0500 |
---|---|---|
committer | Tin Lam <tin@irrational.io> | 2017-05-22 16:52:37 -0500 |
commit | e23cb36ac03c5e3a368cb8c493927cf8babc8dbc (patch) | |
tree | 80e39516fc574f8e661f1561b82ae79ee5ef1c21 /test-requirements.txt | |
parent | 45eeab2a988a016afbb053e6d1e60c016ad5aa95 (diff) | |
download | keystonemiddleware-e23cb36ac03c5e3a368cb8c493927cf8babc8dbc.tar.gz |
Replace pycrypto with cryptography
The pycrypto library is unmaintained, and keystonemiddleware currently
uses pycrypto to encrypt and decrpyt things before caching them.
This patch set removes the pycrypto dependency and updates the code
to use the cryptography library. See [1]. Replacing the cryptographic
library is backward compatible. See [2].
[1] http://lists.openstack.org/pipermail/openstack-dev/2017-March/113568.html
[2] http://paste.openstack.org/show/610186/
Change-Id: Iced7f5115e49ccf4f7f5bf6813cb5988b95c248b
Closes-Bug: #1677308
Diffstat (limited to 'test-requirements.txt')
-rw-r--r-- | test-requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-requirements.txt b/test-requirements.txt index 55b1c2b..0320253 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -6,10 +6,10 @@ hacking<0.11,>=0.10.0 flake8-docstrings==0.2.1.post1 # MIT coverage!=4.4,>=4.0 # Apache-2.0 +cryptography>=1.6 # BSD/Apache-2.0 docutils>=0.11 # OSI-Approved Open Source, Public Domain fixtures>=3.0.0 # Apache-2.0/BSD mock>=2.0 # BSD -pycrypto>=2.6 # Public Domain oslosphinx>=4.7.0 # Apache-2.0 oslotest>=1.10.0 # Apache-2.0 reno>=1.8.0 # Apache-2.0 |