hi
i downloaded paramiko and was trying to create private/pub key pairs
from the docs, i use this method to create private key
import paramiko
k = paramiko.RSAKey .generate(1024)
k.write_private _key_file("test _priv")
How do i generate the public key for this ?
thanks
i downloaded paramiko and was trying to create private/pub key pairs
from the docs, i use this method to create private key
import paramiko
k = paramiko.RSAKey .generate(1024)
k.write_private _key_file("test _priv")
How do i generate the public key for this ?
thanks
Comment