emre/storm

Blowfish is deprecated message

Opened this issue · 1 comments

On macOS Ventura I am seeing the following message when running storm add:

/opt/homebrew/Cellar/stormssh/0.7.0_9/libexec/lib/python3.10/site-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated
  "class": algorithms.Blowfish,

It seems that this is an issue with the paramiko package. Found in that package git is a workaround for apps that use it:

import warnings
from cryptography.utils import CryptographyDeprecationWarning
with warnings.catch_warnings():
    warnings.filterwarnings('ignore', category=CryptographyDeprecationWarning)
    import paramiko