diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2024-03-26 02:43:57 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2024-03-26 02:43:57 +0000 |
commit | 0f0e5975acb4fcd9e7e06c3b342ab6b5fd33120c (patch) | |
tree | 141456c18d3e477250ea4a16f607a4b4fec7adc1 /regress/lib | |
parent | 5f708bdc86aafa24e24903f1355b842cec40b6f9 (diff) |
Fix expected client hello value to allow for supported_groups change.
ok jsing@
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libssl/tlsext/tlsexttest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libssl/tlsext/tlsexttest.c b/regress/lib/libssl/tlsext/tlsexttest.c index 3888cb7dedc..c7983833dcc 100644 --- a/regress/lib/libssl/tlsext/tlsexttest.c +++ b/regress/lib/libssl/tlsext/tlsexttest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tlsexttest.c,v 1.85 2024/03/25 10:19:14 jsing Exp $ */ +/* $OpenBSD: tlsexttest.c,v 1.86 2024/03/26 02:43:56 beck Exp $ */ /* * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> @@ -3189,9 +3189,9 @@ test_tlsext_srtp_server(void) #endif /* OPENSSL_NO_SRTP */ static const unsigned char tlsext_clienthello_default[] = { - 0x00, 0x34, 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, - 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x1d, - 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x23, + 0x00, 0x34, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, + 0x00, 0x1d, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, + 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x16, 0x08, 0x06, 0x06, 0x01, 0x06, 0x03, 0x08, 0x05, 0x05, 0x01, 0x05, 0x03, 0x08, 0x04, 0x04, 0x01, |