Do not try to use SHA1 for host key ownership proof when we don't support it server-side
Related: rhbz#2088750
This commit is contained in:
parent
ebbbfce0aa
commit
42aa6f597e
@ -72,7 +72,7 @@ diff -up openssh-8.7p1/sshd.c.sshrsacheck openssh-8.7p1/sshd.c
|
||||
key = NULL;
|
||||
continue;
|
||||
}
|
||||
+ if (sshkey_type_plain(key->type) == KEY_RSA || sshkey_type_plain(key->type) == KEY_RSA_CERT) {
|
||||
+ if (key && (sshkey_type_plain(key->type) == KEY_RSA || sshkey_type_plain(key->type) == KEY_RSA_CERT)) {
|
||||
+ size_t sign_size = 0;
|
||||
+ u_char *tmp = NULL;
|
||||
+ u_char data[] = "Test SHA1 vector";
|
||||
|
Loading…
Reference in New Issue
Block a user