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

2020-02-01 Thread Philippe Mathieu-Daudé
On Thu, Jun 20, 2019 at 10:36 PM Philippe Mathieu-Daudé wrote: > On 6/20/19 10:08 PM, 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

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

2019-06-20 Thread Philippe Mathieu-Daudé
On 6/20/19 10:08 PM, 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 known_hosts handling > -

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

2019-06-20 Thread Max Reitz
On 20.06.19 22:08, 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 known_hosts handling > -

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

2019-06-20 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 Use