We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The python-crypto library is problematic for a couple reasons, pulling in extra crypo libs (libtommath & libtomcrypt) and lacking FIPS compliance.
We use it in ceph_iscsi_config/client.py:
ceph_iscsi_config/client.py
from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_OAEP
This is the only location, right? How can we replace this with the cryptography package instead? (python-cryptography is available in RHEL 7)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The python-crypto library is problematic for a couple reasons, pulling in extra crypo libs
(libtommath & libtomcrypt) and lacking FIPS compliance.
We use it in
ceph_iscsi_config/client.py
:This is the only location, right? How can we replace this with the cryptography package instead? (python-cryptography is available in RHEL 7)
The text was updated successfully, but these errors were encountered: