Displaying 1 result from an estimated 1 matches for "_kexopt".
2024 May 21
2
[Bug 3692] New: rekey.sh doesn't actually test different algorithms
...x
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: Regression tests
          Assignee: unassigned-bugs at mindrot.org
          Reporter: nreilly at blackberry.com
In rekey.sh there is a function ssh_data_rekeying(). It sets the first
parameter as _kexopt but then 2 lines later tests _kexopts - note the
trailing "s":
ssh_data_rekeying()
{
        _kexopt=$1 ; shift
        _opts="$@"
        if ! test -z "$_kexopts" ; then
                cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy
                echo "$_kexopt"...