i'm using python 2.7.12 on a ubuntu16.04 trying to use the Paramiko package ( just need remote ssh command execution)
my code is
import paramiko
host = "random_host"
ssh = paramiko.SSHCLient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(host)
and the error i get is:
crypthography.exceptions.UnsupportedAlgorithm: this backend does not support this elliptic curve.
please help
and if there is a better alternative for just remote ssh commands , do tell ( i tried fabric but it still fails when i try to connect)