Open krishnasarch opened 2 years ago
Will there be an upgrade to PGPy that gets rid use of these algorithms that are being deprecated by Cryptography?
@Commod0re now that this package is active again - will there be any movement toward dropping use of these deprecated algorithms from Cryptography?
Hi, Any update on this?
Any update here? This was not fixed with the 0.6.0 release.
We are also waiting for the update
Warnings can be turned off. Please try the following code:
import warnings
warnings.filterwarnings('ignore', '.*deprecated.*',)
@pic2debug , Unfortunately instead of fixing deprecation and see what is deprecating, you propose to just ignore all deprecation warnings?
On the fast-paced projects people usually do not ignore warnings but fix the deprecation instead to make sure that they are ready to the next upgrade when the package upgraded. These warnings are not harmful for the app, therefore why we should "hide" them?
But anyways, @pic2debug , thanks for you input, maybe for someone it will be useful!
This is my fix for now, not great, but at least it stops spamming output!
import warnings
from cryptography.utils import CryptographyDeprecationWarning
warnings.filterwarnings("ignore", category=CryptographyDeprecationWarning, module="pgpy")
If this project is not maintained, then at some point in time we will have to switch to something else...
After cryptography 45.0.0
these warning will become errors and the project will be unusable.
That's why we are trying to reach the maintainers to either fix the issue and release new version, or add someone from active people to maintainers.
NOTE: we are currently at cryptography==43.0.0
already ❗
To the SecurityInnovation team:
We understand that priorities change, that you can't keep maintaining something you yourselves may no longer use. Such is life. In a situation like that, please open the door for maintainers to apply so they can get the job done instead. Thank you.
@Commod0re I would like to contribute with a fix to this issue, can you indicate me how to proceed?
Python version 3.10.5 PGPy version 0.5.4 cryptography version 37.0.2
Getting the desired output but there are Deprecation warnings in the terminal
According to Cryptography.io's Changelog of version 37.0.0 they've deprecated CAT5, IDEA, Bowlfish algorithms.