Skip to content
This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Blowfish is deprecated message #185

Open
intrepidsilence opened this issue Aug 17, 2022 · 1 comment
Open

Blowfish is deprecated message #185

intrepidsilence opened this issue Aug 17, 2022 · 1 comment

Comments

@intrepidsilence
Copy link

intrepidsilence commented Aug 17, 2022

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,
@intrepidsilence intrepidsilence changed the title Blofish is deprecated message Blowfish is deprecated message Sep 22, 2022
@intrepidsilence
Copy link
Author

intrepidsilence commented Sep 22, 2022

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant