Re: [paramiko] Unknown private key cipher AES-128-CBC

2010-09-10 Thread Ludovico Fischer
Hello, thank you, by applying this fix everything works perfectly for me. On 9 September 2010 16:30, James Bardin wrote: > On Wed, Sep 8, 2010 at 6:49 PM, Robey Pointer > wrote: > > > > It may be as simple as adding another line to the top of pkey.py, in the > _CIPHER_TABLE: > > > >'AE

Re: [paramiko] Unknown private key cipher AES-128-CBC

2010-09-09 Thread James Bardin
On Wed, Sep 8, 2010 at 6:49 PM, Robey Pointer wrote: > > It may be as simple as adding another line to the top of pkey.py, in the > _CIPHER_TABLE: > >        'AES-128-CBC': { 'cipher': AES, 'keysize': 16, 'blocksize': 16, > 'mode': AES.MODE_CBC } > > Could you try that and let me know if it fixe

Re: [paramiko] Unknown private key cipher AES-128-CBC

2010-09-08 Thread Robey Pointer
On 7 Sep 2010, at 08:05, James Bardin wrote: > On Mon, Sep 6, 2010 at 7:37 PM, Ludovico Fischer wrote: >> Hello, >> I am on Fedora 13 with Paramiko 1.7.6. I am using a key generated on Fedora >> 12. >> >> client = paramiko.SSHClient() >> client.load_system_host_keys() >> client.connect('hostname

Re: [paramiko] Unknown private key cipher AES-128-CBC

2010-09-07 Thread James Bardin
On Mon, Sep 6, 2010 at 7:37 PM, Ludovico Fischer wrote: > Hello, > I am on Fedora 13 with Paramiko 1.7.6. I am using a key generated on Fedora > 12. > > client = paramiko.SSHClient() > client.load_system_host_keys() > client.connect('hostname', username='autore') > > raises the following exception

[paramiko] Unknown private key cipher AES-128-CBC

2010-09-06 Thread Ludovico Fischer
Hello, I am on Fedora 13 with Paramiko 1.7.6. I am using a key generated on Fedora 12. client = paramiko.SSHClient() client.load_system_host_keys() client.connect('hostname', username='autore') raises the following exception File "/usr/lib/python2.6/site-packages/paramiko/client.py", line 327,