From 8463f5f791ced714d64ff891dc015666a971454b Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Mon, 3 Apr 2017 12:56:48 -0400 Subject: Add python-cryptography crypto provider The python-cryptography provider is added. It will use AES mechanisms by default. The eventual goal is to use this provider by default, and to obsolete the NSS CryptoProvider. Added some methods to determine which crypto keyset levels are supported by the crypto provider. Change-Id: Ifd47f0de765a9f0d157e8be678d5d06437bda819 --- base/common/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python/setup.py') diff --git a/base/common/python/setup.py b/base/common/python/setup.py index e0920c1e6..03391a602 100644 --- a/base/common/python/setup.py +++ b/base/common/python/setup.py @@ -124,7 +124,7 @@ and set up in less than an hour.""", keywords='pki x509 cert certificate', url='http://pki.fedoraproject.org/', packages=['pki', 'pki.cli'], - install_requires=['python-nss', 'requests', 'six'], + install_requires=['python-nss', 'requests', 'six', 'cryptography'], cmdclass={'version_info': VersionInfo}, classifiers=[ 'Development Status :: 5 - Production/Stable', -- cgit