YJWANG

[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생 본문

60.Cloud/60.OpenStack

[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생

왕영주 2021. 7. 1. 09:55

Magnum project를 사용 시 python-magnumclient 를 설치하게되는데 이 때 아래와 같이 메시지가 발생할 수 있다.

# openstack coe
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
  from cryptography.utils import int_from_bytes
/usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
  from cryptography.utils import int_from_bytes

 

https://github.com/matrix-org/synapse/issues/9454

 

Warning: int_from_bytes is deprecated, use int.from_bytes instead · Issue #9454 · matrix-org/synapse

Description While using synapse to generate a config file, the following warning is thrown out: /usr/lib/python3.8/site-packages/twisted/conch/ssh/common.py:15: CryptographyDeprecationWarning: int_...

github.com

 

 

이는 상위 버전의 cryptography 패키지에서 발생하는 것으로 보이며 workaround를 통해 조치할 수 있다.

# pip3 uninstall matrix-synapse twisted cryptography bcrypt cftp

# pip3 install cryptography==3.2

 

이후 발생하지 않는다

혹은 문제가 있는 것이 아니므로 조치하지 않아도 된다.

반응형