summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-09-12 01:30:10 +0000
committerDamien Miller <djm@mindrot.org>2018-09-12 16:49:21 +1000
commit357128ac48630a9970e3af0e6ff820300a28da47 (patch)
treee11faeddd0368f69589bb6151d8afa71b54b27ed /ssh.c
parent9405c6214f667be604a820c6823b27d0ea77937d (diff)
upstream: Add "ssh -Q sig" to allow listing supported signature
algorithms ok markus@ OpenBSD-Commit-ID: 7a8c6eb6c249dc37823ba5081fce64876d10fe2b
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index ce628848c..3307a5e34 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.490 2018/07/27 05:34:42 dtucker Exp $ */ 1/* $OpenBSD: ssh.c,v 1.491 2018/09/12 01:30:10 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -739,8 +739,15 @@ main(int ac, char **av)
739 cp = sshkey_alg_list(1, 0, 0, '\n'); 739 cp = sshkey_alg_list(1, 0, 0, '\n');
740 else if (strcmp(optarg, "key-plain") == 0) 740 else if (strcmp(optarg, "key-plain") == 0)
741 cp = sshkey_alg_list(0, 1, 0, '\n'); 741 cp = sshkey_alg_list(0, 1, 0, '\n');
742 else if (strcmp(optarg, "protocol-version") == 0) { 742 else if (strcmp(optarg, "sig") == 0)
743 cp = sshkey_alg_list(0, 0, 1, '\n');
744 else if (strcmp(optarg, "protocol-version") == 0)
743 cp = xstrdup("2"); 745 cp = xstrdup("2");
746 else if (strcmp(optarg, "help") == 0) {
747 cp = xstrdup(
748 "cipher\ncipher-auth\nkex\nkey\n"
749 "key-cert\nkey-plain\nmac\n"
750 "protocol-version\nsig");
744 } 751 }
745 if (cp == NULL) 752 if (cp == NULL)
746 fatal("Unsupported query \"%s\"", optarg); 753 fatal("Unsupported query \"%s\"", optarg);