Any idea how I can use the paramiko.RSAKey.from_private_key() function?
paramiko.RSAKey.from_private_key()
I know there is a from_private_key_file(), but I\'m interested in us
from_private_key_file()
Very old question, but in case it helps some unfortunate soul: my sol'n to this problem was to generate a new key with default options, using
ssh-keygen -t rsa
My previous key was generated using
ssh-keygen -t rsa -b 4096 -a 100
which paramiko complained about as it did for OP.