https://bugzilla.mindrot.org/show_bug.cgi?id=3306

            Bug ID: 3306
           Summary: test_kex.c should check #ifdef USE_SNTRUP761X25519
           Product: Portable OpenSSH
           Version: 8.6p1
          Hardware: Other
                OS: Windows 10
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Regression tests
          Assignee: [email protected]
          Reporter: [email protected]

V8_5 introduced an experimental key exchange method
[email protected] which is disabled by default.

test_kex.c assume the new kex method is enabled which is not true.

Code change - 
https://github.com/openssh/openssh-portable/blob/e86968280e358e62649d268d41f698d64d0dc9fa/regress/unittests/kex/test_kex.c#L205

From
    do_kex("[email protected]");

To
#ifdef USE_SNTRUP761X25519
        do_kex("[email protected]");
#endif

-- 
You are receiving this mail because:
You are watching the assignee of the bug.
_______________________________________________
openssh-bugs mailing list
[email protected]
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to