diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2023-02-17 05:22:50 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-02-17 05:43:57 +0100 |
commit | 2a7e3449908571af601a4c2d12ab140096442e47 (patch) | |
tree | 7f6c196e6f3a5c3c9f82c7596ea1a4871195c402 /kex.c | |
parent | upstream: Remove now-unused compat bit SSH_BUG_BIGENDIANAES. This (diff) | |
download | openssh-2a7e3449908571af601a4c2d12ab140096442e47.tar.xz openssh-2a7e3449908571af601a4c2d12ab140096442e47.zip |
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.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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: |