Python Forum

Full Version: encryption and decryption with python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi;

encryption and decryption with python the best method.
I tried two methods.which of them is more stable and secure
which of these should be used (fernet and onetimepad)
There are many encryption packages available, you can start here: https://pypi.org/search/?q=crypto&o=-zscore
Some of these probably allow choice of encryption type.
Couldn't find a direct comparison between one-time pad and fernet but this: https://www.astesj.com/publications/ASTESJ_020506.pdf
compares one-time pad to KCT, following the references may find you what you want.