summaryrefslogtreecommitdiff
path: root/src/regress/lib
diff options
context:
space:
mode:
authorbeck <>2024-03-26 02:43:56 +0000
committerbeck <>2024-03-26 02:43:56 +0000
commitd59fda04e61e4b842e5dda7c6e18fd1e7da2d3cc (patch)
treefebb8561b2a22b0ace9ef0291b8aa6678b7ecb14 /src/regress/lib
parenta8e30fcbc007cf9ca032538900879a19999e0c29 (diff)
downloadopenbsd-d59fda04e61e4b842e5dda7c6e18fd1e7da2d3cc.tar.gz
openbsd-d59fda04e61e4b842e5dda7c6e18fd1e7da2d3cc.tar.bz2
openbsd-d59fda04e61e4b842e5dda7c6e18fd1e7da2d3cc.zip
Fix expected client hello value to allow for supported_groups change.
ok jsing@
Diffstat (limited to 'src/regress/lib')
-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,