diff options
author | jsing <> | 2021-02-08 17:21:50 +0000 |
---|---|---|
committer | jsing <> | 2021-02-08 17:21:50 +0000 |
commit | 96d7772264c350d5ad3e75615e33809e25be2ba3 (patch) | |
tree | db77279a91b135de9efd5ce5a51c4f68d7226818 /src/regress/lib | |
parent | 926ce18e7111ed216cb29761d69533568f55f9e4 (diff) | |
download | openbsd-96d7772264c350d5ad3e75615e33809e25be2ba3.tar.gz openbsd-96d7772264c350d5ad3e75615e33809e25be2ba3.tar.bz2 openbsd-96d7772264c350d5ad3e75615e33809e25be2ba3.zip |
Update DTLS client hello due to ECC changes.
Diffstat (limited to 'src/regress/lib')
-rw-r--r-- | src/regress/lib/libssl/client/clienttest.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/regress/lib/libssl/client/clienttest.c b/src/regress/lib/libssl/client/clienttest.c index 51b23986fd..a58019a2b6 100644 --- a/src/regress/lib/libssl/client/clienttest.c +++ b/src/regress/lib/libssl/client/clienttest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: clienttest.c,v 1.27 2021/01/22 15:54:32 tb Exp $ */ | 1 | /* $OpenBSD: clienttest.c,v 1.28 2021/02/08 17:21:50 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -42,9 +42,9 @@ static unsigned char cipher_list_dtls1[] = { | |||
42 | 42 | ||
43 | static unsigned char client_hello_dtls1[] = { | 43 | static unsigned char client_hello_dtls1[] = { |
44 | 0x16, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, | 44 | 0x16, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, |
45 | 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, | 45 | 0x00, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0x00, |
46 | 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 46 | 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
47 | 0x54, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, | 47 | 0x68, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, |
48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
@@ -54,7 +54,10 @@ static unsigned char client_hello_dtls1[] = { | |||
54 | 0x13, 0xc0, 0x09, 0x00, 0x33, 0x00, 0x45, 0x00, | 54 | 0x13, 0xc0, 0x09, 0x00, 0x33, 0x00, 0x45, 0x00, |
55 | 0x2f, 0x00, 0x41, 0xc0, 0x12, 0xc0, 0x08, 0x00, | 55 | 0x2f, 0x00, 0x41, 0xc0, 0x12, 0xc0, 0x08, 0x00, |
56 | 0x16, 0x00, 0x0a, 0x00, 0xff, 0x01, 0x00, 0x00, | 56 | 0x16, 0x00, 0x0a, 0x00, 0xff, 0x01, 0x00, 0x00, |
57 | 0x04, 0x00, 0x23, 0x00, 0x00, | 57 | 0x18, 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, 0x00, |
58 | 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x1d, 0x00, | ||
59 | 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x23, 0x00, | ||
60 | 0x00, | ||
58 | }; | 61 | }; |
59 | 62 | ||
60 | static unsigned char cipher_list_tls10[] = { | 63 | static unsigned char cipher_list_tls10[] = { |