summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeck <>2024-03-26 02:43:56 +0000
committerbeck <>2024-03-26 02:43:56 +0000
commit04a8708bb4f7fc690e050b5d45281e1e214735ff (patch)
treefebb8561b2a22b0ace9ef0291b8aa6678b7ecb14
parent3f508b41e33a97172c7c36238e28ddfb36bc32fd (diff)
downloadopenbsd-04a8708bb4f7fc690e050b5d45281e1e214735ff.tar.gz
openbsd-04a8708bb4f7fc690e050b5d45281e1e214735ff.tar.bz2
openbsd-04a8708bb4f7fc690e050b5d45281e1e214735ff.zip
Fix expected client hello value to allow for supported_groups change.
ok jsing@
-rw-r--r--src/regress/lib/libssl/tlsext/tlsexttest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/tlsext/tlsexttest.c b/src/regress/lib/libssl/tlsext/tlsexttest.c
index 3888cb7ded..c7983833dc 100644
--- a/src/regress/lib/libssl/tlsext/tlsexttest.c
+++ b/src/regress/lib/libssl/tlsext/tlsexttest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tlsexttest.c,v 1.85 2024/03/25 10:19:14 jsing Exp $ */ 1/* $OpenBSD: tlsexttest.c,v 1.86 2024/03/26 02:43:56 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> 4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org>
@@ -3189,9 +3189,9 @@ test_tlsext_srtp_server(void)
3189#endif /* OPENSSL_NO_SRTP */ 3189#endif /* OPENSSL_NO_SRTP */
3190 3190
3191static const unsigned char tlsext_clienthello_default[] = { 3191static const unsigned char tlsext_clienthello_default[] = {
3192 0x00, 0x34, 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, 3192 0x00, 0x34, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08,
3193 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x1d, 3193 0x00, 0x1d, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19,
3194 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x23, 3194 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, 0x00, 0x23,
3195 0x00, 0x00, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x16, 3195 0x00, 0x00, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x16,
3196 0x08, 0x06, 0x06, 0x01, 0x06, 0x03, 0x08, 0x05, 3196 0x08, 0x06, 0x06, 0x01, 0x06, 0x03, 0x08, 0x05,
3197 0x05, 0x01, 0x05, 0x03, 0x08, 0x04, 0x04, 0x01, 3197 0x05, 0x01, 0x05, 0x03, 0x08, 0x04, 0x04, 0x01,