Fixed bug where algorithm added in OpenSSH 10.x was being recommended for OpenSSH 9.x targets.

This commit is contained in:
Joe Testa
2026-07-03 10:58:48 -04:00
parent 1eb11050b3
commit 0f8bbdbfd9
2 changed files with 23 additions and 6 deletions
-2
View File
@@ -117,8 +117,6 @@ class Algorithms:
sshv, alg_db = alg_pair.sshv, alg_pair.db
rec[sshv] = {}
for alg_type, alg_list in alg_pair.items():
if alg_type == 'aut':
continue
rec[sshv][alg_type] = {'add': {}, 'del': {}, 'chg': {}}
for n, alg_desc in alg_db[alg_type].items():
versions = alg_desc[0]