Re: [PATCH] block/ssh: add support for sha256 host key fingerprints

2021-06-30 Thread Kevin Wolf
Am 22.06.2021 um 13:51 hat Daniel P. Berrangé geschrieben: > Currently the SSH block driver supports MD5 and SHA1 for host key > fingerprints. This is a cryptographically sensitive operation and > so these hash algorithms are inadequate by modern standards. This > adds support for SHA256 which has

Re: [PATCH] block/ssh: add support for sha256 host key fingerprints

2021-06-22 Thread Philippe Mathieu-Daudé
On 6/22/21 1:51 PM, Daniel P. Berrangé wrote: > Currently the SSH block driver supports MD5 and SHA1 for host key > fingerprints. This is a cryptographically sensitive operation and > so these hash algorithms are inadequate by modern standards. This > adds support for SHA256 which has been supporte

Re: [PATCH] block/ssh: add support for sha256 host key fingerprints

2021-06-22 Thread Richard W.M. Jones
On Tue, Jun 22, 2021 at 12:51:56PM +0100, Daniel P. Berrangé wrote: > Currently the SSH block driver supports MD5 and SHA1 for host key > fingerprints. This is a cryptographically sensitive operation and > so these hash algorithms are inadequate by modern standards. This > adds support for SHA256 w

[PATCH] block/ssh: add support for sha256 host key fingerprints

2021-06-22 Thread Daniel P . Berrangé
Currently the SSH block driver supports MD5 and SHA1 for host key fingerprints. This is a cryptographically sensitive operation and so these hash algorithms are inadequate by modern standards. This adds support for SHA256 which has been supported in libssh since the 0.8.1 release. Signed-off-by: D