Twofish is the successor to Blowfish and was a finalist in the National Institute of Technology and Science's (NIST's) search for an algorithm to replace DES.| Encryption Consulting
If you are getting a warning similar to below when running a Python3 application: /usr/lib/python3/dist-packages/paramiko/transport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated This can be resolved by upgrading to the latest paramiko module. # check current version then upgrade pip3 show paramiko pip3 install paramiko --upgrade # check upgraded version pip3 show paramiko In my case, this ... Python: fixing ‘CryptographyDeprecationWarning: Blowfish has been deprecated’| Fabian Lee : Software Engineer