summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2023-02-17 04:22:50 +0000
committerDarren Tucker <dtucker@dtucker.net>2023-02-17 15:43:57 +1100
commit2a7e3449908571af601a4c2d12ab140096442e47 (patch)
tree7f6c196e6f3a5c3c9f82c7596ea1a4871195c402 /kex.c
parent0833ccf2c8b7ae08b296c06f17bd53e3ab94b0b0 (diff)
downloadopenssh-git-2a7e3449908571af601a4c2d12ab140096442e47.tar.gz
upstream: Remove now-unused compat bit SSH_BUG_RSASIGMD5. The code
to set this was removed in OpenSSH 7.7 when support for SSH implementations dating back to before RFC standardization were removed. "burn it all" djm@ OpenBSD-Commit-ID: 6330935fbe23dd00be79891505e06d1ffdac7cda
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/kex.c b/kex.c
index 8cdefcf7..7731ca90 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.c,v 1.173 2022/11/07 10:05:38 dtucker Exp $ */
+/* $OpenBSD: kex.c,v 1.174 2023/02/17 04:22:50 dtucker Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
*
@@ -1404,10 +1404,6 @@ kex_exchange_identification(struct ssh *ssh, int timeout_ms,
r = SSH_ERR_CONN_CLOSED; /* XXX */
goto out;
}
- if ((ssh->compat & SSH_BUG_RSASIGMD5) != 0) {
- logit("Remote version \"%.100s\" uses unsafe RSA signature "
- "scheme; disabling use of RSA keys", remote_version);
- }
/* success */
r = 0;
out: