diff options
| author | jsing <> | 2020-08-09 16:26:57 +0000 |
|---|---|---|
| committer | jsing <> | 2020-08-09 16:26:57 +0000 |
| commit | 5ed2404527b31a0c74a8f1c1b195eadb070e32ec (patch) | |
| tree | 3e9c3ad0374d935ea89838e9e0859ea8a9c8528e | |
| parent | 610461717d9e11c24c70d266730243bd58f7c8ac (diff) | |
| download | openbsd-5ed2404527b31a0c74a8f1c1b195eadb070e32ec.tar.gz openbsd-5ed2404527b31a0c74a8f1c1b195eadb070e32ec.tar.bz2 openbsd-5ed2404527b31a0c74a8f1c1b195eadb070e32ec.zip | |
Update golden values to match P-521 being enabled by default in the client.
Diffstat (limited to '')
| -rw-r--r-- | src/regress/lib/libssl/tlsext/tlsexttest.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/regress/lib/libssl/tlsext/tlsexttest.c b/src/regress/lib/libssl/tlsext/tlsexttest.c index 90294592cf..69467533d2 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.42 2020/07/03 04:58:41 tb Exp $ */ | 1 | /* $OpenBSD: tlsexttest.c,v 1.43 2020/08/09 16:26:57 jsing 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> |
| @@ -470,10 +470,11 @@ test_tlsext_alpn_server(void) | |||
| 470 | */ | 470 | */ |
| 471 | 471 | ||
| 472 | static uint8_t tlsext_supportedgroups_client_default[] = { | 472 | static uint8_t tlsext_supportedgroups_client_default[] = { |
| 473 | 0x00, 0x06, | 473 | 0x00, 0x08, |
| 474 | 0x00, 0x1d, /* X25519 (29) */ | 474 | 0x00, 0x1d, /* X25519 (29) */ |
| 475 | 0x00, 0x17, /* secp256r1 (23) */ | 475 | 0x00, 0x17, /* secp256r1 (23) */ |
| 476 | 0x00, 0x18 /* secp384r1 (24) */ | 476 | 0x00, 0x18, /* secp384r1 (24) */ |
| 477 | 0x00, 0x19, /* secp521r1 (25) */ | ||
| 477 | }; | 478 | }; |
| 478 | 479 | ||
| 479 | static uint16_t tlsext_supportedgroups_client_secp384r1_val[] = { | 480 | static uint16_t tlsext_supportedgroups_client_secp384r1_val[] = { |
| @@ -2713,13 +2714,13 @@ test_tlsext_srtp_server(void) | |||
| 2713 | #endif /* OPENSSL_NO_SRTP */ | 2714 | #endif /* OPENSSL_NO_SRTP */ |
| 2714 | 2715 | ||
| 2715 | unsigned char tlsext_clienthello_default[] = { | 2716 | unsigned char tlsext_clienthello_default[] = { |
| 2716 | 0x00, 0x32, 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, | 2717 | 0x00, 0x34, 0x00, 0x0b, 0x00, 0x02, 0x01, 0x00, |
| 2717 | 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x1d, | 2718 | 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x1d, |
| 2718 | 0x00, 0x17, 0x00, 0x18, 0x00, 0x23, 0x00, 0x00, | 2719 | 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x23, |
| 2719 | 0x00, 0x0d, 0x00, 0x18, 0x00, 0x16, 0x08, 0x06, | 2720 | 0x00, 0x00, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x16, |
| 2720 | 0x06, 0x01, 0x06, 0x03, 0x08, 0x05, 0x05, 0x01, | 2721 | 0x08, 0x06, 0x06, 0x01, 0x06, 0x03, 0x08, 0x05, |
| 2721 | 0x05, 0x03, 0x08, 0x04, 0x04, 0x01, 0x04, 0x03, | 2722 | 0x05, 0x01, 0x05, 0x03, 0x08, 0x04, 0x04, 0x01, |
| 2722 | 0x02, 0x01, 0x02, 0x03, | 2723 | 0x04, 0x03, 0x02, 0x01, 0x02, 0x03, |
| 2723 | }; | 2724 | }; |
| 2724 | 2725 | ||
| 2725 | unsigned char tlsext_clienthello_disabled[] = {}; | 2726 | unsigned char tlsext_clienthello_disabled[] = {}; |
