Displaying 3 results from an estimated 3 matches for "mac_alg_list".
2020 Feb 06
3
Call for testing: OpenSSH 8.2
On 2020-02-06 at 13:28 +1100, Darren Tucker wrote:
> Like this.
> --- a/sshd_config.5
> +++ b/sshd_config.5
The ssh_config.5 also has a copy of this and presumably needs the same
change, unless I've misunderstood.
-Phil
2023 Oct 30
6
[Bug 3630] New: sshd crash on OpenSSH 9.5 / OpenBSD 7.4
https://bugzilla.mindrot.org/show_bug.cgi?id=3630
Bug ID: 3630
Summary: sshd crash on OpenSSH 9.5 / OpenBSD 7.4
Product: Portable OpenSSH
Version: 9.5p1
Hardware: MIPS64
OS: OpenBSD
Status: NEW
Severity: enhancement
Priority: P5
Component: sshd
Assignee: unassigned-bugs at
2020 Jun 01
3
"ssh -Q key" does not list rsa-sha2 algorithms
...(strcmp(optarg, "cipher") == 0)
cp = cipher_alg_list('\n', 0);
else if (strcmp(optarg, "cipher-auth") == 0)
cp = cipher_alg_list('\n', 1);
else if (strcmp(optarg, "mac") == 0)
cp = mac_alg_list('\n');
else if (strcmp(optarg, "kex") == 0)
cp = kex_alg_list('\n');
else if (strcmp(optarg, "key") == 0)
- cp = sshkey_alg_list(0, 0, 0, '\n');
+ cp = sshkey_alg_list(0, 0, 1, '\n...