]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Wrap sntrup761x25519 inside ifdef.
authorDarren Tucker <dtucker@dtucker.net>
Thu, 29 Apr 2021 03:01:50 +0000 (13:01 +1000)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 29 Apr 2021 03:01:50 +0000 (13:01 +1000)
From balu.gajjala at gmail.com via bz#3306.

regress/unittests/kex/test_kex.c

index 06bd001aeaedf96477e297b6665d648e51a62d5c..3bd71a9f4d5613da399e5bdd3bcdf9733bf4d902 100644 (file)
@@ -202,6 +202,8 @@ kex_tests(void)
        do_kex("diffie-hellman-group-exchange-sha1");
        do_kex("diffie-hellman-group14-sha1");
        do_kex("diffie-hellman-group1-sha1");
+# ifdef USE_SNTRUP761X25519
        do_kex("sntrup761x25519-sha512@openssh.com");
+# endif /* USE_SNTRUP761X25519 */
 #endif /* WITH_OPENSSL */
 }