summaryrefslogtreecommitdiff
path: root/tests/tls13/prf.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tls13/prf.c')
-rw-r--r--tests/tls13/prf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tls13/prf.c b/tests/tls13/prf.c
index 1cd3f9e5ec..003ed69b01 100644
--- a/tests/tls13/prf.c
+++ b/tests/tls13/prf.c
@@ -196,10 +196,11 @@ static void client(int fd)
*/
gnutls_init(&session, GNUTLS_CLIENT);
- /* Use default priorities */
+ /* Use default priorities, sets %NO_EXTS_SHUFFLE */
ret = gnutls_priority_set_direct(session,
- "NONE:+VERS-TLS1.3:+AES-256-GCM:+AEAD:+SIGN-RSA-PSS-RSAE-SHA384:+GROUP-SECP256R1",
+ "NONE:+VERS-TLS1.3:+AES-256-GCM:+AEAD:+SIGN-RSA-PSS-RSAE-SHA384:+GROUP-SECP256R1:%NO_EXTS_SHUFFLE",
&err);
+
if (ret < 0) {
fail("client: priority set failed (%s): %s\n",
gnutls_strerror(ret), err);