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 jbar...@bu.edu wrote: On Wed, Sep 8, 2010 at 6:49 PM, Robey Pointer robeypoin...@gmail.com wrote: It may be as simple as adding another line to the top of pkey.py, in the

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 robeypoin...@gmail.com 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

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 livre...@gmail.com 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