forked from wolfSSL/wolfssl
Add TLSv1.3 KDF to wolfCrypt Test
Added a test for the TLSv1.3 KDF to the wolfcrypt test. It uses 6 different test cases from the CAVP tests. A set of 8 session keys are generated using multiple exporters.
This commit is contained in:
@ -408,6 +408,7 @@ WOLFSSL_TEST_SUBROUTINE int hmac_sha3_test(void);
|
||||
static int hkdf_test(void);
|
||||
#endif
|
||||
WOLFSSL_TEST_SUBROUTINE int sshkdf_test(void);
|
||||
WOLFSSL_TEST_SUBROUTINE int tls13_kdf_test(void);
|
||||
WOLFSSL_TEST_SUBROUTINE int x963kdf_test(void);
|
||||
WOLFSSL_TEST_SUBROUTINE int arc4_test(void);
|
||||
#ifdef WC_RC2
|
||||
@ -1009,6 +1010,15 @@ options: [-s max_relative_stack_bytes] [-m max_relative_heap_memory_bytes]\n\
|
||||
PRIVATE_KEY_LOCK();
|
||||
#endif /* WOLFSSL_WOLFSSH */
|
||||
|
||||
#ifdef WOLFSSL_TLS13
|
||||
PRIVATE_KEY_UNLOCK();
|
||||
if ( (ret = tls13_kdf_test()) != 0)
|
||||
return err_sys("TLSv1.3 KDF test failed!\n", ret);
|
||||
else
|
||||
TEST_PASS("TLSv1.3 KDF test passed!\n");
|
||||
PRIVATE_KEY_LOCK();
|
||||
#endif /* WOLFSSL_TLS13 */
|
||||
|
||||
#if defined(HAVE_X963_KDF) && defined(HAVE_ECC)
|
||||
if ( (ret = x963kdf_test()) != 0)
|
||||
return err_sys("X963-KDF test failed!\n", ret);
|
||||
@ -20252,6 +20262,696 @@ int sshkdf_test(void)
|
||||
#endif /* WOLFSSL_WOLFSSH */
|
||||
|
||||
|
||||
#ifdef WOLFSSL_TLS13
|
||||
|
||||
#define TLSV13_PSK_DHE_SZ 40
|
||||
typedef struct {
|
||||
enum wc_HashType hashAlg;
|
||||
word32 pskSz;
|
||||
word32 dheSz;
|
||||
byte psk[TLSV13_PSK_DHE_SZ];
|
||||
byte dhe[TLSV13_PSK_DHE_SZ];
|
||||
byte hashHello1[WC_MAX_DIGEST_SIZE];
|
||||
byte hashHello2[WC_MAX_DIGEST_SIZE];
|
||||
byte hashFinished1[WC_MAX_DIGEST_SIZE];
|
||||
byte hashFinished2[WC_MAX_DIGEST_SIZE];
|
||||
/* Expected */
|
||||
byte clientEarlyTrafficSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte earlyExporterMasterSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte clientHandshakeTrafficSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte serverHandshakeTrafficSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte clientApplicationTrafficSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte serverApplicationTrafficSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte exporterMasterSecret[WC_MAX_DIGEST_SIZE];
|
||||
byte resumptionMasterSecret[WC_MAX_DIGEST_SIZE];
|
||||
} Tls13KdfTestVector;
|
||||
|
||||
/* The following tests come from the CAVP test vectors we used for
|
||||
* our FIPS validation. The hash values used are the components from
|
||||
* the test hashed together. hashHello1 is the hash of the
|
||||
* clientHelloRandom value of the test vector. hashHello2 is the hash
|
||||
* of the clientHelloRandom and serverHelloRandom values from the test
|
||||
* vector. hashFinished1 is clientHelloRandom, serverHelloRandom, and
|
||||
* serverFinishedRandom. hashFinished2 is clientHelloRandom,
|
||||
* serverHelloRandom, serverFinishedRandom, and clietnFinishedRandom
|
||||
* hashed together. */
|
||||
static const Tls13KdfTestVector tls13KdfTestVectors[] = {
|
||||
{ /* 1 */
|
||||
WC_HASH_TYPE_SHA256, 35, 35,
|
||||
{ /* PSK */
|
||||
0x7b, 0xf1, 0x05, 0x31, 0x36, 0xfa, 0x03, 0xdc,
|
||||
0x31, 0x97, 0x88, 0x04, 0x9c, 0xbc, 0xee, 0xf7,
|
||||
0x8d, 0x84, 0x95, 0x26, 0xaf, 0x1d, 0x68, 0xb0,
|
||||
0x60, 0x7a, 0xcc, 0x4f, 0xc1, 0xd3, 0xa1, 0x68,
|
||||
0x7f, 0x6d, 0xbe
|
||||
},
|
||||
{ /* DHE */
|
||||
0x6e, 0xa1, 0x77, 0xab, 0x2f, 0x43, 0xd2, 0x4b,
|
||||
0xe5, 0xa1, 0x09, 0xe0, 0x7a, 0xd0, 0x01, 0x35,
|
||||
0x8d, 0xf8, 0xf2, 0x5c, 0x91, 0x02, 0xb0, 0x6c,
|
||||
0x3f, 0xeb, 0xee, 0xa4, 0x42, 0x19, 0xce, 0xdc,
|
||||
0x81, 0x26, 0x40
|
||||
},
|
||||
{ /* Hello 1 */
|
||||
0xd9, 0x4b, 0xe4, 0x17, 0xef, 0x58, 0x73, 0x7d,
|
||||
0x28, 0x3d, 0xf0, 0xcc, 0x05, 0x03, 0xaf, 0xac,
|
||||
0x3d, 0x92, 0x79, 0x48, 0xe8, 0x8c, 0xdb, 0xce,
|
||||
0x95, 0x82, 0x21, 0x31, 0x7b, 0x61, 0xd7, 0xc6
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0xb7, 0x7f, 0x29, 0x91, 0xa4, 0x8b, 0x34, 0xdb,
|
||||
0xbd, 0xc7, 0x54, 0x1c, 0x3b, 0x86, 0xa3, 0x69,
|
||||
0xfe, 0x26, 0xe4, 0x7b, 0xac, 0x57, 0x71, 0xb3,
|
||||
0x32, 0x97, 0xed, 0xd2, 0x0e, 0x95, 0xb8, 0x63
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0x65, 0xdb, 0x6d, 0x71, 0x71, 0xd0, 0xd8, 0x49,
|
||||
0xd0, 0x3c, 0x8e, 0x2b, 0x24, 0xdf, 0xc2, 0xe9,
|
||||
0xd6, 0xfd, 0xea, 0x04, 0x95, 0x7c, 0xf0, 0x7e,
|
||||
0x57, 0x74, 0x7c, 0xdd, 0xa3, 0x0b, 0x2b, 0x36
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0x28, 0xf2, 0xf2, 0x79, 0xcf, 0x20, 0x52, 0x90,
|
||||
0x1d, 0x91, 0x05, 0xad, 0x44, 0x26, 0x23, 0x96,
|
||||
0x32, 0xce, 0xec, 0x61, 0xd1, 0xbf, 0x00, 0x48,
|
||||
0x4a, 0xa5, 0x60, 0xcc, 0x28, 0xb5, 0x8d, 0x98
|
||||
},
|
||||
{ /* Client Early Traffic Secret */
|
||||
0x07, 0x14, 0x6a, 0x26, 0x5b, 0x6c, 0x7f, 0x4d, 0x6b, 0x47, 0x3f, 0xd5,
|
||||
0x03, 0x1d, 0xd2, 0x23, 0x3d, 0x89, 0x3e, 0xc6, 0x51, 0xd1, 0xac, 0xf8,
|
||||
0x28, 0xae, 0x4b, 0x76, 0xc8, 0x10, 0x7e, 0xdd
|
||||
},
|
||||
{ /* Early Exporter Master Secret */
|
||||
0xb8, 0xd3, 0x25, 0x7e, 0x2d, 0x41, 0x7b, 0xcb, 0x5e, 0x82, 0x49, 0xf5,
|
||||
0x51, 0x3d, 0xb7, 0x59, 0x32, 0xb3, 0xdf, 0x99, 0x4e, 0x04, 0x69, 0xc6,
|
||||
0x96, 0x8e, 0xe6, 0x3d, 0x91, 0xe4, 0x81, 0x11
|
||||
},
|
||||
{ /* Client Handshake Traffic Secret */
|
||||
0xd9, 0x3b, 0x54, 0xe2, 0xb0, 0xd1, 0x85, 0xf0, 0xfd, 0xf3, 0x48, 0x4a,
|
||||
0xf8, 0x0b, 0xa5, 0xdc, 0x4c, 0x37, 0xcb, 0xd4, 0x20, 0xaf, 0x60, 0xc7,
|
||||
0xd5, 0x50, 0x5d, 0x0c, 0x77, 0x3b, 0x6f, 0xd2
|
||||
},
|
||||
{ /* Server Handshake Traffic Secret */
|
||||
0x4d, 0x40, 0x2b, 0xd2, 0x8c, 0x33, 0x90, 0x39, 0x67, 0x67, 0x05, 0xf7,
|
||||
0x5d, 0x37, 0x1e, 0xdc, 0x4a, 0x70, 0x6b, 0x9e, 0xf8, 0x06, 0x61, 0x89,
|
||||
0x70, 0xe1, 0x3d, 0x36, 0xad, 0x88, 0x7e, 0x5b
|
||||
},
|
||||
{ /* Client Application Traffic Secret */
|
||||
0x74, 0x6e, 0xa0, 0x13, 0x18, 0x34, 0x48, 0x4d, 0x23, 0x31, 0xf1, 0xf9,
|
||||
0xee, 0x44, 0x6d, 0xad, 0xc1, 0xad, 0x92, 0x73, 0xca, 0x27, 0x16, 0x91,
|
||||
0xa2, 0x50, 0x9a, 0xfc, 0xec, 0xf0, 0x6b, 0x24
|
||||
},
|
||||
{ /* Server Application Traffic Secret */
|
||||
0x89, 0x18, 0x7e, 0x34, 0x8d, 0xfc, 0x14, 0xb1, 0x4f, 0x21, 0xd8, 0x29,
|
||||
0xdb, 0x9b, 0xfb, 0x55, 0xcf, 0xa1, 0x4f, 0x95, 0xf8, 0xe0, 0xb0, 0x83,
|
||||
0xd5, 0x34, 0x9e, 0x0b, 0x83, 0x37, 0x42, 0x93
|
||||
},
|
||||
{ /* Exporter Master Secret */
|
||||
0x7d, 0xc8, 0x88, 0x46, 0xd5, 0x57, 0x15, 0xb6, 0x24, 0x25, 0x92, 0x61,
|
||||
0xb1, 0x18, 0x86, 0x2a, 0x6d, 0xa5, 0x84, 0xeb, 0x59, 0xdf, 0x13, 0xbd,
|
||||
0x73, 0xaa, 0x5d, 0x65, 0xab, 0xd9, 0xb4, 0x56
|
||||
},
|
||||
{ /* Resumption Master Secret */
|
||||
0x20, 0xb7, 0xd0, 0xe3, 0x82, 0x01, 0xa1, 0x04, 0xb8, 0x13, 0x29, 0xed,
|
||||
0x35, 0xe4, 0x2f, 0xbf, 0x58, 0x23, 0x7f, 0x21, 0xdb, 0x9f, 0xf8, 0xe0,
|
||||
0xe8, 0xe4, 0xab, 0xc4, 0xa1, 0x61, 0xb9, 0xbb
|
||||
}
|
||||
},
|
||||
{ /* 6 */
|
||||
WC_HASH_TYPE_SHA256, 0, 33,
|
||||
{ 0 }, /* PSK */
|
||||
{ /* DHE */
|
||||
0x7a, 0x46, 0x8c, 0x5a, 0xd1, 0x8e, 0x95, 0xba,
|
||||
0x61, 0xe6, 0x6f, 0xe6, 0x76, 0x0c, 0x20, 0x43,
|
||||
0x16, 0x82, 0x15, 0xfe, 0x54, 0xa3, 0xc7, 0xfd,
|
||||
0x3b, 0x2c, 0x88, 0xb4, 0xd3, 0x42, 0x70, 0x12,
|
||||
0x18
|
||||
},
|
||||
{ /* Hello 1 */
|
||||
0x63, 0x83, 0x58, 0xab, 0x36, 0xcd, 0x0c, 0xf3,
|
||||
0x26, 0x07, 0xb5, 0x5f, 0x0b, 0x8b, 0x45, 0xd6,
|
||||
0x7d, 0x5b, 0x42, 0xdc, 0xa8, 0xaa, 0x06, 0xfb,
|
||||
0x20, 0xa5, 0xbb, 0x85, 0xdb, 0x54, 0xd8, 0x8b
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0xea, 0xfe, 0x9e, 0x8e, 0xff, 0x1f, 0x6f, 0x43,
|
||||
0xf9, 0x5d, 0xfd, 0xbf, 0xe2, 0x5f, 0x02, 0x2f,
|
||||
0x6d, 0x47, 0x60, 0x9a, 0x48, 0x9a, 0x75, 0xfb,
|
||||
0xb5, 0x4a, 0xbf, 0x9c, 0x4e, 0xff, 0xbf, 0x0b
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0xca, 0x25, 0xb3, 0x53, 0x8e, 0x6d, 0xc3, 0x36,
|
||||
0x17, 0x30, 0x07, 0xdf, 0x0d, 0xd7, 0x79, 0xb0,
|
||||
0x7f, 0xcb, 0xbe, 0x7a, 0xbc, 0x2d, 0x9f, 0x2d,
|
||||
0x94, 0x44, 0x94, 0xe6, 0xa4, 0xf3, 0xe8, 0x53
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0x2e, 0xa6, 0x5a, 0xaf, 0xb5, 0xba, 0x9f, 0x2f,
|
||||
0x74, 0x83, 0x5d, 0xbf, 0x86, 0xa4, 0xa6, 0xf6,
|
||||
0xb9, 0x89, 0xdf, 0x17, 0xe1, 0xa8, 0x14, 0xc0,
|
||||
0xe1, 0x50, 0xfa, 0xec, 0xfa, 0xae, 0x8b, 0x7b
|
||||
},
|
||||
{
|
||||
0x20, 0x18, 0x72, 0x7c, 0xde, 0x3a, 0x85, 0x17, 0x72, 0xdc, 0xd7, 0x72,
|
||||
0xb0, 0xfc, 0x45, 0xd0, 0x62, 0xb9, 0xbb, 0x38, 0x69, 0x05, 0x7b, 0xb4,
|
||||
0x5e, 0x58, 0x5d, 0xed, 0xcd, 0x0b, 0x96, 0xd3
|
||||
},
|
||||
{
|
||||
0x68, 0x10, 0x20, 0xd1, 0x5e, 0xfc, 0x0c, 0x53, 0x85, 0xbb, 0xdb, 0x18,
|
||||
0xa8, 0x78, 0xf1, 0x2b, 0x13, 0xba, 0x64, 0x1d, 0xe7, 0x09, 0xbe, 0x13,
|
||||
0x49, 0x26, 0xf9, 0x98, 0x56, 0xf1, 0x43, 0xfb
|
||||
},
|
||||
{
|
||||
0x24, 0x35, 0x3e, 0x10, 0x6f, 0x39, 0x50, 0xd6, 0xa2, 0x12, 0x99, 0xf2,
|
||||
0xd5, 0xf5, 0x19, 0xf5, 0x84, 0xed, 0xee, 0x78, 0x2a, 0xa6, 0xfa, 0x3d,
|
||||
0x06, 0xa8, 0xa7, 0x5d, 0x97, 0x78, 0xd6, 0x58
|
||||
},
|
||||
{
|
||||
0xf4, 0x57, 0xac, 0x24, 0x7a, 0xfb, 0x7c, 0x3b, 0xb6, 0x39, 0x17, 0x14,
|
||||
0xd9, 0xd4, 0x58, 0x4d, 0x46, 0xd5, 0x1b, 0xde, 0xf7, 0x9d, 0x06, 0xee,
|
||||
0x8d, 0x1a, 0x2c, 0x25, 0x6d, 0x64, 0xde, 0x89
|
||||
},
|
||||
{
|
||||
0xb6, 0x00, 0xce, 0x63, 0xed, 0x65, 0x8b, 0x66, 0x66, 0x42, 0xc6, 0xbd,
|
||||
0x89, 0xc4, 0x71, 0x6f, 0xce, 0x28, 0xb2, 0xac, 0x97, 0x07, 0x5b, 0xea,
|
||||
0xb8, 0x1d, 0x4c, 0xeb, 0x9e, 0x71, 0x07, 0x8f
|
||||
},
|
||||
{
|
||||
0xf8, 0x92, 0xc8, 0xba, 0xe7, 0x83, 0xfe, 0x68, 0xe4, 0xd6, 0x5e, 0xcb,
|
||||
0xb3, 0xef, 0x49, 0xd0, 0xe7, 0xb1, 0xac, 0xcb, 0x39, 0x19, 0xfd, 0xa7,
|
||||
0xf7, 0xca, 0xab, 0x1e, 0x42, 0x14, 0xd8, 0xe7
|
||||
},
|
||||
{
|
||||
0x32, 0x4a, 0x1a, 0xad, 0xe2, 0xbb, 0x55, 0x8a, 0xdd, 0xe9, 0xa5, 0x2a,
|
||||
0x46, 0x5e, 0x6c, 0x83, 0x66, 0x27, 0x27, 0x94, 0xdd, 0x68, 0x59, 0xa0,
|
||||
0xbb, 0xe8, 0x31, 0x7c, 0x39, 0xd7, 0xfd, 0x6d
|
||||
},
|
||||
{
|
||||
0x58, 0xbc, 0x6c, 0x5b, 0x24, 0xad, 0x82, 0xb3, 0xcc, 0xc7, 0xd1, 0xa1,
|
||||
0xaa, 0x2b, 0x98, 0x9f, 0x2f, 0x7e, 0xa9, 0x63, 0xc2, 0x8e, 0xb6, 0x06,
|
||||
0xc2, 0x2b, 0x74, 0x4b, 0x79, 0x19, 0x7e, 0x2e
|
||||
}
|
||||
},
|
||||
{ /* 11 */
|
||||
WC_HASH_TYPE_SHA256, 33, 0,
|
||||
{ /* PSK */
|
||||
0x3d, 0x39, 0x49, 0x36, 0x98, 0xc5, 0xfd, 0xcd,
|
||||
0xa0, 0x17, 0xbd, 0x65, 0x0a, 0xdb, 0xd4, 0x07,
|
||||
0x56, 0xa2, 0x7b, 0xb8, 0x2a, 0x7e, 0xfb, 0x26,
|
||||
0x74, 0xe1, 0xbc, 0x08, 0x4b, 0xf0, 0x30, 0x14,
|
||||
0x12
|
||||
},
|
||||
{ 0 }, /* DHE */
|
||||
{ /* Hello 1 */
|
||||
0xb7, 0x44, 0x74, 0x6c, 0x57, 0x1f, 0xf3, 0x84,
|
||||
0x8f, 0x63, 0xfb, 0x8c, 0x94, 0x6c, 0x16, 0x68,
|
||||
0x4b, 0xe1, 0xb5, 0xb5, 0x2a, 0x4e, 0x5f, 0xdf,
|
||||
0x4b, 0x53, 0xb2, 0x35, 0xfc, 0x30, 0xf1, 0x36
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0xe6, 0x4f, 0x3a, 0x4f, 0xd7, 0xe0, 0x64, 0xd4,
|
||||
0x69, 0x50, 0xe4, 0x8b, 0xba, 0xbc, 0x47, 0x74,
|
||||
0xa7, 0x9b, 0x40, 0x91, 0x8f, 0xa8, 0x72, 0x22,
|
||||
0x97, 0xad, 0x43, 0xa7, 0x11, 0x86, 0xb5, 0x72
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0x5f, 0xa6, 0x10, 0xe2, 0xa3, 0x99, 0x0b, 0x5e,
|
||||
0x57, 0xee, 0xc3, 0x3a, 0x8e, 0x04, 0xf3, 0x0e,
|
||||
0x58, 0x02, 0x09, 0xb2, 0x7e, 0x2d, 0xc6, 0xd2,
|
||||
0x08, 0xae, 0x68, 0x0a, 0x55, 0xa5, 0xda, 0x51
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0xfc, 0x5b, 0xc0, 0x7e, 0x1b, 0xaa, 0xc0, 0xb4,
|
||||
0x34, 0x85, 0x49, 0x8e, 0x16, 0x31, 0x98, 0xdf,
|
||||
0x10, 0x54, 0x22, 0xda, 0x1e, 0x6b, 0x51, 0xf6,
|
||||
0x97, 0x57, 0xa0, 0x7a, 0x92, 0xe7, 0x47, 0x52
|
||||
},
|
||||
{
|
||||
0x80, 0xfa, 0x36, 0x30, 0xb8, 0x65, 0xb3, 0x2a, 0x1d, 0x68, 0x91, 0x06,
|
||||
0x98, 0xa0, 0x17, 0x8f, 0xee, 0xb7, 0x9e, 0x3d, 0xd8, 0x84, 0x99, 0x30,
|
||||
0xb9, 0xd6, 0x09, 0x25, 0x5e, 0xfb, 0x8f, 0xd3 },
|
||||
{
|
||||
0xa9, 0x89, 0x29, 0x70, 0xe4, 0x55, 0xec, 0x97, 0xfb, 0x24, 0x5b, 0xf9,
|
||||
0xf1, 0xa3, 0x19, 0x3d, 0xf1, 0x31, 0x14, 0xcd, 0x2a, 0xed, 0x21, 0xc8,
|
||||
0xb1, 0x53, 0xad, 0x11, 0x0b, 0x9e, 0x5a, 0xee },
|
||||
{
|
||||
0x72, 0xad, 0x8d, 0x7f, 0xfc, 0xb7, 0x68, 0xda, 0x27, 0x60, 0x37, 0xa3,
|
||||
0x4a, 0x63, 0xe8, 0xa5, 0xc8, 0xcd, 0x36, 0x6a, 0x77, 0x99, 0x0d, 0xa9,
|
||||
0xb1, 0x5b, 0x2f, 0x47, 0x2e, 0x22, 0xa7, 0x5e },
|
||||
{
|
||||
0x95, 0x6e, 0x85, 0x09, 0xe5, 0x04, 0x88, 0x14, 0x28, 0x8d, 0xdf, 0xe6,
|
||||
0x0d, 0x0f, 0x0d, 0x6b, 0x4e, 0x66, 0x1c, 0x03, 0xb9, 0xaa, 0x2d, 0x45,
|
||||
0x56, 0x67, 0x5c, 0x55, 0x29, 0xd6, 0x89, 0xd0 },
|
||||
{
|
||||
0xe8, 0xf2, 0x14, 0xf9, 0x9b, 0x2b, 0x9f, 0x24, 0x2b, 0x37, 0xbe, 0x86,
|
||||
0xdb, 0x23, 0x4b, 0xbe, 0x39, 0x57, 0xe8, 0xa9, 0xa5, 0xee, 0x08, 0xf2,
|
||||
0x75, 0x58, 0xdb, 0xd9, 0x51, 0xc1, 0x46, 0x02 },
|
||||
{
|
||||
0x3d, 0x19, 0xaf, 0xa3, 0x0b, 0x21, 0xf7, 0x3d, 0xe7, 0x37, 0x6e, 0x32,
|
||||
0x13, 0x48, 0x9d, 0xea, 0xe0, 0x90, 0xbf, 0x64, 0x48, 0xf7, 0x1e, 0xcc,
|
||||
0xf0, 0xbc, 0x92, 0xd7, 0x8a, 0x4a, 0xa8, 0xc1 },
|
||||
{
|
||||
0x16, 0x35, 0xb1, 0x66, 0x28, 0xa3, 0x3e, 0x19, 0xf5, 0x2d, 0x92, 0x22,
|
||||
0x95, 0x48, 0xe8, 0x34, 0x7b, 0x30, 0x50, 0xa2, 0xa0, 0xd9, 0xc2, 0x59,
|
||||
0x39, 0xf9, 0x8c, 0x69, 0xf2, 0x2a, 0xb9, 0xff },
|
||||
{
|
||||
0x32, 0x71, 0xa6, 0x87, 0x0c, 0x97, 0x42, 0x07, 0xdd, 0x5f, 0xc9, 0x44,
|
||||
0xa5, 0x7c, 0x50, 0x14, 0xfd, 0xe7, 0x5f, 0x8b, 0xd3, 0x2f, 0xdc, 0x9b,
|
||||
0xa9, 0x93, 0x22, 0x19, 0xe6, 0xf2, 0x0c, 0xd8 }
|
||||
},
|
||||
#ifdef WOLFSSL_SHA384
|
||||
{ /* 26 */
|
||||
WC_HASH_TYPE_SHA384, 35, 35,
|
||||
{ /* PSK */
|
||||
0x62, 0x83, 0x25, 0xc7, 0xcc, 0x08, 0x5e, 0x63,
|
||||
0x64, 0x56, 0xf0, 0xc6, 0x88, 0x27, 0x5a, 0x5b,
|
||||
0x68, 0x59, 0x0b, 0x14, 0x55, 0x13, 0x2e, 0xfd,
|
||||
0x8f, 0x28, 0x5b, 0x3d, 0xe3, 0xad, 0x67, 0xe4,
|
||||
0x68, 0xba, 0xf9
|
||||
},
|
||||
{ /* DHE */
|
||||
0xa8, 0xb1, 0xab, 0xd8, 0xc8, 0x5b, 0x52, 0xdf,
|
||||
0x7f, 0x49, 0x10, 0xf4, 0xa1, 0x31, 0xd1, 0x91,
|
||||
0x36, 0xc1, 0x87, 0x5d, 0x42, 0x2a, 0xe7, 0x1d,
|
||||
0x2c, 0x29, 0x3d, 0x40, 0x64, 0x61, 0x63, 0x76,
|
||||
0xd8, 0x66, 0xac
|
||||
},
|
||||
{ /* Hello 1 */
|
||||
0x6f, 0xc6, 0x4c, 0xe1, 0xc6, 0x68, 0x34, 0x8c,
|
||||
0x0a, 0xe1, 0xf8, 0xb8, 0x3e, 0xd4, 0xf8, 0x0b,
|
||||
0x54, 0x50, 0xe4, 0xc5, 0x4a, 0x33, 0x7d, 0xbd,
|
||||
0x90, 0xd2, 0xa2, 0xb9, 0xb7, 0x92, 0xed, 0xab,
|
||||
0x14, 0xf1, 0xe4, 0x86, 0x22, 0x67, 0xd7, 0x44,
|
||||
0x03, 0x21, 0xdc, 0x51, 0x52, 0x7f, 0x35, 0x80
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0x3e, 0xcf, 0x2f, 0xc3, 0x87, 0xba, 0xc5, 0xbd,
|
||||
0x7c, 0xe8, 0x35, 0x5b, 0x95, 0x51, 0x30, 0x3b,
|
||||
0x08, 0xcc, 0x2a, 0x7d, 0xb5, 0x74, 0x7c, 0x16,
|
||||
0xb3, 0x0b, 0xe7, 0x61, 0xa3, 0x7c, 0x6c, 0xbd,
|
||||
0x39, 0x74, 0xfd, 0x1e, 0x4c, 0xff, 0xc8, 0xcc,
|
||||
0xa0, 0xef, 0x29, 0x4d, 0x94, 0xaa, 0x55, 0x6f,
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0x06, 0xc1, 0x47, 0x78, 0x66, 0x53, 0x6f, 0x24,
|
||||
0x94, 0x61, 0x69, 0xec, 0xd8, 0x60, 0x31, 0x2f,
|
||||
0xbf, 0xd6, 0x8a, 0x29, 0x17, 0xff, 0xa3, 0x88,
|
||||
0x13, 0x09, 0x8c, 0x9d, 0x6c, 0x64, 0x84, 0x48,
|
||||
0x44, 0xdd, 0x2d, 0x29, 0x4d, 0xe6, 0x98, 0x2b,
|
||||
0x45, 0x3b, 0x84, 0x33, 0x79, 0xb2, 0x75, 0x68
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0x28, 0x1e, 0x18, 0xf7, 0x9c, 0x32, 0xa9, 0xbf,
|
||||
0x0c, 0x24, 0x58, 0x21, 0xce, 0xbc, 0xf2, 0x44,
|
||||
0xb1, 0x18, 0xaf, 0x9d, 0xd9, 0x20, 0xf9, 0xf4,
|
||||
0xed, 0xcc, 0x53, 0x82, 0x66, 0x5c, 0x46, 0x94,
|
||||
0x8c, 0x36, 0x5e, 0xca, 0x9f, 0xd8, 0x9a, 0xd3,
|
||||
0xf0, 0xe1, 0x53, 0x71, 0xdd, 0x19, 0x1e, 0x59
|
||||
},
|
||||
{
|
||||
0xd0, 0xef, 0xa8, 0xcb, 0x5b, 0x14, 0x0f, 0x0a, 0x62, 0xba, 0x5a, 0xb1,
|
||||
0xc5, 0xb5, 0x3f, 0x11, 0xda, 0xa1, 0x0c, 0x9c, 0xb4, 0x32, 0x48, 0x4e,
|
||||
0xfa, 0x84, 0x4f, 0xe4, 0xe7, 0x91, 0x8f, 0x42, 0x3f, 0xc7, 0x4e, 0xd3,
|
||||
0x83, 0x3d, 0x7f, 0x70, 0x12, 0xee, 0x9a, 0x37, 0x01, 0xbb, 0x14, 0xd3
|
||||
},
|
||||
{
|
||||
0x48, 0x6f, 0x77, 0x1d, 0x39, 0x1b, 0xa5, 0x9a, 0x76, 0xd9, 0x1d, 0x7d,
|
||||
0xb3, 0xd9, 0xb9, 0x78, 0x35, 0x0f, 0xd0, 0xe1, 0x07, 0x1f, 0x8d, 0xe5,
|
||||
0x75, 0x00, 0xda, 0xc0, 0x19, 0x01, 0xfb, 0x08, 0x35, 0xe7, 0x18, 0x8f,
|
||||
0xf0, 0x19, 0xfb, 0x46, 0xf6, 0xa5, 0x77, 0x0e, 0x90, 0x38, 0x8b, 0x15
|
||||
},
|
||||
{
|
||||
0x80, 0x8c, 0xa7, 0x24, 0x97, 0xf9, 0xd3, 0x52, 0xb0, 0x69, 0x9d, 0x4b,
|
||||
0xa4, 0x19, 0x4a, 0xb1, 0x46, 0x53, 0x3a, 0xc8, 0xe4, 0x02, 0x69, 0xf2,
|
||||
0xe7, 0xb6, 0x1d, 0x33, 0x51, 0xcc, 0x14, 0x40, 0x4a, 0xb0, 0xe7, 0x58,
|
||||
0x84, 0xba, 0xc2, 0x14, 0x58, 0x6b, 0xb9, 0xdc, 0x50, 0x98, 0x67, 0x01
|
||||
},
|
||||
{
|
||||
0xb1, 0xa8, 0xc0, 0x06, 0xb3, 0x2e, 0xa7, 0x8a, 0x6a, 0x12, 0x88, 0x00,
|
||||
0x65, 0x88, 0x9c, 0x5d, 0x35, 0xee, 0xe5, 0x51, 0x0b, 0x62, 0xf8, 0x67,
|
||||
0xe5, 0xef, 0x15, 0x1f, 0x23, 0x02, 0x74, 0x08, 0x9c, 0xc8, 0xba, 0x27,
|
||||
0x5d, 0x32, 0x19, 0x6f, 0x6d, 0x5d, 0x72, 0x5e, 0x15, 0xde, 0x30, 0xc3
|
||||
},
|
||||
{
|
||||
0xfd, 0xce, 0xf5, 0x65, 0x45, 0x84, 0xfb, 0x8c, 0x79, 0xa4, 0x6c, 0x1b,
|
||||
0x0e, 0x1b, 0xfd, 0x26, 0xa2, 0x53, 0xf4, 0x4e, 0x00, 0x4d, 0x4b, 0x0b,
|
||||
0x24, 0x6d, 0x35, 0x35, 0xd9, 0x97, 0x70, 0xc5, 0xf4, 0xee, 0xe3, 0xba,
|
||||
0x31, 0x1e, 0x2a, 0x42, 0xcb, 0xdf, 0x40, 0xb1, 0x14, 0xb8, 0x53, 0xce
|
||||
},
|
||||
{
|
||||
0xbb, 0xb3, 0x26, 0x7c, 0x22, 0x21, 0x9b, 0x72, 0x32, 0xa1, 0x97, 0xfb,
|
||||
0x78, 0x8c, 0xbe, 0x3d, 0x71, 0x45, 0xb8, 0xf5, 0x24, 0x8f, 0x0f, 0xac,
|
||||
0x42, 0x5b, 0x81, 0xe8, 0xd0, 0x71, 0x4a, 0xcb, 0x32, 0x3f, 0x03, 0xfb,
|
||||
0xec, 0x6a, 0x1f, 0x76, 0x80, 0x65, 0x01, 0x7a, 0x3d, 0xce, 0xc4, 0xdf
|
||||
},
|
||||
{
|
||||
0x3f, 0xcf, 0x2f, 0x63, 0x94, 0x94, 0x99, 0xfd, 0x04, 0x3a, 0x89, 0x83,
|
||||
0xcf, 0x06, 0x05, 0xec, 0x20, 0x3e, 0x5f, 0x51, 0x9d, 0x6e, 0x4a, 0xc6,
|
||||
0xf1, 0x2b, 0x37, 0x17, 0x34, 0x72, 0x6e, 0x1d, 0x2a, 0xfd, 0xc7, 0x73,
|
||||
0xb5, 0x07, 0x22, 0x81, 0x32, 0x2e, 0x21, 0x85, 0xaf, 0x10, 0xb2, 0x73
|
||||
},
|
||||
{
|
||||
0x52, 0x0c, 0x3d, 0x2e, 0x2d, 0x4a, 0x11, 0xae, 0x96, 0x78, 0xe9, 0x5b,
|
||||
0xd8, 0x0f, 0x6c, 0xf4, 0xbd, 0x96, 0x13, 0x55, 0x88, 0xdd, 0xa3, 0x67,
|
||||
0x36, 0x86, 0x1e, 0x0b, 0x36, 0x41, 0xec, 0xf6, 0x04, 0xb2, 0xc4, 0x16,
|
||||
0xbc, 0x2c, 0xdb, 0x30, 0x02, 0x94, 0xd4, 0x42, 0xbf, 0x38, 0xee, 0x9d
|
||||
}
|
||||
},
|
||||
{ /* 36 */
|
||||
WC_HASH_TYPE_SHA384, 0, 33,
|
||||
{ 0 }, /* PSK */
|
||||
{ /* DHE */
|
||||
0xd3, 0x00, 0x72, 0x9a, 0xa8, 0xc5, 0xf3, 0xc4,
|
||||
0xf1, 0xa0, 0x26, 0x89, 0x65, 0x70, 0xc7, 0x0b,
|
||||
0x77, 0xbb, 0xe1, 0x4b, 0x2b, 0xa8, 0x4f, 0xa6,
|
||||
0x09, 0x4b, 0xba, 0x45, 0x36, 0x15, 0xee, 0x68,
|
||||
0xfd
|
||||
},
|
||||
{ /* Hello 1 */
|
||||
0x10, 0x9d, 0x8b, 0xa2, 0x93, 0xe7, 0xd3, 0xb9,
|
||||
0xb4, 0x0f, 0xeb, 0x6a, 0xb9, 0x69, 0xcb, 0x39,
|
||||
0x16, 0x29, 0xcc, 0xd3, 0xcc, 0x1a, 0x4c, 0x1b,
|
||||
0x53, 0x7c, 0x33, 0x88, 0x06, 0xbc, 0x0a, 0x02,
|
||||
0xa0, 0xbe, 0x62, 0xc0, 0xe6, 0x5e, 0x97, 0x5b,
|
||||
0x6a, 0xa1, 0x98, 0xf3, 0xd2, 0x1e, 0xcd, 0xc5
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0x74, 0xc0, 0x07, 0x2c, 0xc1, 0x63, 0xcc, 0x11,
|
||||
0xad, 0x1a, 0x55, 0x63, 0xbc, 0x20, 0x77, 0x96,
|
||||
0x30, 0x1c, 0x68, 0x45, 0x1e, 0x9b, 0xa7, 0xb4,
|
||||
0xf3, 0x04, 0x45, 0x16, 0x76, 0x55, 0xf9, 0xdf,
|
||||
0x4b, 0x2f, 0x1a, 0xdf, 0x5a, 0xb0, 0x93, 0xc9,
|
||||
0xab, 0xf5, 0x32, 0x47, 0x79, 0x9c, 0x01, 0xeb
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0x27, 0x08, 0x8e, 0xa5, 0xf1, 0x30, 0xe1, 0xd6,
|
||||
0x4f, 0xa2, 0x9e, 0x3b, 0x03, 0x2d, 0x2e, 0xa3,
|
||||
0x84, 0x75, 0x51, 0x3a, 0xc3, 0xf6, 0xee, 0x2e,
|
||||
0x37, 0x0c, 0xe3, 0x28, 0x46, 0xa5, 0x2d, 0xc7,
|
||||
0xf0, 0x64, 0x78, 0x53, 0x66, 0x43, 0x02, 0xa4,
|
||||
0x7a, 0x43, 0x66, 0x4b, 0xa7, 0xcb, 0x97, 0x16
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0x1d, 0x0d, 0xf8, 0xe1, 0x81, 0xa5, 0xbd, 0xa8,
|
||||
0x6f, 0x9d, 0x01, 0xa4, 0x9a, 0x92, 0xe2, 0xef,
|
||||
0x08, 0xab, 0xef, 0x3e, 0x2d, 0xd4, 0x82, 0xac,
|
||||
0x68, 0x9d, 0xe0, 0x54, 0x17, 0xde, 0x1a, 0xed,
|
||||
0x57, 0xcb, 0xd9, 0x2d, 0xc8, 0xbc, 0x93, 0xe6,
|
||||
0xa3, 0xec, 0xde, 0xee, 0xa1, 0x1c, 0x41, 0x85
|
||||
},
|
||||
{
|
||||
0x7f, 0x1f, 0xe6, 0x7b, 0xd8, 0xf5, 0x2b, 0x37, 0xbe, 0xb7, 0xd0, 0x37,
|
||||
0xce, 0x46, 0xad, 0x04, 0x2f, 0xc7, 0xdb, 0xc9, 0x9a, 0xb6, 0x00, 0x3f,
|
||||
0xc1, 0x97, 0xe9, 0x5c, 0x5e, 0x14, 0xd1, 0x38, 0x4d, 0x55, 0xe1, 0x07,
|
||||
0xb5, 0x85, 0x6d, 0xfa, 0xa7, 0x66, 0xad, 0xfa, 0xb6, 0xad, 0x29, 0x44
|
||||
},
|
||||
{
|
||||
0x4e, 0x6b, 0x20, 0x99, 0x55, 0x1b, 0x21, 0x89, 0xb6, 0x70, 0xdb, 0xe8,
|
||||
0xa7, 0x16, 0x55, 0xf2, 0x93, 0x13, 0x90, 0x7d, 0xfa, 0x62, 0x65, 0x53,
|
||||
0xa0, 0x97, 0xe9, 0xb4, 0xc0, 0xf1, 0xc9, 0x1a, 0x67, 0xdd, 0xca, 0x57,
|
||||
0xbc, 0xca, 0x39, 0xe6, 0x39, 0x6b, 0x63, 0x47, 0x25, 0x08, 0x3a, 0xd7
|
||||
},
|
||||
{
|
||||
0x35, 0x0d, 0xac, 0xd8, 0x10, 0x6a, 0x46, 0x50, 0x66, 0xae, 0x02, 0xc9,
|
||||
0xde, 0x13, 0x48, 0xce, 0x53, 0xd4, 0x92, 0x62, 0xc5, 0x65, 0x10, 0x08,
|
||||
0xc2, 0xc2, 0x82, 0xed, 0x9d, 0xc9, 0x6f, 0xa8, 0xc3, 0xc1, 0x0b, 0x7c,
|
||||
0xe1, 0x97, 0x85, 0xd6, 0x46, 0x29, 0x0e, 0x42, 0x51, 0xc1, 0x35, 0xcf
|
||||
},
|
||||
{
|
||||
0x3d, 0x5d, 0x84, 0xbd, 0x16, 0x46, 0x34, 0xb3, 0xf6, 0x31, 0x49, 0x3e,
|
||||
0x8d, 0xdc, 0xcb, 0x8c, 0x6a, 0x42, 0xf4, 0x88, 0xfc, 0x19, 0xfa, 0xa2,
|
||||
0x25, 0xc7, 0xa0, 0xa4, 0xca, 0xf0, 0xea, 0x2d, 0xe8, 0xc4, 0x02, 0x14,
|
||||
0x63, 0xfb, 0xd3, 0x7b, 0x51, 0x1c, 0xce, 0xca, 0xa3, 0xc3, 0xe4, 0xa5
|
||||
},
|
||||
{
|
||||
0x7c, 0x3a, 0x55, 0x92, 0x2e, 0xdd, 0x75, 0xdd, 0x76, 0x54, 0x4a, 0x9f,
|
||||
0xd0, 0xa2, 0x88, 0x83, 0xe9, 0x27, 0xda, 0x30, 0xe9, 0x96, 0x58, 0xc5,
|
||||
0xb7, 0x56, 0xfc, 0x4b, 0xb8, 0x5d, 0xee, 0x46, 0x70, 0x4e, 0x1b, 0x06,
|
||||
0x86, 0xaf, 0x48, 0x5c, 0x17, 0x35, 0xfa, 0x69, 0xc2, 0x4d, 0xfb, 0x09
|
||||
},
|
||||
{
|
||||
0x00, 0x0e, 0x28, 0x51, 0xc1, 0x7f, 0x41, 0x89, 0x6f, 0x9a, 0xca, 0x15,
|
||||
0xee, 0xed, 0x43, 0xca, 0x6d, 0x65, 0x6f, 0x51, 0x18, 0x6c, 0x08, 0x4b,
|
||||
0x77, 0xca, 0x75, 0xc4, 0xc3, 0xde, 0x29, 0x41, 0x8b, 0xaf, 0xa7, 0x1c,
|
||||
0x28, 0x37, 0xa0, 0xa0, 0x74, 0x8e, 0x09, 0x42, 0x7a, 0x1b, 0x68, 0xdb
|
||||
},
|
||||
{
|
||||
0x14, 0x8f, 0xab, 0x28, 0x64, 0xea, 0x45, 0x88, 0xdb, 0xc1, 0xc6, 0xa0,
|
||||
0x48, 0xdf, 0x15, 0xd0, 0x28, 0x07, 0x2d, 0x6c, 0xb8, 0x42, 0xbb, 0x60,
|
||||
0x02, 0x08, 0x9e, 0x29, 0x9b, 0x8d, 0xd6, 0x1c, 0xaf, 0xf2, 0x1a, 0xdc,
|
||||
0xf0, 0x78, 0x0b, 0x4d, 0x90, 0xa1, 0x0c, 0xb3, 0x13, 0xde, 0xca, 0x5a
|
||||
},
|
||||
{
|
||||
0x4d, 0x80, 0x7d, 0x0b, 0xb9, 0x00, 0x6f, 0x65, 0x51, 0x65, 0x23, 0xde,
|
||||
0x72, 0xdc, 0x4f, 0x04, 0xa5, 0xa2, 0x90, 0x45, 0x51, 0x9e, 0xd0, 0x3a,
|
||||
0xe4, 0xd7, 0x78, 0xa3, 0x0f, 0x2d, 0x65, 0x12, 0xad, 0xc8, 0x92, 0x30,
|
||||
0x79, 0x9d, 0x9d, 0x08, 0x7a, 0x9c, 0x9f, 0x83, 0xb1, 0xca, 0x59, 0x56
|
||||
}
|
||||
},
|
||||
{ /* 41 */
|
||||
WC_HASH_TYPE_SHA384, 33, 0,
|
||||
{ /* PSK */
|
||||
0xa4, 0x8b, 0x1b, 0x5f, 0xd0, 0xea, 0x75, 0x62,
|
||||
0x06, 0x4d, 0x68, 0x40, 0x85, 0x20, 0x45, 0x95,
|
||||
0x4a, 0x00, 0xca, 0x05, 0xeb, 0xd4, 0x1d, 0x48,
|
||||
0x81, 0x89, 0xe8, 0x86, 0x43, 0xfa, 0x28, 0x17,
|
||||
0x12
|
||||
},
|
||||
{ 0 }, /* DHE */
|
||||
{ /* Hello 1 */
|
||||
0x03, 0x7c, 0x33, 0x75, 0xdc, 0xc5, 0x46, 0x3a,
|
||||
0x0d, 0x56, 0xc6, 0xfb, 0xab, 0x1e, 0x1d, 0xda,
|
||||
0x59, 0xc2, 0xb2, 0xb1, 0x7c, 0x48, 0x9b, 0x06,
|
||||
0x0a, 0x5a, 0xbb, 0xf8, 0x98, 0x53, 0x78, 0x2d,
|
||||
0xd2, 0xcc, 0x87, 0x68, 0x25, 0xdd, 0x88, 0x22,
|
||||
0xcd, 0xb7, 0x74, 0x55, 0x21, 0xf9, 0x34, 0x98
|
||||
},
|
||||
{ /* Hello 2 */
|
||||
0x03, 0xb4, 0xfb, 0xcc, 0x28, 0x2c, 0xc1, 0x70,
|
||||
0x42, 0x73, 0x57, 0xac, 0xdb, 0x47, 0x71, 0xf6,
|
||||
0x2e, 0x11, 0x8a, 0x5b, 0x47, 0x2f, 0x02, 0x54,
|
||||
0x95, 0x34, 0xed, 0x5f, 0x19, 0xc1, 0x75, 0xe0,
|
||||
0x76, 0xad, 0xb0, 0x90, 0x57, 0xcd, 0xfd, 0xd7,
|
||||
0x58, 0x1f, 0x0d, 0x6b, 0x9e, 0x51, 0x3c, 0x08
|
||||
},
|
||||
{ /* Finished 1 */
|
||||
0x2b, 0x50, 0xd9, 0xa7, 0x43, 0x24, 0xda, 0x2c,
|
||||
0x7a, 0xaa, 0x0e, 0x37, 0xd7, 0x6b, 0x2c, 0xab,
|
||||
0x8e, 0xb2, 0xfe, 0x31, 0x1b, 0xa8, 0x12, 0x59,
|
||||
0x5b, 0x7b, 0xdc, 0x3e, 0xa7, 0x86, 0xa5, 0x48,
|
||||
0xe4, 0x46, 0x2b, 0x4c, 0xc1, 0x66, 0x4b, 0xf3,
|
||||
0x2a, 0x99, 0x93, 0x08, 0xbc, 0x3d, 0x08, 0x76
|
||||
},
|
||||
{ /* Finished 2 */
|
||||
0x7c, 0x34, 0xc8, 0x56, 0x17, 0xf1, 0x62, 0x1c,
|
||||
0x9f, 0x0b, 0xeb, 0xfd, 0x69, 0x72, 0x51, 0xc5,
|
||||
0xfa, 0x74, 0x87, 0xc9, 0xbd, 0x50, 0xe9, 0x48,
|
||||
0xa7, 0x3c, 0x94, 0x3e, 0x06, 0x7d, 0xe8, 0x8e,
|
||||
0xc1, 0xd1, 0x08, 0x1f, 0x5d, 0x48, 0x8a, 0x25,
|
||||
0xfc, 0xea, 0xe7, 0xd9, 0xd4, 0xd0, 0xf9, 0xad
|
||||
},
|
||||
{
|
||||
0x4b, 0x0b, 0xed, 0xb9, 0xc8, 0xb8, 0xa8, 0x1e, 0xb0, 0x81, 0x76, 0xd5,
|
||||
0x33, 0x22, 0x71, 0x33, 0x3a, 0x85, 0x19, 0x67, 0x7e, 0x91, 0x37, 0xf2,
|
||||
0xa6, 0x11, 0x22, 0xdf, 0x41, 0x04, 0x3d, 0xa9, 0x13, 0xb9, 0xb2, 0xb1,
|
||||
0xbb, 0xd8, 0xef, 0x23, 0x7c, 0xc2, 0xab, 0x70, 0x1b, 0x51, 0x9f, 0xc9
|
||||
},
|
||||
{
|
||||
0xeb, 0x96, 0x10, 0x8c, 0x7d, 0x92, 0xea, 0x80, 0x86, 0xb2, 0xf8, 0x27,
|
||||
0xf2, 0x9a, 0x09, 0xc1, 0x7c, 0x09, 0x43, 0xbc, 0xfe, 0xc8, 0x75, 0xe0,
|
||||
0x97, 0xe7, 0x6d, 0xd5, 0xb2, 0x3c, 0xed, 0x12, 0xb7, 0x74, 0x0e, 0xe3,
|
||||
0xb6, 0xe0, 0xba, 0xe1, 0x8d, 0x89, 0xcf, 0x4f, 0x57, 0xf6, 0x6d, 0x90
|
||||
},
|
||||
{
|
||||
0x22, 0xb0, 0x39, 0x34, 0xb6, 0x6c, 0x2d, 0x7a, 0x97, 0x1c, 0x5d, 0xcc,
|
||||
0x78, 0x84, 0x71, 0xbb, 0xc6, 0x7b, 0xb6, 0xbc, 0xcc, 0x0b, 0xf8, 0xac,
|
||||
0x8e, 0xd7, 0x20, 0xbd, 0xbe, 0x32, 0xf0, 0xd6, 0xe9, 0x69, 0x13, 0xf2,
|
||||
0x9a, 0xce, 0xfe, 0x86, 0xd3, 0xee, 0xba, 0x69, 0x51, 0xb6, 0x77, 0x56
|
||||
},
|
||||
{
|
||||
0x16, 0xfd, 0xda, 0xf3, 0x5e, 0xb9, 0xa6, 0x17, 0x24, 0xb2, 0x16, 0x9f,
|
||||
0xb6, 0x59, 0x13, 0x0f, 0x25, 0x5a, 0xf1, 0x5b, 0x5f, 0xe4, 0x54, 0x2a,
|
||||
0xa7, 0xbf, 0x29, 0xaf, 0x5a, 0x77, 0xf4, 0x4f, 0x25, 0xba, 0x94, 0xad,
|
||||
0x6b, 0x91, 0x3b, 0xe7, 0xd5, 0x73, 0x0d, 0xff, 0xaa, 0xe3, 0x72, 0x2c
|
||||
},
|
||||
{
|
||||
0x22, 0xb4, 0x94, 0xc0, 0x53, 0xd7, 0x82, 0x06, 0x38, 0x9d, 0x4a, 0xa0,
|
||||
0x3f, 0xf1, 0x5f, 0x6e, 0x23, 0x8d, 0x09, 0x62, 0xbf, 0x6f, 0x7c, 0x84,
|
||||
0xc6, 0x3e, 0x15, 0xad, 0x18, 0x37, 0x76, 0x29, 0xc7, 0xd6, 0x68, 0x0c,
|
||||
0x1e, 0xc6, 0x93, 0x31, 0xef, 0x85, 0x69, 0x30, 0x68, 0xf0, 0x1e, 0x37
|
||||
},
|
||||
{
|
||||
0x6d, 0x4d, 0x20, 0xaf, 0x47, 0xe8, 0x1b, 0xfa, 0xd0, 0xb6, 0xc8, 0x97,
|
||||
0xd1, 0x03, 0xfc, 0x9d, 0x59, 0xa0, 0x68, 0x9d, 0xe9, 0x17, 0x8b, 0xce,
|
||||
0x48, 0x2c, 0x77, 0x8a, 0x22, 0x4b, 0x5c, 0x54, 0x22, 0xa1, 0x15, 0x12,
|
||||
0xe1, 0x07, 0x8e, 0x15, 0xd8, 0x7b, 0x16, 0x65, 0x99, 0x6b, 0xcb, 0x71
|
||||
},
|
||||
{
|
||||
0x79, 0x64, 0x79, 0xdd, 0x75, 0x5c, 0x6f, 0x98, 0xac, 0x03, 0xe0, 0xcd,
|
||||
0x92, 0xba, 0x0e, 0x2d, 0xb4, 0xd1, 0x8b, 0x97, 0xd0, 0x85, 0xbb, 0x2e,
|
||||
0x4f, 0x26, 0x93, 0xf5, 0x1d, 0xf3, 0xd2, 0x43, 0x4f, 0xd2, 0x47, 0xaa,
|
||||
0x91, 0x1e, 0xf3, 0x67, 0x10, 0x18, 0x2c, 0xb9, 0x01, 0xba, 0x10, 0x9f
|
||||
},
|
||||
{
|
||||
0x79, 0xb6, 0x9c, 0xbe, 0xf1, 0x6a, 0xb0, 0x92, 0xa0, 0x29, 0x52, 0x61,
|
||||
0xf1, 0xcd, 0x3a, 0x67, 0xe1, 0x6b, 0xb8, 0x9d, 0x0d, 0x95, 0xb6, 0x03,
|
||||
0x80, 0x1f, 0xd5, 0x75, 0xb6, 0x1d, 0x79, 0x02, 0x93, 0x43, 0x77, 0xa7,
|
||||
0x9d, 0x2f, 0xc3, 0x84, 0xc6, 0x83, 0x76, 0x16, 0x06, 0x98, 0x7b, 0x79
|
||||
}
|
||||
},
|
||||
#endif /* WOLFSSL_SHA384 */
|
||||
};
|
||||
|
||||
const char protocolLabel[] = "tls13 ";
|
||||
const char ceTrafficLabel[] = "c e traffic";
|
||||
const char eExpMasterLabel[] = "e exp master";
|
||||
const char cHsTrafficLabel[] = "c hs traffic";
|
||||
const char sHsTrafficLabel[] = "s hs traffic";
|
||||
const char cAppTrafficLabel[] = "c ap traffic";
|
||||
const char sAppTrafficLabel[] = "s ap traffic";
|
||||
const char expMasterLabel[] = "exp master";
|
||||
const char resMasterLabel[] = "res master";
|
||||
const char derivedLabel[] = "derived";
|
||||
|
||||
|
||||
int tls13_kdf_test(void)
|
||||
{
|
||||
int ret = 0;
|
||||
word32 i;
|
||||
word32 tc = sizeof(tls13KdfTestVectors)/sizeof(Tls13KdfTestVector);
|
||||
const Tls13KdfTestVector* tv = NULL;
|
||||
|
||||
for (i = 0, tv = tls13KdfTestVectors; i < tc; i++, tv++) {
|
||||
byte output[WC_MAX_DIGEST_SIZE];
|
||||
byte secret[WC_MAX_DIGEST_SIZE];
|
||||
byte salt[WC_MAX_DIGEST_SIZE];
|
||||
byte zeroes[WC_MAX_DIGEST_SIZE];
|
||||
byte hashZero[WC_MAX_DIGEST_SIZE];
|
||||
int hashAlgSz;
|
||||
|
||||
XMEMSET(zeroes, 0, sizeof zeroes);
|
||||
|
||||
hashAlgSz = wc_HashGetDigestSize(tv->hashAlg);
|
||||
if (hashAlgSz == BAD_FUNC_ARG) break;
|
||||
ret = wc_Hash(tv->hashAlg, NULL, 0, hashZero, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Extract(secret, NULL, 0,
|
||||
(tv->pskSz == 0) ? zeroes : (byte*)tv->psk,
|
||||
tv->pskSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)ceTrafficLabel, (word32)strlen(ceTrafficLabel),
|
||||
tv->hashHello1, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->clientEarlyTrafficSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)eExpMasterLabel, (word32)strlen(eExpMasterLabel),
|
||||
tv->hashHello1, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->earlyExporterMasterSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(salt, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)derivedLabel, (word32)strlen(derivedLabel),
|
||||
hashZero, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Extract(secret, salt, hashAlgSz,
|
||||
(tv->dheSz == 0) ? zeroes : (byte*)tv->dhe,
|
||||
tv->dheSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)cHsTrafficLabel, (word32)strlen(cHsTrafficLabel),
|
||||
tv->hashHello2, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->clientHandshakeTrafficSecret,
|
||||
output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)sHsTrafficLabel, (word32)strlen(sHsTrafficLabel),
|
||||
tv->hashHello2, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->serverHandshakeTrafficSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(salt, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)derivedLabel, (word32)strlen(derivedLabel),
|
||||
hashZero, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Extract(secret, salt, hashAlgSz,
|
||||
zeroes, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)cAppTrafficLabel, (word32)strlen(cAppTrafficLabel),
|
||||
tv->hashFinished1, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->clientApplicationTrafficSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)sAppTrafficLabel, (word32)strlen(sAppTrafficLabel),
|
||||
tv->hashFinished1, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->serverApplicationTrafficSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)expMasterLabel, (word32)strlen(expMasterLabel),
|
||||
tv->hashFinished1, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->exporterMasterSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = wc_Tls13_HKDF_Expand_Label(output, hashAlgSz,
|
||||
secret, hashAlgSz,
|
||||
(byte*)protocolLabel, (word32)strlen(protocolLabel),
|
||||
(byte*)resMasterLabel, (word32)strlen(resMasterLabel),
|
||||
tv->hashFinished2, hashAlgSz, tv->hashAlg);
|
||||
if (ret != 0) break;
|
||||
|
||||
ret = XMEMCMP(tv->resumptionMasterSecret, output, hashAlgSz);
|
||||
if (ret != 0) break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif /* WOLFSSL_TLS13 */
|
||||
|
||||
|
||||
#if defined(HAVE_ECC) && defined(HAVE_X963_KDF)
|
||||
|
||||
WOLFSSL_TEST_SUBROUTINE int x963kdf_test(void)
|
||||
|
Reference in New Issue
Block a user