]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
tests: verify that no signature algorithms with (D)TLS 1.2 will cause an error
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Wed, 12 Jul 2017 11:38:39 +0000 (13:38 +0200)
committerNikos Mavrogiannopoulos <nmav@redhat.com>
Mon, 19 Feb 2018 14:29:33 +0000 (15:29 +0100)
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
tests/priorities.c

index 4d5c2bd322a86fe5604128cbe3566bf38e778a32..797c245039655c08a8c60278da379efd795eff9f 100644 (file)
@@ -150,4 +150,6 @@ void doit(void)
        try_prio("NORMAL:+RSA-EXPORT:+ARCFOUR-40", normal_cs, normal_ciphers, __LINE__);
 
        try_prio_err("NORMAL:-VERS-ALL:+VERS-TLS1.2:-SIGN-ALL:+SIGN-ECDSA-SECP256R1-SHA256", GNUTLS_E_NO_PRIORITIES_WERE_SET);
+       try_prio_err("NORMAL:-VERS-ALL:+VERS-TLS1.2:-SIGN-ALL", GNUTLS_E_NO_PRIORITIES_WERE_SET);
+       try_prio_err("NORMAL:-VERS-ALL:+VERS-DTLS1.2:-SIGN-ALL", GNUTLS_E_NO_PRIORITIES_WERE_SET);
 }