Re: paramiko public key

2006-12-13 Thread eight02645999
hg wrote: > [EMAIL PROTECTED] wrote: > > > paramiko > http://www.lag.net/paramiko/docs/ > > __str__ ? hi thanks for the tip i done up a function to generate priv/pub key pairs like this def keygen(bits,fil,password=None): k = paramiko.RSAKey.generate(bits) k.write_private_key_fil

Re: paramiko public key

2006-12-12 Thread hg
[EMAIL PROTECTED] wrote: > paramiko http://www.lag.net/paramiko/docs/ __str__ ? -- http://mail.python.org/mailman/listinfo/python-list

paramiko public key

2006-12-11 Thread eight02645999
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 -- http://mail.python.org/ma