Re: [Qemu-devel] [PATCH v3] ssh: switch from libssh2 to libssh

2018-01-18 Thread Pino Toscano
On Monday, 18 December 2017 20:55:19 CET Jeff Cody wrote: > On Wed, Nov 15, 2017 at 05:26:48PM +0100, Pino Toscano wrote: > > Rewrite the implementation of the ssh block driver to use libssh instead > > of libssh2. The libssh library has various advantages over libssh2: > > - easier API for authen

Re: [Qemu-devel] [PATCH v3] ssh: switch from libssh2 to libssh

2017-12-18 Thread Jeff Cody
On Wed, Nov 15, 2017 at 05:26:48PM +0100, Pino Toscano wrote: > Rewrite the implementation of the ssh block driver to use libssh instead > of libssh2. The libssh library has various advantages over libssh2: > - easier API for authentication (for example for using ssh-agent) > - easier API for know

Re: [Qemu-devel] [PATCH v3] ssh: switch from libssh2 to libssh

2017-11-15 Thread Richard W.M. Jones
On Wed, Nov 15, 2017 at 05:26:48PM +0100, Pino Toscano wrote: > Rewrite the implementation of the ssh block driver to use libssh instead > of libssh2. The libssh library has various advantages over libssh2: > - easier API for authentication (for example for using ssh-agent) > - easier API for know

[Qemu-devel] [PATCH v3] ssh: switch from libssh2 to libssh

2017-11-15 Thread Pino Toscano
Rewrite the implementation of the ssh block driver to use libssh instead of libssh2. The libssh library has various advantages over libssh2: - easier API for authentication (for example for using ssh-agent) - easier API for known_hosts handling - supports newer types of keys in known_hosts Kerber