Paramiko: “FutureWarning: CTR mode needs counter parameter”
问题 I am trying to use Paramiko in Python2 for transferring files through SFTP with private SSH key but it displays this warning: /usr/lib/python2.7/dist-packages/Crypto/Cipher/blockalgo.py:141: FutureWarning: CTR mode needs counter parameter, not IV self._cipher = factory.new(key, *args, **kwargs) In fact it sends the file to the server but can someone explain me what this warning means? Here is my code: t = paramiko.Transport((host, port)) key = paramiko.RSAKey.from_private_key_file("/path/to