1e1051a39Sopenharmony_ci/* 2e1051a39Sopenharmony_ci * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved. 3e1051a39Sopenharmony_ci * 4e1051a39Sopenharmony_ci * Licensed under the Apache License 2.0 (the "License"). You may not use 5e1051a39Sopenharmony_ci * this file except in compliance with the License. You can obtain a copy 6e1051a39Sopenharmony_ci * in the file LICENSE in the source distribution or at 7e1051a39Sopenharmony_ci * https://www.openssl.org/source/license.html 8e1051a39Sopenharmony_ci */ 9e1051a39Sopenharmony_ci 10e1051a39Sopenharmony_ci/* Macros to build Self test data */ 11e1051a39Sopenharmony_ci#define ITM(x) ((void *)&x), sizeof(x) 12e1051a39Sopenharmony_ci#define ITM_STR(x) ((void *)&x), (sizeof(x) - 1) 13e1051a39Sopenharmony_ci 14e1051a39Sopenharmony_ci#define ST_KAT_PARAM_END() { "", 0, NULL, 0 } 15e1051a39Sopenharmony_ci#define ST_KAT_PARAM_BIGNUM(name, data) \ 16e1051a39Sopenharmony_ci { name, OSSL_PARAM_UNSIGNED_INTEGER, ITM(data) } 17e1051a39Sopenharmony_ci#define ST_KAT_PARAM_OCTET(name, data) \ 18e1051a39Sopenharmony_ci { name, OSSL_PARAM_OCTET_STRING, ITM(data) } 19e1051a39Sopenharmony_ci#define ST_KAT_PARAM_UTF8STRING(name, data) \ 20e1051a39Sopenharmony_ci { name, OSSL_PARAM_UTF8_STRING, ITM_STR(data) } 21e1051a39Sopenharmony_ci#define ST_KAT_PARAM_UTF8CHAR(name, data) \ 22e1051a39Sopenharmony_ci { name, OSSL_PARAM_UTF8_STRING, ITM(data) } 23e1051a39Sopenharmony_ci#define ST_KAT_PARAM_INT(name, i) \ 24e1051a39Sopenharmony_ci { name, OSSL_PARAM_INTEGER, ITM(i) } 25e1051a39Sopenharmony_ci 26e1051a39Sopenharmony_ci/* used to store raw parameters for keys and algorithms */ 27e1051a39Sopenharmony_citypedef struct st_kat_param_st { 28e1051a39Sopenharmony_ci const char *name; /* an OSSL_PARAM name */ 29e1051a39Sopenharmony_ci size_t type; /* the type associated with the data */ 30e1051a39Sopenharmony_ci const void *data; /* unsigned char [], or char [] depending on the type */ 31e1051a39Sopenharmony_ci size_t data_len; /* the length of the data */ 32e1051a39Sopenharmony_ci} ST_KAT_PARAM; 33e1051a39Sopenharmony_ci 34e1051a39Sopenharmony_citypedef struct st_kat_st { 35e1051a39Sopenharmony_ci const char *desc; 36e1051a39Sopenharmony_ci const char *algorithm; 37e1051a39Sopenharmony_ci const unsigned char *pt; 38e1051a39Sopenharmony_ci size_t pt_len; 39e1051a39Sopenharmony_ci const unsigned char *expected; 40e1051a39Sopenharmony_ci size_t expected_len; 41e1051a39Sopenharmony_ci} ST_KAT; 42e1051a39Sopenharmony_ci 43e1051a39Sopenharmony_ci#define CIPHER_MODE_ENCRYPT 1 44e1051a39Sopenharmony_ci#define CIPHER_MODE_DECRYPT 2 45e1051a39Sopenharmony_ci#define CIPHER_MODE_ALL (CIPHER_MODE_ENCRYPT | CIPHER_MODE_DECRYPT) 46e1051a39Sopenharmony_ci 47e1051a39Sopenharmony_citypedef ST_KAT ST_KAT_DIGEST; 48e1051a39Sopenharmony_citypedef struct st_kat_cipher_st { 49e1051a39Sopenharmony_ci ST_KAT base; 50e1051a39Sopenharmony_ci int mode; 51e1051a39Sopenharmony_ci const unsigned char *key; 52e1051a39Sopenharmony_ci size_t key_len; 53e1051a39Sopenharmony_ci const unsigned char *iv; 54e1051a39Sopenharmony_ci size_t iv_len; 55e1051a39Sopenharmony_ci const unsigned char *aad; 56e1051a39Sopenharmony_ci size_t aad_len; 57e1051a39Sopenharmony_ci const unsigned char *tag; 58e1051a39Sopenharmony_ci size_t tag_len; 59e1051a39Sopenharmony_ci} ST_KAT_CIPHER; 60e1051a39Sopenharmony_ci 61e1051a39Sopenharmony_citypedef struct st_kat_kdf_st { 62e1051a39Sopenharmony_ci const char *desc; 63e1051a39Sopenharmony_ci const char *algorithm; 64e1051a39Sopenharmony_ci const ST_KAT_PARAM *params; 65e1051a39Sopenharmony_ci const unsigned char *expected; 66e1051a39Sopenharmony_ci size_t expected_len; 67e1051a39Sopenharmony_ci} ST_KAT_KDF; 68e1051a39Sopenharmony_ci 69e1051a39Sopenharmony_citypedef struct st_kat_drbg_st { 70e1051a39Sopenharmony_ci const char *desc; 71e1051a39Sopenharmony_ci const char *algorithm; 72e1051a39Sopenharmony_ci const char *param_name; 73e1051a39Sopenharmony_ci char *param_value; 74e1051a39Sopenharmony_ci const unsigned char *entropyin; 75e1051a39Sopenharmony_ci size_t entropyinlen; 76e1051a39Sopenharmony_ci const unsigned char *nonce; 77e1051a39Sopenharmony_ci size_t noncelen; 78e1051a39Sopenharmony_ci const unsigned char *persstr; 79e1051a39Sopenharmony_ci size_t persstrlen; 80e1051a39Sopenharmony_ci const unsigned char *entropyinpr1; 81e1051a39Sopenharmony_ci size_t entropyinpr1len; 82e1051a39Sopenharmony_ci const unsigned char *entropyinpr2; 83e1051a39Sopenharmony_ci size_t entropyinpr2len; 84e1051a39Sopenharmony_ci const unsigned char *entropyaddin1; 85e1051a39Sopenharmony_ci size_t entropyaddin1len; 86e1051a39Sopenharmony_ci const unsigned char *entropyaddin2; 87e1051a39Sopenharmony_ci size_t entropyaddin2len; 88e1051a39Sopenharmony_ci const unsigned char *expected; 89e1051a39Sopenharmony_ci size_t expectedlen; 90e1051a39Sopenharmony_ci} ST_KAT_DRBG; 91e1051a39Sopenharmony_ci 92e1051a39Sopenharmony_citypedef struct st_kat_kas_st { 93e1051a39Sopenharmony_ci const char *desc; 94e1051a39Sopenharmony_ci const char *algorithm; 95e1051a39Sopenharmony_ci 96e1051a39Sopenharmony_ci const ST_KAT_PARAM *key_group; 97e1051a39Sopenharmony_ci const ST_KAT_PARAM *key_host_data; 98e1051a39Sopenharmony_ci const ST_KAT_PARAM *key_peer_data; 99e1051a39Sopenharmony_ci 100e1051a39Sopenharmony_ci const unsigned char *expected; 101e1051a39Sopenharmony_ci size_t expected_len; 102e1051a39Sopenharmony_ci} ST_KAT_KAS; 103e1051a39Sopenharmony_ci 104e1051a39Sopenharmony_citypedef struct st_kat_sign_st { 105e1051a39Sopenharmony_ci const char *desc; 106e1051a39Sopenharmony_ci const char *algorithm; 107e1051a39Sopenharmony_ci const char *mdalgorithm; 108e1051a39Sopenharmony_ci const ST_KAT_PARAM *key; 109e1051a39Sopenharmony_ci const unsigned char *sig_expected; /* Set to NULL if this value changes */ 110e1051a39Sopenharmony_ci size_t sig_expected_len; 111e1051a39Sopenharmony_ci} ST_KAT_SIGN; 112e1051a39Sopenharmony_ci 113e1051a39Sopenharmony_citypedef struct st_kat_asym_cipher_st { 114e1051a39Sopenharmony_ci const char *desc; 115e1051a39Sopenharmony_ci const char *algorithm; 116e1051a39Sopenharmony_ci int encrypt; 117e1051a39Sopenharmony_ci const ST_KAT_PARAM *key; 118e1051a39Sopenharmony_ci const ST_KAT_PARAM *postinit; 119e1051a39Sopenharmony_ci const unsigned char *in; 120e1051a39Sopenharmony_ci size_t in_len; 121e1051a39Sopenharmony_ci const unsigned char *expected; 122e1051a39Sopenharmony_ci size_t expected_len; 123e1051a39Sopenharmony_ci} ST_KAT_ASYM_CIPHER; 124e1051a39Sopenharmony_ci 125e1051a39Sopenharmony_ci/*- DIGEST TEST DATA */ 126e1051a39Sopenharmony_cistatic const unsigned char sha1_pt[] = "abc"; 127e1051a39Sopenharmony_cistatic const unsigned char sha1_digest[] = { 128e1051a39Sopenharmony_ci 0xA9, 0x99, 0x3E, 0x36, 0x47, 0x06, 0x81, 0x6A, 0xBA, 0x3E, 0x25, 0x71, 129e1051a39Sopenharmony_ci 0x78, 0x50, 0xC2, 0x6C, 0x9C, 0xD0, 0xD8, 0x9D 130e1051a39Sopenharmony_ci}; 131e1051a39Sopenharmony_ci 132e1051a39Sopenharmony_cistatic const unsigned char sha512_pt[] = "abc"; 133e1051a39Sopenharmony_cistatic const unsigned char sha512_digest[] = { 134e1051a39Sopenharmony_ci 0xDD, 0xAF, 0x35, 0xA1, 0x93, 0x61, 0x7A, 0xBA, 0xCC, 0x41, 0x73, 0x49, 135e1051a39Sopenharmony_ci 0xAE, 0x20, 0x41, 0x31, 0x12, 0xE6, 0xFA, 0x4E, 0x89, 0xA9, 0x7E, 0xA2, 136e1051a39Sopenharmony_ci 0x0A, 0x9E, 0xEE, 0xE6, 0x4B, 0x55, 0xD3, 0x9A, 0x21, 0x92, 0x99, 0x2A, 137e1051a39Sopenharmony_ci 0x27, 0x4F, 0xC1, 0xA8, 0x36, 0xBA, 0x3C, 0x23, 0xA3, 0xFE, 0xEB, 0xBD, 138e1051a39Sopenharmony_ci 0x45, 0x4D, 0x44, 0x23, 0x64, 0x3C, 0xE8, 0x0E, 0x2A, 0x9A, 0xC9, 0x4F, 139e1051a39Sopenharmony_ci 0xA5, 0x4C, 0xA4, 0x9F 140e1051a39Sopenharmony_ci}; 141e1051a39Sopenharmony_cistatic const unsigned char sha3_256_pt[] = { 0xe7, 0x37, 0x21, 0x05 }; 142e1051a39Sopenharmony_cistatic const unsigned char sha3_256_digest[] = { 143e1051a39Sopenharmony_ci 0x3a, 0x42, 0xb6, 0x8a, 0xb0, 0x79, 0xf2, 0x8c, 0x4c, 0xa3, 0xc7, 0x52, 144e1051a39Sopenharmony_ci 0x29, 0x6f, 0x27, 0x90, 0x06, 0xc4, 0xfe, 0x78, 0xb1, 0xeb, 0x79, 0xd9, 145e1051a39Sopenharmony_ci 0x89, 0x77, 0x7f, 0x05, 0x1e, 0x40, 0x46, 0xae 146e1051a39Sopenharmony_ci}; 147e1051a39Sopenharmony_ci 148e1051a39Sopenharmony_cistatic const ST_KAT_DIGEST st_kat_digest_tests[] = 149e1051a39Sopenharmony_ci{ 150e1051a39Sopenharmony_ci { 151e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_MD_SHA1, 152e1051a39Sopenharmony_ci "SHA1", 153e1051a39Sopenharmony_ci ITM_STR(sha1_pt), 154e1051a39Sopenharmony_ci ITM(sha1_digest), 155e1051a39Sopenharmony_ci }, 156e1051a39Sopenharmony_ci { 157e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_MD_SHA2, 158e1051a39Sopenharmony_ci "SHA512", 159e1051a39Sopenharmony_ci ITM_STR(sha512_pt), 160e1051a39Sopenharmony_ci ITM(sha512_digest), 161e1051a39Sopenharmony_ci }, 162e1051a39Sopenharmony_ci { 163e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_MD_SHA3, 164e1051a39Sopenharmony_ci "SHA3-256", 165e1051a39Sopenharmony_ci ITM(sha3_256_pt), 166e1051a39Sopenharmony_ci ITM(sha3_256_digest), 167e1051a39Sopenharmony_ci }, 168e1051a39Sopenharmony_ci}; 169e1051a39Sopenharmony_ci 170e1051a39Sopenharmony_ci 171e1051a39Sopenharmony_ci/*- CIPHER TEST DATA */ 172e1051a39Sopenharmony_ci 173e1051a39Sopenharmony_ci/* DES3 test data */ 174e1051a39Sopenharmony_cistatic const unsigned char des_ede3_cbc_pt[] = { 175e1051a39Sopenharmony_ci 0x6B, 0xC1, 0xBE, 0xE2, 0x2E, 0x40, 0x9F, 0x96, 176e1051a39Sopenharmony_ci 0xE9, 0x3D, 0x7E, 0x11, 0x73, 0x93, 0x17, 0x2A, 177e1051a39Sopenharmony_ci 0xAE, 0x2D, 0x8A, 0x57, 0x1E, 0x03, 0xAC, 0x9C, 178e1051a39Sopenharmony_ci 0x9E, 0xB7, 0x6F, 0xAC, 0x45, 0xAF, 0x8E, 0x51 179e1051a39Sopenharmony_ci}; 180e1051a39Sopenharmony_cistatic const unsigned char des_ede3_cbc_key[] = { 181e1051a39Sopenharmony_ci 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 182e1051a39Sopenharmony_ci 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0x01, 183e1051a39Sopenharmony_ci 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0x01, 0x23 184e1051a39Sopenharmony_ci}; 185e1051a39Sopenharmony_cistatic const unsigned char des_ede3_cbc_iv[] = { 186e1051a39Sopenharmony_ci 0xF6, 0x9F, 0x24, 0x45, 0xDF, 0x4F, 0x9B, 0x17 187e1051a39Sopenharmony_ci}; 188e1051a39Sopenharmony_cistatic const unsigned char des_ede3_cbc_ct[] = { 189e1051a39Sopenharmony_ci 0x20, 0x79, 0xC3, 0xD5, 0x3A, 0xA7, 0x63, 0xE1, 190e1051a39Sopenharmony_ci 0x93, 0xB7, 0x9E, 0x25, 0x69, 0xAB, 0x52, 0x62, 191e1051a39Sopenharmony_ci 0x51, 0x65, 0x70, 0x48, 0x1F, 0x25, 0xB5, 0x0F, 192e1051a39Sopenharmony_ci 0x73, 0xC0, 0xBD, 0xA8, 0x5C, 0x8E, 0x0D, 0xA7 193e1051a39Sopenharmony_ci}; 194e1051a39Sopenharmony_ci 195e1051a39Sopenharmony_ci/* AES-256 GCM test data */ 196e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_key[] = { 197e1051a39Sopenharmony_ci 0x92, 0xe1, 0x1d, 0xcd, 0xaa, 0x86, 0x6f, 0x5c, 198e1051a39Sopenharmony_ci 0xe7, 0x90, 0xfd, 0x24, 0x50, 0x1f, 0x92, 0x50, 199e1051a39Sopenharmony_ci 0x9a, 0xac, 0xf4, 0xcb, 0x8b, 0x13, 0x39, 0xd5, 200e1051a39Sopenharmony_ci 0x0c, 0x9c, 0x12, 0x40, 0x93, 0x5d, 0xd0, 0x8b 201e1051a39Sopenharmony_ci}; 202e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_iv[] = { 203e1051a39Sopenharmony_ci 0xac, 0x93, 0xa1, 0xa6, 0x14, 0x52, 0x99, 0xbd, 204e1051a39Sopenharmony_ci 0xe9, 0x02, 0xf2, 0x1a 205e1051a39Sopenharmony_ci}; 206e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_pt[] = { 207e1051a39Sopenharmony_ci 0x2d, 0x71, 0xbc, 0xfa, 0x91, 0x4e, 0x4a, 0xc0, 208e1051a39Sopenharmony_ci 0x45, 0xb2, 0xaa, 0x60, 0x95, 0x5f, 0xad, 0x24 209e1051a39Sopenharmony_ci}; 210e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_aad[] = { 211e1051a39Sopenharmony_ci 0x1e, 0x08, 0x89, 0x01, 0x6f, 0x67, 0x60, 0x1c, 212e1051a39Sopenharmony_ci 0x8e, 0xbe, 0xa4, 0x94, 0x3b, 0xc2, 0x3a, 0xd6 213e1051a39Sopenharmony_ci}; 214e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_ct[] = { 215e1051a39Sopenharmony_ci 0x89, 0x95, 0xae, 0x2e, 0x6d, 0xf3, 0xdb, 0xf9, 216e1051a39Sopenharmony_ci 0x6f, 0xac, 0x7b, 0x71, 0x37, 0xba, 0xe6, 0x7f 217e1051a39Sopenharmony_ci}; 218e1051a39Sopenharmony_cistatic const unsigned char aes_256_gcm_tag[] = { 219e1051a39Sopenharmony_ci 0xec, 0xa5, 0xaa, 0x77, 0xd5, 0x1d, 0x4a, 0x0a, 220e1051a39Sopenharmony_ci 0x14, 0xd9, 0xc5, 0x1e, 0x1d, 0xa4, 0x74, 0xab 221e1051a39Sopenharmony_ci}; 222e1051a39Sopenharmony_ci 223e1051a39Sopenharmony_ci/* AES-ECB test data */ 224e1051a39Sopenharmony_cistatic const unsigned char aes_128_ecb_key[] = { 225e1051a39Sopenharmony_ci 0x10, 0xa5, 0x88, 0x69, 0xd7, 0x4b, 0xe5, 0xa3, 226e1051a39Sopenharmony_ci 0x74, 0xcf, 0x86, 0x7c, 0xfb, 0x47, 0x38, 0x59 227e1051a39Sopenharmony_ci}; 228e1051a39Sopenharmony_cistatic const unsigned char aes_128_ecb_pt[] = { 229e1051a39Sopenharmony_ci 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 230e1051a39Sopenharmony_ci 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 231e1051a39Sopenharmony_ci}; 232e1051a39Sopenharmony_cistatic const unsigned char aes_128_ecb_ct[] = { 233e1051a39Sopenharmony_ci 0x6d, 0x25, 0x1e, 0x69, 0x44, 0xb0, 0x51, 0xe0, 234e1051a39Sopenharmony_ci 0x4e, 0xaa, 0x6f, 0xb4, 0xdb, 0xf7, 0x84, 0x65 235e1051a39Sopenharmony_ci}; 236e1051a39Sopenharmony_ci 237e1051a39Sopenharmony_cistatic const ST_KAT_CIPHER st_kat_cipher_tests[] = { 238e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_DES 239e1051a39Sopenharmony_ci { 240e1051a39Sopenharmony_ci { 241e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_CIPHER_TDES, 242e1051a39Sopenharmony_ci "DES-EDE3-CBC", 243e1051a39Sopenharmony_ci ITM(des_ede3_cbc_pt), 244e1051a39Sopenharmony_ci ITM(des_ede3_cbc_ct) 245e1051a39Sopenharmony_ci }, 246e1051a39Sopenharmony_ci CIPHER_MODE_ENCRYPT | CIPHER_MODE_DECRYPT, 247e1051a39Sopenharmony_ci ITM(des_ede3_cbc_key), 248e1051a39Sopenharmony_ci ITM(des_ede3_cbc_iv), 249e1051a39Sopenharmony_ci }, 250e1051a39Sopenharmony_ci#endif 251e1051a39Sopenharmony_ci { 252e1051a39Sopenharmony_ci { 253e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_CIPHER_AES_GCM, 254e1051a39Sopenharmony_ci "AES-256-GCM", 255e1051a39Sopenharmony_ci ITM(aes_256_gcm_pt), 256e1051a39Sopenharmony_ci ITM(aes_256_gcm_ct) 257e1051a39Sopenharmony_ci }, 258e1051a39Sopenharmony_ci CIPHER_MODE_ENCRYPT | CIPHER_MODE_DECRYPT, 259e1051a39Sopenharmony_ci ITM(aes_256_gcm_key), 260e1051a39Sopenharmony_ci ITM(aes_256_gcm_iv), 261e1051a39Sopenharmony_ci ITM(aes_256_gcm_aad), 262e1051a39Sopenharmony_ci ITM(aes_256_gcm_tag) 263e1051a39Sopenharmony_ci }, 264e1051a39Sopenharmony_ci { 265e1051a39Sopenharmony_ci { 266e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_CIPHER_AES_ECB, 267e1051a39Sopenharmony_ci "AES-128-ECB", 268e1051a39Sopenharmony_ci ITM(aes_128_ecb_pt), 269e1051a39Sopenharmony_ci ITM(aes_128_ecb_ct) 270e1051a39Sopenharmony_ci }, 271e1051a39Sopenharmony_ci CIPHER_MODE_DECRYPT, 272e1051a39Sopenharmony_ci ITM(aes_128_ecb_key) 273e1051a39Sopenharmony_ci } 274e1051a39Sopenharmony_ci}; 275e1051a39Sopenharmony_ci 276e1051a39Sopenharmony_cistatic const char hkdf_digest[] = "SHA256"; 277e1051a39Sopenharmony_cistatic const unsigned char hkdf_secret[] = { 's', 'e', 'c', 'r', 'e', 't' }; 278e1051a39Sopenharmony_cistatic const unsigned char hkdf_salt[] = { 's', 'a', 'l', 't' }; 279e1051a39Sopenharmony_cistatic const unsigned char hkdf_info[] = { 'l', 'a', 'b', 'e', 'l' }; 280e1051a39Sopenharmony_ci 281e1051a39Sopenharmony_cistatic const ST_KAT_PARAM hkdf_params[] = { 282e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, hkdf_digest), 283e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, hkdf_secret), 284e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SALT, hkdf_salt), 285e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_INFO, hkdf_info), 286e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 287e1051a39Sopenharmony_ci}; 288e1051a39Sopenharmony_cistatic const unsigned char hkdf_expected[] = { 289e1051a39Sopenharmony_ci 0x2a, 0xc4, 0x36, 0x9f, 0x52, 0x59, 0x96, 0xf8, 290e1051a39Sopenharmony_ci 0xde, 0x13 291e1051a39Sopenharmony_ci}; 292e1051a39Sopenharmony_ci 293e1051a39Sopenharmony_cistatic const char sskdf_digest[] = "SHA224"; 294e1051a39Sopenharmony_cistatic const unsigned char sskdf_secret[] = { 295e1051a39Sopenharmony_ci 0x6d, 0xbd, 0xc2, 0x3f, 0x04, 0x54, 0x88, 0xe4, 296e1051a39Sopenharmony_ci 0x06, 0x27, 0x57, 0xb0, 0x6b, 0x9e, 0xba, 0xe1, 297e1051a39Sopenharmony_ci 0x83, 0xfc, 0x5a, 0x59, 0x46, 0xd8, 0x0d, 0xb9, 298e1051a39Sopenharmony_ci 0x3f, 0xec, 0x6f, 0x62, 0xec, 0x07, 0xe3, 0x72, 299e1051a39Sopenharmony_ci 0x7f, 0x01, 0x26, 0xae, 0xd1, 0x2c, 0xe4, 0xb2, 300e1051a39Sopenharmony_ci 0x62, 0xf4, 0x7d, 0x48, 0xd5, 0x42, 0x87, 0xf8, 301e1051a39Sopenharmony_ci 0x1d, 0x47, 0x4c, 0x7c, 0x3b, 0x18, 0x50, 0xe9 302e1051a39Sopenharmony_ci}; 303e1051a39Sopenharmony_cistatic const unsigned char sskdf_otherinfo[] = { 304e1051a39Sopenharmony_ci 0xa1, 0xb2, 0xc3, 0xd4, 0xe5, 0x43, 0x41, 0x56, 305e1051a39Sopenharmony_ci 0x53, 0x69, 0x64, 0x3c, 0x83, 0x2e, 0x98, 0x49, 306e1051a39Sopenharmony_ci 0xdc, 0xdb, 0xa7, 0x1e, 0x9a, 0x31, 0x39, 0xe6, 307e1051a39Sopenharmony_ci 0x06, 0xe0, 0x95, 0xde, 0x3c, 0x26, 0x4a, 0x66, 308e1051a39Sopenharmony_ci 0xe9, 0x8a, 0x16, 0x58, 0x54, 0xcd, 0x07, 0x98, 309e1051a39Sopenharmony_ci 0x9b, 0x1e, 0xe0, 0xec, 0x3f, 0x8d, 0xbe 310e1051a39Sopenharmony_ci}; 311e1051a39Sopenharmony_cistatic const unsigned char sskdf_expected[] = { 312e1051a39Sopenharmony_ci 0xa4, 0x62, 0xde, 0x16, 0xa8, 0x9d, 0xe8, 0x46, 313e1051a39Sopenharmony_ci 0x6e, 0xf5, 0x46, 0x0b, 0x47, 0xb8 314e1051a39Sopenharmony_ci}; 315e1051a39Sopenharmony_cistatic const ST_KAT_PARAM sskdf_params[] = { 316e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, sskdf_digest), 317e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, sskdf_secret), 318e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_INFO, sskdf_otherinfo), 319e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 320e1051a39Sopenharmony_ci}; 321e1051a39Sopenharmony_ci 322e1051a39Sopenharmony_cistatic const char x942kdf_digest[] = "SHA1"; 323e1051a39Sopenharmony_cistatic const char x942kdf_cekalg[] = "AES-128-WRAP"; 324e1051a39Sopenharmony_cistatic const unsigned char x942kdf_secret[] = { 325e1051a39Sopenharmony_ci 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 326e1051a39Sopenharmony_ci 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 327e1051a39Sopenharmony_ci 0x10, 0x11, 0x12, 0x13 328e1051a39Sopenharmony_ci}; 329e1051a39Sopenharmony_cistatic const unsigned char x942kdf_expected[] = { 330e1051a39Sopenharmony_ci 0xd6, 0xd6, 0xb0, 0x94, 0xc1, 0x02, 0x7a, 0x7d, 331e1051a39Sopenharmony_ci 0xe6, 0xe3, 0x11, 0x72, 0x94, 0xa3, 0x53, 0x64 332e1051a39Sopenharmony_ci}; 333e1051a39Sopenharmony_cistatic const ST_KAT_PARAM x942kdf_params[] = { 334e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, x942kdf_digest), 335e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_CEK_ALG, x942kdf_cekalg), 336e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, x942kdf_secret), 337e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 338e1051a39Sopenharmony_ci}; 339e1051a39Sopenharmony_ci 340e1051a39Sopenharmony_cistatic const char x963kdf_digest[] = "SHA256"; 341e1051a39Sopenharmony_cistatic const unsigned char x963kdf_otherinfo[] = { 342e1051a39Sopenharmony_ci 0x75, 0xee, 0xf8, 0x1a, 0xa3, 0x04, 0x1e, 0x33, 343e1051a39Sopenharmony_ci 0xb8, 0x09, 0x71, 0x20, 0x3d, 0x2c, 0x0c, 0x52 344e1051a39Sopenharmony_ci}; 345e1051a39Sopenharmony_cistatic const unsigned char x963kdf_secret[] = { 346e1051a39Sopenharmony_ci 0x22, 0x51, 0x8b, 0x10, 0xe7, 0x0f, 0x2a, 0x3f, 347e1051a39Sopenharmony_ci 0x24, 0x38, 0x10, 0xae, 0x32, 0x54, 0x13, 0x9e, 348e1051a39Sopenharmony_ci 0xfb, 0xee, 0x04, 0xaa, 0x57, 0xc7, 0xaf, 0x7d 349e1051a39Sopenharmony_ci}; 350e1051a39Sopenharmony_cistatic const unsigned char x963kdf_expected[] = { 351e1051a39Sopenharmony_ci 0xc4, 0x98, 0xaf, 0x77, 0x16, 0x1c, 0xc5, 0x9f, 352e1051a39Sopenharmony_ci 0x29, 0x62, 0xb9, 0xa7, 0x13, 0xe2, 0xb2, 0x15, 353e1051a39Sopenharmony_ci 0x15, 0x2d, 0x13, 0x97, 0x66, 0xce, 0x34, 0xa7, 354e1051a39Sopenharmony_ci 0x76, 0xdf, 0x11, 0x86, 0x6a, 0x69, 0xbf, 0x2e 355e1051a39Sopenharmony_ci}; 356e1051a39Sopenharmony_cistatic const ST_KAT_PARAM x963kdf_params[] = { 357e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, x963kdf_digest), 358e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, x963kdf_secret), 359e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_INFO, x963kdf_otherinfo), 360e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 361e1051a39Sopenharmony_ci}; 362e1051a39Sopenharmony_ci 363e1051a39Sopenharmony_cistatic const char pbkdf2_digest[] = "SHA256"; 364e1051a39Sopenharmony_cistatic const unsigned char pbkdf2_password[] = { 365e1051a39Sopenharmony_ci 0x70, 0x61, 0x73, 0x73, 0x00, 0x77, 0x6f, 0x72, 366e1051a39Sopenharmony_ci 0x64 367e1051a39Sopenharmony_ci}; 368e1051a39Sopenharmony_cistatic const unsigned char pbkdf2_salt[] = { 369e1051a39Sopenharmony_ci 0x73, 0x61, 0x00, 0x6c, 0x74 370e1051a39Sopenharmony_ci}; 371e1051a39Sopenharmony_cistatic const unsigned char pbkdf2_expected[] = { 372e1051a39Sopenharmony_ci 0x89, 0xb6, 0x9d, 0x05, 0x16, 0xf8, 0x29, 0x89, 373e1051a39Sopenharmony_ci 0x3c, 0x69, 0x62, 0x26, 0x65, 0x0a, 0x86, 0x87, 374e1051a39Sopenharmony_ci}; 375e1051a39Sopenharmony_cistatic int pbkdf2_iterations = 4096; 376e1051a39Sopenharmony_cistatic int pbkdf2_pkcs5 = 1; 377e1051a39Sopenharmony_cistatic const ST_KAT_PARAM pbkdf2_params[] = { 378e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, pbkdf2_digest), 379e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_PASSWORD, pbkdf2_password), 380e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SALT, pbkdf2_salt), 381e1051a39Sopenharmony_ci ST_KAT_PARAM_INT(OSSL_KDF_PARAM_ITER, pbkdf2_iterations), 382e1051a39Sopenharmony_ci ST_KAT_PARAM_INT(OSSL_KDF_PARAM_PKCS5, pbkdf2_pkcs5), 383e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 384e1051a39Sopenharmony_ci}; 385e1051a39Sopenharmony_ci 386e1051a39Sopenharmony_cistatic const char sshkdf_digest[] = "SHA1"; 387e1051a39Sopenharmony_cistatic const char sshkdf_type = EVP_KDF_SSHKDF_TYPE_INITIAL_IV_CLI_TO_SRV; 388e1051a39Sopenharmony_cistatic const unsigned char sshkdf_key[] = { 389e1051a39Sopenharmony_ci 0x00, 0x00, 0x00, 0x80, 0x55, 0xba, 0xe9, 0x31, 390e1051a39Sopenharmony_ci 0xc0, 0x7f, 0xd8, 0x24, 0xbf, 0x10, 0xad, 0xd1, 391e1051a39Sopenharmony_ci 0x90, 0x2b, 0x6f, 0xbc, 0x7c, 0x66, 0x53, 0x47, 392e1051a39Sopenharmony_ci 0x38, 0x34, 0x98, 0xa6, 0x86, 0x92, 0x9f, 0xf5, 393e1051a39Sopenharmony_ci 0xa2, 0x5f, 0x8e, 0x40, 0xcb, 0x66, 0x45, 0xea, 394e1051a39Sopenharmony_ci 0x81, 0x4f, 0xb1, 0xa5, 0xe0, 0xa1, 0x1f, 0x85, 395e1051a39Sopenharmony_ci 0x2f, 0x86, 0x25, 0x56, 0x41, 0xe5, 0xed, 0x98, 396e1051a39Sopenharmony_ci 0x6e, 0x83, 0xa7, 0x8b, 0xc8, 0x26, 0x94, 0x80, 397e1051a39Sopenharmony_ci 0xea, 0xc0, 0xb0, 0xdf, 0xd7, 0x70, 0xca, 0xb9, 398e1051a39Sopenharmony_ci 0x2e, 0x7a, 0x28, 0xdd, 0x87, 0xff, 0x45, 0x24, 399e1051a39Sopenharmony_ci 0x66, 0xd6, 0xae, 0x86, 0x7c, 0xea, 0xd6, 0x3b, 400e1051a39Sopenharmony_ci 0x36, 0x6b, 0x1c, 0x28, 0x6e, 0x6c, 0x48, 0x11, 401e1051a39Sopenharmony_ci 0xa9, 0xf1, 0x4c, 0x27, 0xae, 0xa1, 0x4c, 0x51, 402e1051a39Sopenharmony_ci 0x71, 0xd4, 0x9b, 0x78, 0xc0, 0x6e, 0x37, 0x35, 403e1051a39Sopenharmony_ci 0xd3, 0x6e, 0x6a, 0x3b, 0xe3, 0x21, 0xdd, 0x5f, 404e1051a39Sopenharmony_ci 0xc8, 0x23, 0x08, 0xf3, 0x4e, 0xe1, 0xcb, 0x17, 405e1051a39Sopenharmony_ci 0xfb, 0xa9, 0x4a, 0x59, 406e1051a39Sopenharmony_ci}; 407e1051a39Sopenharmony_cistatic const unsigned char sshkdf_xcghash[] = { 408e1051a39Sopenharmony_ci 0xa4, 0xeb, 0xd4, 0x59, 0x34, 0xf5, 0x67, 0x92, 409e1051a39Sopenharmony_ci 0xb5, 0x11, 0x2d, 0xcd, 0x75, 0xa1, 0x07, 0x5f, 410e1051a39Sopenharmony_ci 0xdc, 0x88, 0x92, 0x45, 411e1051a39Sopenharmony_ci}; 412e1051a39Sopenharmony_cistatic const unsigned char sshkdf_session_id[] = { 413e1051a39Sopenharmony_ci 0xa4, 0xeb, 0xd4, 0x59, 0x34, 0xf5, 0x67, 0x92, 414e1051a39Sopenharmony_ci 0xb5, 0x11, 0x2d, 0xcd, 0x75, 0xa1, 0x07, 0x5f, 415e1051a39Sopenharmony_ci 0xdc, 0x88, 0x92, 0x45, 416e1051a39Sopenharmony_ci}; 417e1051a39Sopenharmony_cistatic const unsigned char sshkdf_expected[] = { 418e1051a39Sopenharmony_ci 0xe2, 0xf6, 0x27, 0xc0, 0xb4, 0x3f, 0x1a, 0xc1, 419e1051a39Sopenharmony_ci}; 420e1051a39Sopenharmony_cistatic const ST_KAT_PARAM sshkdf_params[] = { 421e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, sshkdf_digest), 422e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8CHAR(OSSL_KDF_PARAM_SSHKDF_TYPE, sshkdf_type), 423e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, sshkdf_key), 424e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SSHKDF_XCGHASH, sshkdf_xcghash), 425e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SSHKDF_SESSION_ID, sshkdf_session_id), 426e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 427e1051a39Sopenharmony_ci}; 428e1051a39Sopenharmony_ci 429e1051a39Sopenharmony_cistatic const char tls12prf_digest[] = "SHA256"; 430e1051a39Sopenharmony_cistatic const unsigned char tls12prf_secret[] = { 431e1051a39Sopenharmony_ci 0x20, 0x2c, 0x88, 0xc0, 0x0f, 0x84, 0xa1, 0x7a, 432e1051a39Sopenharmony_ci 0x20, 0x02, 0x70, 0x79, 0x60, 0x47, 0x87, 0x46, 433e1051a39Sopenharmony_ci 0x11, 0x76, 0x45, 0x55, 0x39, 0xe7, 0x05, 0xbe, 434e1051a39Sopenharmony_ci 0x73, 0x08, 0x90, 0x60, 0x2c, 0x28, 0x9a, 0x50, 435e1051a39Sopenharmony_ci 0x01, 0xe3, 0x4e, 0xeb, 0x3a, 0x04, 0x3e, 0x5d, 436e1051a39Sopenharmony_ci 0x52, 0xa6, 0x5e, 0x66, 0x12, 0x51, 0x88, 0xbf, 437e1051a39Sopenharmony_ci}; 438e1051a39Sopenharmony_cistatic const unsigned char tls12prf_seed[] = { 439e1051a39Sopenharmony_ci 'k', 'e', 'y', ' ', 'e', 'x', 'p', 'a', 'n', 's', 'i', 'o', 'n', 440e1051a39Sopenharmony_ci 0xae, 0x6c, 0x80, 0x6f, 0x8a, 0xd4, 0xd8, 0x07, 441e1051a39Sopenharmony_ci 0x84, 0x54, 0x9d, 0xff, 0x28, 0xa4, 0xb5, 0x8f, 442e1051a39Sopenharmony_ci 0xd8, 0x37, 0x68, 0x1a, 0x51, 0xd9, 0x28, 0xc3, 443e1051a39Sopenharmony_ci 0xe3, 0x0e, 0xe5, 0xff, 0x14, 0xf3, 0x98, 0x68, 444e1051a39Sopenharmony_ci 0x62, 0xe1, 0xfd, 0x91, 0xf2, 0x3f, 0x55, 0x8a, 445e1051a39Sopenharmony_ci 0x60, 0x5f, 0x28, 0x47, 0x8c, 0x58, 0xcf, 0x72, 446e1051a39Sopenharmony_ci 0x63, 0x7b, 0x89, 0x78, 0x4d, 0x95, 0x9d, 0xf7, 447e1051a39Sopenharmony_ci 0xe9, 0x46, 0xd3, 0xf0, 0x7b, 0xd1, 0xb6, 0x16, 448e1051a39Sopenharmony_ci }; 449e1051a39Sopenharmony_cistatic const unsigned char tls12prf_expected[] = { 450e1051a39Sopenharmony_ci 0xd0, 0x61, 0x39, 0x88, 0x9f, 0xff, 0xac, 0x1e, 451e1051a39Sopenharmony_ci 0x3a, 0x71, 0x86, 0x5f, 0x50, 0x4a, 0xa5, 0xd0, 452e1051a39Sopenharmony_ci 0xd2, 0xa2, 0xe8, 0x95, 0x06, 0xc6, 0xf2, 0x27, 453e1051a39Sopenharmony_ci 0x9b, 0x67, 0x0c, 0x3e, 0x1b, 0x74, 0xf5, 0x31, 454e1051a39Sopenharmony_ci 0x01, 0x6a, 0x25, 0x30, 0xc5, 0x1a, 0x3a, 0x0f, 455e1051a39Sopenharmony_ci 0x7e, 0x1d, 0x65, 0x90, 0xd0, 0xf0, 0x56, 0x6b, 456e1051a39Sopenharmony_ci 0x2f, 0x38, 0x7f, 0x8d, 0x11, 0xfd, 0x4f, 0x73, 457e1051a39Sopenharmony_ci 0x1c, 0xdd, 0x57, 0x2d, 0x2e, 0xae, 0x92, 0x7f, 458e1051a39Sopenharmony_ci 0x6f, 0x2f, 0x81, 0x41, 0x0b, 0x25, 0xe6, 0x96, 459e1051a39Sopenharmony_ci 0x0b, 0xe6, 0x89, 0x85, 0xad, 0xd6, 0xc3, 0x84, 460e1051a39Sopenharmony_ci 0x45, 0xad, 0x9f, 0x8c, 0x64, 0xbf, 0x80, 0x68, 461e1051a39Sopenharmony_ci 0xbf, 0x9a, 0x66, 0x79, 0x48, 0x5d, 0x96, 0x6f, 462e1051a39Sopenharmony_ci 0x1a, 0xd6, 0xf6, 0x8b, 0x43, 0x49, 0x5b, 0x10, 463e1051a39Sopenharmony_ci 0xa6, 0x83, 0x75, 0x5e, 0xa2, 0xb8, 0x58, 0xd7, 464e1051a39Sopenharmony_ci 0x0c, 0xca, 0xc7, 0xec, 0x8b, 0x05, 0x3c, 0x6b, 465e1051a39Sopenharmony_ci 0xd4, 0x1c, 0xa2, 0x99, 0xd4, 0xe5, 0x19, 0x28, 466e1051a39Sopenharmony_ci}; 467e1051a39Sopenharmony_cistatic const ST_KAT_PARAM tls12prf_params[] = { 468e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, tls12prf_digest), 469e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SECRET, tls12prf_secret), 470e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SEED, tls12prf_seed), 471e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 472e1051a39Sopenharmony_ci}; 473e1051a39Sopenharmony_ci 474e1051a39Sopenharmony_cistatic const char kbkdf_digest[] = "SHA256"; 475e1051a39Sopenharmony_cistatic const char kbkdf_mac[] = "HMAC"; 476e1051a39Sopenharmony_cistatic const unsigned char kbkdf_salt[] = { 'p', 'r', 'f' }; 477e1051a39Sopenharmony_cistatic const unsigned char kbkdf_prfinput[] = { 't', 'e', 's', 't' }; 478e1051a39Sopenharmony_cistatic unsigned char kbkdf_key[] = { 479e1051a39Sopenharmony_ci 0x37, 0x05, 0xD9, 0x60, 0x80, 0xC1, 0x77, 0x28, 480e1051a39Sopenharmony_ci 0xA0, 0xE8, 0x00, 0xEA, 0xB6, 0xE0, 0xD2, 0x3C, 481e1051a39Sopenharmony_ci}; 482e1051a39Sopenharmony_cistatic unsigned char kbkdf_expected[] = { 483e1051a39Sopenharmony_ci 0x9D, 0x18, 0x86, 0x16, 0xF6, 0x38, 0x52, 0xFE, 484e1051a39Sopenharmony_ci 0x86, 0x91, 0x5B, 0xB8, 0x40, 0xB4, 0xA8, 0x86, 485e1051a39Sopenharmony_ci 0xFF, 0x3E, 0x6B, 0xB0, 0xF8, 0x19, 0xB4, 0x9B, 486e1051a39Sopenharmony_ci 0x89, 0x33, 0x93, 0xD3, 0x93, 0x85, 0x42, 0x95, 487e1051a39Sopenharmony_ci}; 488e1051a39Sopenharmony_cistatic const ST_KAT_PARAM kbkdf_params[] = { 489e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, kbkdf_digest), 490e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_MAC, kbkdf_mac), 491e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, kbkdf_key), 492e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_SALT, kbkdf_salt), 493e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_INFO, kbkdf_prfinput), 494e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 495e1051a39Sopenharmony_ci}; 496e1051a39Sopenharmony_ci 497e1051a39Sopenharmony_cistatic const char tls13_kdf_digest[] = "SHA256"; 498e1051a39Sopenharmony_cistatic int tls13_kdf_extract_mode = EVP_KDF_HKDF_MODE_EXTRACT_ONLY; 499e1051a39Sopenharmony_cistatic int tls13_kdf_expand_mode = EVP_KDF_HKDF_MODE_EXPAND_ONLY; 500e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_prefix[] = { 501e1051a39Sopenharmony_ci 0x74, 0x6C, 0x73, 0x31, 0x33, 0x20 /* "tls13 " */ 502e1051a39Sopenharmony_ci}; 503e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_client_early_secret_label[] = { 504e1051a39Sopenharmony_ci 0x63, 0x20, 0x65, 0x20, 0x74, 0x72, 0x61, 0x66, 505e1051a39Sopenharmony_ci 0x66, 0x69, 0x63 /* "c e traffic"*/ 506e1051a39Sopenharmony_ci}; 507e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_psk[] = { 508e1051a39Sopenharmony_ci 0xF8, 0xAF, 0x6A, 0xEA, 0x2D, 0x39, 0x7B, 0xAF, 509e1051a39Sopenharmony_ci 0x29, 0x48, 0xA2, 0x5B, 0x28, 0x34, 0x20, 0x06, 510e1051a39Sopenharmony_ci 0x92, 0xCF, 0xF1, 0x7E, 0xEE, 0x91, 0x65, 0xE4, 511e1051a39Sopenharmony_ci 0xE2, 0x7B, 0xAB, 0xEE, 0x9E, 0xDE, 0xFD, 0x05 512e1051a39Sopenharmony_ci}; 513e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_client_hello_hash[] = { 514e1051a39Sopenharmony_ci 0x7c, 0x92, 0xf6, 0x8b, 0xd5, 0xbf, 0x36, 0x38, 515e1051a39Sopenharmony_ci 0xea, 0x33, 0x8a, 0x64, 0x94, 0x72, 0x2e, 0x1b, 516e1051a39Sopenharmony_ci 0x44, 0x12, 0x7e, 0x1b, 0x7e, 0x8a, 0xad, 0x53, 517e1051a39Sopenharmony_ci 0x5f, 0x23, 0x22, 0xa6, 0x44, 0xff, 0x22, 0xb3 518e1051a39Sopenharmony_ci}; 519e1051a39Sopenharmony_ci 520e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_early_secret[] = { 521e1051a39Sopenharmony_ci 0x15, 0x3B, 0x63, 0x94, 0xA9, 0xC0, 0x3C, 0xF3, 522e1051a39Sopenharmony_ci 0xF5, 0xAC, 0xCC, 0x6E, 0x45, 0x5A, 0x76, 0x93, 523e1051a39Sopenharmony_ci 0x28, 0x11, 0x38, 0xA1, 0xBC, 0xFA, 0x38, 0x03, 524e1051a39Sopenharmony_ci 0xC2, 0x67, 0x35, 0xDD, 0x11, 0x94, 0xD2, 0x16 525e1051a39Sopenharmony_ci}; 526e1051a39Sopenharmony_cistatic const unsigned char tls13_kdf_client_early_traffic_secret[] = { 527e1051a39Sopenharmony_ci 0xC8, 0x05, 0x83, 0xA9, 0x0E, 0x99, 0x5C, 0x48, 528e1051a39Sopenharmony_ci 0x96, 0x00, 0x49, 0x2A, 0x5D, 0xA6, 0x42, 0xE6, 529e1051a39Sopenharmony_ci 0xB1, 0xF6, 0x79, 0xBA, 0x67, 0x48, 0x28, 0x79, 530e1051a39Sopenharmony_ci 0x2D, 0xF0, 0x87, 0xB9, 0x39, 0x63, 0x61, 0x71 531e1051a39Sopenharmony_ci}; 532e1051a39Sopenharmony_cistatic const ST_KAT_PARAM tls13_kdf_early_secret_params[] = { 533e1051a39Sopenharmony_ci ST_KAT_PARAM_INT(OSSL_KDF_PARAM_MODE, tls13_kdf_extract_mode), 534e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, tls13_kdf_digest), 535e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, tls13_kdf_psk), 536e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 537e1051a39Sopenharmony_ci}; 538e1051a39Sopenharmony_cistatic const ST_KAT_PARAM tls13_kdf_client_early_secret_params[] = { 539e1051a39Sopenharmony_ci ST_KAT_PARAM_INT(OSSL_KDF_PARAM_MODE, tls13_kdf_expand_mode), 540e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_DIGEST, tls13_kdf_digest), 541e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_KEY, tls13_kdf_early_secret), 542e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_DATA, tls13_kdf_client_hello_hash), 543e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_PREFIX, tls13_kdf_prefix), 544e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_KDF_PARAM_LABEL, 545e1051a39Sopenharmony_ci tls13_kdf_client_early_secret_label), 546e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 547e1051a39Sopenharmony_ci}; 548e1051a39Sopenharmony_ci 549e1051a39Sopenharmony_cistatic const ST_KAT_KDF st_kat_kdf_tests[] = 550e1051a39Sopenharmony_ci{ 551e1051a39Sopenharmony_ci { 552e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_TLS13_EXTRACT, 553e1051a39Sopenharmony_ci OSSL_KDF_NAME_TLS1_3_KDF, 554e1051a39Sopenharmony_ci tls13_kdf_early_secret_params, 555e1051a39Sopenharmony_ci ITM(tls13_kdf_early_secret) 556e1051a39Sopenharmony_ci }, 557e1051a39Sopenharmony_ci { 558e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_TLS13_EXPAND, 559e1051a39Sopenharmony_ci OSSL_KDF_NAME_TLS1_3_KDF, 560e1051a39Sopenharmony_ci tls13_kdf_client_early_secret_params, 561e1051a39Sopenharmony_ci ITM(tls13_kdf_client_early_traffic_secret) 562e1051a39Sopenharmony_ci }, 563e1051a39Sopenharmony_ci { 564e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_TLS12_PRF, 565e1051a39Sopenharmony_ci OSSL_KDF_NAME_TLS1_PRF, 566e1051a39Sopenharmony_ci tls12prf_params, 567e1051a39Sopenharmony_ci ITM(tls12prf_expected) 568e1051a39Sopenharmony_ci }, 569e1051a39Sopenharmony_ci { 570e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_PBKDF2, 571e1051a39Sopenharmony_ci OSSL_KDF_NAME_PBKDF2, 572e1051a39Sopenharmony_ci pbkdf2_params, 573e1051a39Sopenharmony_ci ITM(pbkdf2_expected) 574e1051a39Sopenharmony_ci }, 575e1051a39Sopenharmony_ci { 576e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_SSHKDF, 577e1051a39Sopenharmony_ci OSSL_KDF_NAME_SSHKDF, 578e1051a39Sopenharmony_ci sshkdf_params, 579e1051a39Sopenharmony_ci ITM(sshkdf_expected) 580e1051a39Sopenharmony_ci }, 581e1051a39Sopenharmony_ci { 582e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_KBKDF, 583e1051a39Sopenharmony_ci OSSL_KDF_NAME_KBKDF, 584e1051a39Sopenharmony_ci kbkdf_params, 585e1051a39Sopenharmony_ci ITM(kbkdf_expected) 586e1051a39Sopenharmony_ci }, 587e1051a39Sopenharmony_ci { 588e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_HKDF, 589e1051a39Sopenharmony_ci OSSL_KDF_NAME_HKDF, 590e1051a39Sopenharmony_ci hkdf_params, 591e1051a39Sopenharmony_ci ITM(hkdf_expected) 592e1051a39Sopenharmony_ci }, 593e1051a39Sopenharmony_ci { 594e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_SSKDF, 595e1051a39Sopenharmony_ci OSSL_KDF_NAME_SSKDF, 596e1051a39Sopenharmony_ci sskdf_params, 597e1051a39Sopenharmony_ci ITM(sskdf_expected) 598e1051a39Sopenharmony_ci }, 599e1051a39Sopenharmony_ci { 600e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_X963KDF, 601e1051a39Sopenharmony_ci OSSL_KDF_NAME_X963KDF, 602e1051a39Sopenharmony_ci x963kdf_params, 603e1051a39Sopenharmony_ci ITM(x963kdf_expected) 604e1051a39Sopenharmony_ci }, 605e1051a39Sopenharmony_ci { 606e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KDF_X942KDF, 607e1051a39Sopenharmony_ci OSSL_KDF_NAME_X942KDF_ASN1, 608e1051a39Sopenharmony_ci x942kdf_params, 609e1051a39Sopenharmony_ci ITM(x942kdf_expected) 610e1051a39Sopenharmony_ci }, 611e1051a39Sopenharmony_ci}; 612e1051a39Sopenharmony_ci 613e1051a39Sopenharmony_ci/*- 614e1051a39Sopenharmony_ci* DRBG test vectors are a small subset of 615e1051a39Sopenharmony_ci* https://csrc.nist.rip/groups/STM/cavp/documents/drbg/drbgtestvectors.zip 616e1051a39Sopenharmony_ci* Using the folder drbgvectors_pr_true 617e1051a39Sopenharmony_ci* Generated for CAVS 14.3. 618e1051a39Sopenharmony_ci*/ 619e1051a39Sopenharmony_ci 620e1051a39Sopenharmony_ci/* 621e1051a39Sopenharmony_ci * Hash_DRBG.rsp 622e1051a39Sopenharmony_ci * 623e1051a39Sopenharmony_ci * [SHA-256] 624e1051a39Sopenharmony_ci * [PredictionResistance = True] 625e1051a39Sopenharmony_ci * [EntropyInputLen = 256] 626e1051a39Sopenharmony_ci * [NonceLen = 128] 627e1051a39Sopenharmony_ci * [PersonalizationStringLen = 256] 628e1051a39Sopenharmony_ci * [AdditionalInputLen = 256] 629e1051a39Sopenharmony_ci * [ReturnedBitsLen = 1024] 630e1051a39Sopenharmony_ci * 631e1051a39Sopenharmony_ci * COUNT = 14 632e1051a39Sopenharmony_ci */ 633e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_entropyin[] = { 634e1051a39Sopenharmony_ci 0x06, 0x6d, 0xc8, 0xce, 0x75, 0xb2, 0x89, 0x66, 0xa6, 0x85, 0x16, 0x3f, 635e1051a39Sopenharmony_ci 0xe2, 0xa4, 0xd4, 0x27, 0xfb, 0xdb, 0x61, 0x66, 0x50, 0x61, 0x6b, 0xa2, 636e1051a39Sopenharmony_ci 0x82, 0xfc, 0x33, 0x2b, 0x4e, 0x6f, 0x12, 0x20 637e1051a39Sopenharmony_ci}; 638e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_nonce[] = { 639e1051a39Sopenharmony_ci 0x55, 0x9f, 0x7c, 0x64, 0x89, 0x70, 0x83, 0xec, 0x2d, 0x73, 0x70, 0xd9, 640e1051a39Sopenharmony_ci 0xf0, 0xe5, 0x07, 0x1f 641e1051a39Sopenharmony_ci}; 642e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_persstr[] = { 643e1051a39Sopenharmony_ci 0x88, 0x6f, 0x54, 0x9a, 0xad, 0x1a, 0xc6, 0x3d, 0x18, 0xcb, 0xcc, 0x66, 644e1051a39Sopenharmony_ci 0x85, 0xda, 0xa2, 0xc2, 0xf7, 0x9e, 0xb0, 0x89, 0x4c, 0xb4, 0xae, 0xf1, 645e1051a39Sopenharmony_ci 0xac, 0x54, 0x4f, 0xce, 0x57, 0xf1, 0x5e, 0x11 646e1051a39Sopenharmony_ci}; 647e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_entropyinpr0[] = { 648e1051a39Sopenharmony_ci 0xff, 0x80, 0xb7, 0xd2, 0x6a, 0x05, 0xbc, 0x8a, 0x7a, 0xbe, 0x53, 0x28, 649e1051a39Sopenharmony_ci 0x6b, 0x0e, 0xeb, 0x73, 0x3b, 0x71, 0x5a, 0x20, 0x5b, 0xfa, 0x4f, 0xf6, 650e1051a39Sopenharmony_ci 0x37, 0x03, 0xde, 0xad, 0xb6, 0xea, 0x0e, 0xf4 651e1051a39Sopenharmony_ci}; 652e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_entropyinpr1[] = { 653e1051a39Sopenharmony_ci 0xc7, 0x38, 0x32, 0x53, 0x46, 0x81, 0xed, 0xe3, 0x7e, 0x03, 0x84, 0x6d, 654e1051a39Sopenharmony_ci 0x3c, 0x84, 0x17, 0x67, 0x29, 0x7d, 0x24, 0x6c, 0x68, 0x92, 0x41, 0xd2, 655e1051a39Sopenharmony_ci 0xe7, 0x75, 0xbe, 0x7e, 0xc9, 0x96, 0x29, 0x3d 656e1051a39Sopenharmony_ci}; 657e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_addin0[] = { 658e1051a39Sopenharmony_ci 0xb7, 0x21, 0x5f, 0x14, 0xac, 0x7b, 0xaf, 0xd0, 0xa9, 0x17, 0x72, 0xba, 659e1051a39Sopenharmony_ci 0x22, 0xf7, 0x19, 0xaf, 0xbd, 0x20, 0xb3, 0x11, 0x63, 0x6c, 0x2b, 0x1e, 660e1051a39Sopenharmony_ci 0x83, 0xe4, 0xa8, 0x23, 0x35, 0x3f, 0xc6, 0xea 661e1051a39Sopenharmony_ci}; 662e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_addin1[] = { 663e1051a39Sopenharmony_ci 0xce, 0xd3, 0x1f, 0x7e, 0x0d, 0xae, 0x5b, 0xb5, 0xc0, 0x43, 0xe2, 0x46, 664e1051a39Sopenharmony_ci 0xb2, 0x94, 0x73, 0xe2, 0xfd, 0x39, 0x51, 0x2e, 0xad, 0x45, 0x69, 0xee, 665e1051a39Sopenharmony_ci 0xe3, 0xe3, 0x80, 0x33, 0x14, 0xab, 0xa7, 0xa3 666e1051a39Sopenharmony_ci}; 667e1051a39Sopenharmony_cistatic const unsigned char drbg_hash_sha256_pr_expected[] = { 668e1051a39Sopenharmony_ci 0x60, 0xc2, 0x34, 0xcf, 0xaf, 0xb4, 0x68, 0x03, 0x3b, 0xf1, 0x95, 0xe5, 669e1051a39Sopenharmony_ci 0x78, 0xce, 0x26, 0x6e, 0x14, 0x65, 0x32, 0x6a, 0x96, 0xa9, 0xe0, 0x3f, 670e1051a39Sopenharmony_ci 0x8b, 0x89, 0x36, 0x70, 0xef, 0x62, 0x75, 0x4d, 0x5e, 0x80, 0xd5, 0x53, 671e1051a39Sopenharmony_ci 0xa1, 0xf8, 0x49, 0x50, 0x20, 0x8b, 0x93, 0x43, 0x07, 0x9f, 0x2e, 0xf8, 672e1051a39Sopenharmony_ci 0x56, 0xe9, 0xc5, 0x70, 0x61, 0x85, 0x97, 0xb5, 0xdc, 0x82, 0xa2, 0xda, 673e1051a39Sopenharmony_ci 0xea, 0xa3, 0xfd, 0x9b, 0x2f, 0xd2, 0xa0, 0xd7, 0x1b, 0xc6, 0x29, 0x35, 674e1051a39Sopenharmony_ci 0xcc, 0xb8, 0x3d, 0xa0, 0x67, 0x98, 0x05, 0xa0, 0xe3, 0x1e, 0xfe, 0xe4, 675e1051a39Sopenharmony_ci 0xf0, 0xe5, 0x13, 0xb0, 0x83, 0x17, 0xfa, 0xca, 0x93, 0x5e, 0x38, 0x29, 676e1051a39Sopenharmony_ci 0x48, 0xd2, 0x72, 0xdb, 0x76, 0x3e, 0x6d, 0xf3, 0x25, 0x10, 0xff, 0x1b, 677e1051a39Sopenharmony_ci 0x99, 0xff, 0xf8, 0xc6, 0x0e, 0xb0, 0xdd, 0x29, 0x2e, 0xbc, 0xbb, 0xc8, 678e1051a39Sopenharmony_ci 0x0a, 0x01, 0x6e, 0xd3, 0xb0, 0x0e, 0x4e, 0xab 679e1051a39Sopenharmony_ci}; 680e1051a39Sopenharmony_ci 681e1051a39Sopenharmony_ci/* 682e1051a39Sopenharmony_ci * CTR_DRBG.rsp 683e1051a39Sopenharmony_ci * 684e1051a39Sopenharmony_ci * [AES-128 use df] 685e1051a39Sopenharmony_ci * [PredictionResistance = True] 686e1051a39Sopenharmony_ci * [EntropyInputLen = 128] 687e1051a39Sopenharmony_ci * [NonceLen = 64] 688e1051a39Sopenharmony_ci * [PersonalizationStringLen = 128] 689e1051a39Sopenharmony_ci * [AdditionalInputLen = 128] 690e1051a39Sopenharmony_ci * [ReturnedBitsLen = 512] 691e1051a39Sopenharmony_ci * 692e1051a39Sopenharmony_ci * COUNT = 0 693e1051a39Sopenharmony_ci */ 694e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_entropyin[] = { 695e1051a39Sopenharmony_ci 0x92, 0x89, 0x8f, 0x31, 0xfa, 0x1c, 0xff, 0x6d, 0x18, 0x2f, 0x26, 0x06, 696e1051a39Sopenharmony_ci 0x43, 0xdf, 0xf8, 0x18 697e1051a39Sopenharmony_ci}; 698e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_nonce[] = { 699e1051a39Sopenharmony_ci 0xc2, 0xa4, 0xd9, 0x72, 0xc3, 0xb9, 0xb6, 0x97 700e1051a39Sopenharmony_ci}; 701e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_persstr[] = { 702e1051a39Sopenharmony_ci 0xea, 0x65, 0xee, 0x60, 0x26, 0x4e, 0x7e, 0xb6, 0x0e, 0x82, 0x68, 0xc4, 703e1051a39Sopenharmony_ci 0x37, 0x3c, 0x5c, 0x0b 704e1051a39Sopenharmony_ci}; 705e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_entropyinpr0[] = { 706e1051a39Sopenharmony_ci 0x20, 0x72, 0x8a, 0x06, 0xf8, 0x6f, 0x8d, 0xd4, 0x41, 0xe2, 0x72, 0xb7, 707e1051a39Sopenharmony_ci 0xc4, 0x2c, 0xe8, 0x10 708e1051a39Sopenharmony_ci}; 709e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_entropyinpr1[] = { 710e1051a39Sopenharmony_ci 0x3d, 0xb0, 0xf0, 0x94, 0xf3, 0x05, 0x50, 0x33, 0x17, 0x86, 0x3e, 0x22, 711e1051a39Sopenharmony_ci 0x08, 0xf7, 0xa5, 0x01 712e1051a39Sopenharmony_ci}; 713e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_addin0[] = { 714e1051a39Sopenharmony_ci 0x1a, 0x40, 0xfa, 0xe3, 0xcc, 0x6c, 0x7c, 0xa0, 0xf8, 0xda, 0xba, 0x59, 715e1051a39Sopenharmony_ci 0x23, 0x6d, 0xad, 0x1d 716e1051a39Sopenharmony_ci}; 717e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_addin1[] = { 718e1051a39Sopenharmony_ci 0x9f, 0x72, 0x76, 0x6c, 0xc7, 0x46, 0xe5, 0xed, 0x2e, 0x53, 0x20, 0x12, 719e1051a39Sopenharmony_ci 0xbc, 0x59, 0x31, 0x8c 720e1051a39Sopenharmony_ci}; 721e1051a39Sopenharmony_cistatic const unsigned char drbg_ctr_aes128_pr_df_expected[] = { 722e1051a39Sopenharmony_ci 0x5a, 0x35, 0x39, 0x87, 0x0f, 0x4d, 0x22, 0xa4, 0x09, 0x24, 0xee, 0x71, 723e1051a39Sopenharmony_ci 0xc9, 0x6f, 0xac, 0x72, 0x0a, 0xd6, 0xf0, 0x88, 0x82, 0xd0, 0x83, 0x28, 724e1051a39Sopenharmony_ci 0x73, 0xec, 0x3f, 0x93, 0xd8, 0xab, 0x45, 0x23, 0xf0, 0x7e, 0xac, 0x45, 725e1051a39Sopenharmony_ci 0x14, 0x5e, 0x93, 0x9f, 0xb1, 0xd6, 0x76, 0x43, 0x3d, 0xb6, 0xe8, 0x08, 726e1051a39Sopenharmony_ci 0x88, 0xf6, 0xda, 0x89, 0x08, 0x77, 0x42, 0xfe, 0x1a, 0xf4, 0x3f, 0xc4, 727e1051a39Sopenharmony_ci 0x23, 0xc5, 0x1f, 0x68 728e1051a39Sopenharmony_ci}; 729e1051a39Sopenharmony_ci 730e1051a39Sopenharmony_ci/* 731e1051a39Sopenharmony_ci * HMAC_DRBG.rsp 732e1051a39Sopenharmony_ci * 733e1051a39Sopenharmony_ci * [SHA-1] 734e1051a39Sopenharmony_ci * [PredictionResistance = True] 735e1051a39Sopenharmony_ci * [EntropyInputLen = 128] 736e1051a39Sopenharmony_ci * [NonceLen = 64] 737e1051a39Sopenharmony_ci * [PersonalizationStringLen = 128] 738e1051a39Sopenharmony_ci * [AdditionalInputLen = 128] 739e1051a39Sopenharmony_ci * [ReturnedBitsLen = 640] 740e1051a39Sopenharmony_ci * 741e1051a39Sopenharmony_ci * COUNT = 0 742e1051a39Sopenharmony_ci */ 743e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_entropyin[] = { 744e1051a39Sopenharmony_ci 0x68, 0x0f, 0xac, 0xe9, 0x0d, 0x7b, 0xca, 0x21, 0xd4, 0xa0, 0xed, 0xb7, 745e1051a39Sopenharmony_ci 0x79, 0x9e, 0xe5, 0xd8 746e1051a39Sopenharmony_ci}; 747e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_nonce[] = { 748e1051a39Sopenharmony_ci 0xb7, 0xbe, 0x9e, 0xed, 0xdd, 0x0e, 0x3b, 0x4b 749e1051a39Sopenharmony_ci}; 750e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_persstr[] = { 751e1051a39Sopenharmony_ci 0xf5, 0x8c, 0x40, 0xae, 0x70, 0xf7, 0xa5, 0x56, 0x48, 0xa9, 0x31, 0xa0, 752e1051a39Sopenharmony_ci 0xa9, 0x31, 0x3d, 0xd7 753e1051a39Sopenharmony_ci}; 754e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_entropyinpr0[] = { 755e1051a39Sopenharmony_ci 0x7c, 0xaf, 0xe2, 0x31, 0x63, 0x0a, 0xa9, 0x5a, 0x74, 0x2c, 0x4e, 0x5f, 756e1051a39Sopenharmony_ci 0x5f, 0x22, 0xc6, 0xa4 757e1051a39Sopenharmony_ci}; 758e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_entropyinpr1[] = { 759e1051a39Sopenharmony_ci 0x1c, 0x0d, 0x77, 0x92, 0x89, 0x88, 0x27, 0x94, 0x8a, 0x58, 0x9f, 0x82, 760e1051a39Sopenharmony_ci 0x2d, 0x1a, 0xf7, 0xa6 761e1051a39Sopenharmony_ci}; 762e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_addin0[] = { 763e1051a39Sopenharmony_ci 0xdc, 0x36, 0x63, 0xf0, 0x62, 0x78, 0x9c, 0xd1, 0x5c, 0xbb, 0x20, 0xc3, 764e1051a39Sopenharmony_ci 0xc1, 0x8c, 0xd9, 0xd7 765e1051a39Sopenharmony_ci}; 766e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_addin1[] = { 767e1051a39Sopenharmony_ci 0xfe, 0x85, 0xb0, 0xab, 0x14, 0xc6, 0x96, 0xe6, 0x9c, 0x24, 0xe7, 0xb5, 768e1051a39Sopenharmony_ci 0xa1, 0x37, 0x12, 0x0c 769e1051a39Sopenharmony_ci}; 770e1051a39Sopenharmony_cistatic const unsigned char drbg_hmac_sha1_pr_expected[] = { 771e1051a39Sopenharmony_ci 0x68, 0x00, 0x4b, 0x3a, 0x28, 0xf7, 0xf0, 0x1c, 0xf9, 0xe9, 0xb5, 0x71, 772e1051a39Sopenharmony_ci 0x20, 0x79, 0xef, 0x80, 0x87, 0x1b, 0x08, 0xb9, 0xa9, 0x1b, 0xcd, 0x2b, 773e1051a39Sopenharmony_ci 0x9f, 0x09, 0x4d, 0xa4, 0x84, 0x80, 0xb3, 0x4c, 0xaf, 0xd5, 0x59, 0x6b, 774e1051a39Sopenharmony_ci 0x0c, 0x0a, 0x48, 0xe1, 0x48, 0xda, 0xbc, 0x6f, 0x77, 0xb8, 0xff, 0xaf, 775e1051a39Sopenharmony_ci 0x18, 0x70, 0x28, 0xe1, 0x04, 0x13, 0x7a, 0x4f, 0xeb, 0x1c, 0x72, 0xb0, 776e1051a39Sopenharmony_ci 0xc4, 0x4f, 0xe8, 0xb1, 0xaf, 0xab, 0xa5, 0xbc, 0xfd, 0x86, 0x67, 0xf2, 777e1051a39Sopenharmony_ci 0xf5, 0x5b, 0x46, 0x06, 0x63, 0x2e, 0x3c, 0xbc 778e1051a39Sopenharmony_ci}; 779e1051a39Sopenharmony_ci 780e1051a39Sopenharmony_cistatic const ST_KAT_DRBG st_kat_drbg_tests[] = 781e1051a39Sopenharmony_ci{ 782e1051a39Sopenharmony_ci { 783e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_DRBG_HASH, 784e1051a39Sopenharmony_ci "HASH-DRBG", "digest", "SHA256", 785e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_entropyin), 786e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_nonce), 787e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_persstr), 788e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_entropyinpr0), 789e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_entropyinpr1), 790e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_addin0), 791e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_addin1), 792e1051a39Sopenharmony_ci ITM(drbg_hash_sha256_pr_expected) 793e1051a39Sopenharmony_ci }, 794e1051a39Sopenharmony_ci { 795e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_DRBG_CTR, 796e1051a39Sopenharmony_ci "CTR-DRBG", "cipher", "AES-128-CTR", 797e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_entropyin), 798e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_nonce), 799e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_persstr), 800e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_entropyinpr0), 801e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_entropyinpr1), 802e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_addin0), 803e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_addin1), 804e1051a39Sopenharmony_ci ITM(drbg_ctr_aes128_pr_df_expected) 805e1051a39Sopenharmony_ci }, 806e1051a39Sopenharmony_ci { 807e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_DRBG_HMAC, 808e1051a39Sopenharmony_ci "HMAC-DRBG", "digest", "SHA1", 809e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_entropyin), 810e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_nonce), 811e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_persstr), 812e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_entropyinpr0), 813e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_entropyinpr1), 814e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_addin0), 815e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_addin1), 816e1051a39Sopenharmony_ci ITM(drbg_hmac_sha1_pr_expected) 817e1051a39Sopenharmony_ci } 818e1051a39Sopenharmony_ci}; 819e1051a39Sopenharmony_ci 820e1051a39Sopenharmony_ci/* KEY EXCHANGE TEST DATA */ 821e1051a39Sopenharmony_ci 822e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_DH 823e1051a39Sopenharmony_ci/* DH KAT */ 824e1051a39Sopenharmony_cistatic const unsigned char dh_p[] = { 825e1051a39Sopenharmony_ci 0xdc, 0xca, 0x15, 0x11, 0xb2, 0x31, 0x32, 0x25, 826e1051a39Sopenharmony_ci 0xf5, 0x21, 0x16, 0xe1, 0x54, 0x27, 0x89, 0xe0, 827e1051a39Sopenharmony_ci 0x01, 0xf0, 0x42, 0x5b, 0xcc, 0xc7, 0xf3, 0x66, 828e1051a39Sopenharmony_ci 0xf7, 0x40, 0x64, 0x07, 0xf1, 0xc9, 0xfa, 0x8b, 829e1051a39Sopenharmony_ci 0xe6, 0x10, 0xf1, 0x77, 0x8b, 0xb1, 0x70, 0xbe, 830e1051a39Sopenharmony_ci 0x39, 0xdb, 0xb7, 0x6f, 0x85, 0xbf, 0x24, 0xce, 831e1051a39Sopenharmony_ci 0x68, 0x80, 0xad, 0xb7, 0x62, 0x9f, 0x7c, 0x6d, 832e1051a39Sopenharmony_ci 0x01, 0x5e, 0x61, 0xd4, 0x3f, 0xa3, 0xee, 0x4d, 833e1051a39Sopenharmony_ci 0xe1, 0x85, 0xf2, 0xcf, 0xd0, 0x41, 0xff, 0xde, 834e1051a39Sopenharmony_ci 0x9d, 0x41, 0x84, 0x07, 0xe1, 0x51, 0x38, 0xbb, 835e1051a39Sopenharmony_ci 0x02, 0x1d, 0xae, 0xb3, 0x5f, 0x76, 0x2d, 0x17, 836e1051a39Sopenharmony_ci 0x82, 0xac, 0xc6, 0x58, 0xd3, 0x2b, 0xd4, 0xb0, 837e1051a39Sopenharmony_ci 0x23, 0x2c, 0x92, 0x7d, 0xd3, 0x8f, 0xa0, 0x97, 838e1051a39Sopenharmony_ci 0xb3, 0xd1, 0x85, 0x9f, 0xa8, 0xac, 0xaf, 0xb9, 839e1051a39Sopenharmony_ci 0x8f, 0x06, 0x66, 0x08, 0xfc, 0x64, 0x4e, 0xc7, 840e1051a39Sopenharmony_ci 0xdd, 0xb6, 0xf0, 0x85, 0x99, 0xf9, 0x2a, 0xc1, 841e1051a39Sopenharmony_ci 0xb5, 0x98, 0x25, 0xda, 0x84, 0x32, 0x07, 0x7d, 842e1051a39Sopenharmony_ci 0xef, 0x69, 0x56, 0x46, 0x06, 0x3c, 0x20, 0x82, 843e1051a39Sopenharmony_ci 0x3c, 0x95, 0x07, 0xab, 0x6f, 0x01, 0x76, 0xd4, 844e1051a39Sopenharmony_ci 0x73, 0x0d, 0x99, 0x0d, 0xbb, 0xe6, 0x36, 0x1c, 845e1051a39Sopenharmony_ci 0xd8, 0xb2, 0xb9, 0x4d, 0x3d, 0x2f, 0x32, 0x9b, 846e1051a39Sopenharmony_ci 0x82, 0x09, 0x9b, 0xd6, 0x61, 0xf4, 0x29, 0x50, 847e1051a39Sopenharmony_ci 0xf4, 0x03, 0xdf, 0x3e, 0xde, 0x62, 0xa3, 0x31, 848e1051a39Sopenharmony_ci 0x88, 0xb0, 0x27, 0x98, 0xba, 0x82, 0x3f, 0x44, 849e1051a39Sopenharmony_ci 0xb9, 0x46, 0xfe, 0x9d, 0xf6, 0x77, 0xa0, 0xc5, 850e1051a39Sopenharmony_ci 0xa1, 0x23, 0x8e, 0xaa, 0x97, 0xb7, 0x0f, 0x80, 851e1051a39Sopenharmony_ci 0xda, 0x8c, 0xac, 0x88, 0xe0, 0x92, 0xb1, 0x12, 852e1051a39Sopenharmony_ci 0x70, 0x60, 0xff, 0xbf, 0x45, 0x57, 0x99, 0x94, 853e1051a39Sopenharmony_ci 0x01, 0x1d, 0xc2, 0xfa, 0xa5, 0xe7, 0xf6, 0xc7, 854e1051a39Sopenharmony_ci 0x62, 0x45, 0xe1, 0xcc, 0x31, 0x22, 0x31, 0xc1, 855e1051a39Sopenharmony_ci 0x7d, 0x1c, 0xa6, 0xb1, 0x90, 0x07, 0xef, 0x0d, 856e1051a39Sopenharmony_ci 0xb9, 0x9f, 0x9c, 0xb6, 0x0e, 0x1d, 0x5f, 0x69 857e1051a39Sopenharmony_ci}; 858e1051a39Sopenharmony_cistatic const unsigned char dh_q[] = { 859e1051a39Sopenharmony_ci 0x89, 0x8b, 0x22, 0x67, 0x17, 0xef, 0x03, 0x9e, 860e1051a39Sopenharmony_ci 0x60, 0x3e, 0x82, 0xe5, 0xc7, 0xaf, 0xe4, 0x83, 861e1051a39Sopenharmony_ci 0x74, 0xac, 0x5f, 0x62, 0x5c, 0x54, 0xf1, 0xea, 862e1051a39Sopenharmony_ci 0x11, 0xac, 0xb5, 0x7d 863e1051a39Sopenharmony_ci}; 864e1051a39Sopenharmony_cistatic const unsigned char dh_g[] = { 865e1051a39Sopenharmony_ci 0x5e, 0xf7, 0xb8, 0x8f, 0x2d, 0xf6, 0x01, 0x39, 866e1051a39Sopenharmony_ci 0x35, 0x1d, 0xfb, 0xfe, 0x12, 0x66, 0x80, 0x5f, 867e1051a39Sopenharmony_ci 0xdf, 0x35, 0x6c, 0xdf, 0xd1, 0x3a, 0x4d, 0xa0, 868e1051a39Sopenharmony_ci 0x05, 0x0c, 0x7e, 0xde, 0x24, 0x6d, 0xf5, 0x9f, 869e1051a39Sopenharmony_ci 0x6a, 0xbf, 0x96, 0xad, 0xe5, 0xf2, 0xb2, 0x8f, 870e1051a39Sopenharmony_ci 0xfe, 0x88, 0xd6, 0xbc, 0xe7, 0xf7, 0x89, 0x4a, 871e1051a39Sopenharmony_ci 0x3d, 0x53, 0x5f, 0xc8, 0x21, 0x26, 0xdd, 0xd4, 872e1051a39Sopenharmony_ci 0x24, 0x87, 0x2e, 0x16, 0xb8, 0x38, 0xdf, 0x8c, 873e1051a39Sopenharmony_ci 0x51, 0xe9, 0x01, 0x6f, 0x88, 0x9c, 0x7c, 0x20, 874e1051a39Sopenharmony_ci 0x3e, 0x98, 0xa8, 0xb6, 0x31, 0xf9, 0xc7, 0x25, 875e1051a39Sopenharmony_ci 0x63, 0xd3, 0x8a, 0x49, 0x58, 0x9a, 0x07, 0x53, 876e1051a39Sopenharmony_ci 0xd3, 0x58, 0xe7, 0x83, 0x31, 0x8c, 0xef, 0xd9, 877e1051a39Sopenharmony_ci 0x67, 0x7c, 0x7b, 0x2d, 0xbb, 0x77, 0xd6, 0xdc, 878e1051a39Sopenharmony_ci 0xe2, 0xa1, 0x96, 0x37, 0x95, 0xca, 0x64, 0xb9, 879e1051a39Sopenharmony_ci 0x2d, 0x1c, 0x9a, 0xac, 0x6d, 0x0e, 0x8d, 0x43, 880e1051a39Sopenharmony_ci 0x1d, 0xe5, 0xe5, 0x00, 0x60, 0xdf, 0xf7, 0x86, 881e1051a39Sopenharmony_ci 0x89, 0xc9, 0xec, 0xa1, 0xc1, 0x24, 0x8c, 0x16, 882e1051a39Sopenharmony_ci 0xed, 0x09, 0xc7, 0xad, 0x41, 0x2a, 0x17, 0x40, 883e1051a39Sopenharmony_ci 0x6d, 0x2b, 0x52, 0x5a, 0xa1, 0xca, 0xbb, 0x23, 884e1051a39Sopenharmony_ci 0x7b, 0x97, 0x34, 0xec, 0x7b, 0x8c, 0xe3, 0xfa, 885e1051a39Sopenharmony_ci 0xe0, 0x2f, 0x29, 0xc5, 0xef, 0xed, 0x30, 0xd6, 886e1051a39Sopenharmony_ci 0x91, 0x87, 0xda, 0x10, 0x9c, 0x2c, 0x9f, 0xe2, 887e1051a39Sopenharmony_ci 0xaa, 0xdb, 0xb0, 0xc2, 0x2a, 0xf5, 0x4c, 0x61, 888e1051a39Sopenharmony_ci 0x66, 0x55, 0x00, 0x0c, 0x43, 0x1c, 0x6b, 0x4a, 889e1051a39Sopenharmony_ci 0x37, 0x97, 0x63, 0xb0, 0xa9, 0x16, 0x58, 0xef, 890e1051a39Sopenharmony_ci 0xc8, 0x4e, 0x8b, 0x06, 0x35, 0x8c, 0x8b, 0x4f, 891e1051a39Sopenharmony_ci 0x21, 0x37, 0x10, 0xfd, 0x10, 0x17, 0x2c, 0xf3, 892e1051a39Sopenharmony_ci 0x9b, 0x83, 0x0c, 0x2d, 0xd8, 0x4a, 0x0c, 0x8a, 893e1051a39Sopenharmony_ci 0xb8, 0x25, 0x16, 0xec, 0xab, 0x99, 0x5f, 0xa4, 894e1051a39Sopenharmony_ci 0x21, 0x5e, 0x02, 0x3e, 0x4e, 0xcf, 0x80, 0x74, 895e1051a39Sopenharmony_ci 0xc3, 0x9d, 0x6c, 0x88, 0xb7, 0x0d, 0x1e, 0xe4, 896e1051a39Sopenharmony_ci 0xe9, 0x6f, 0xdc, 0x20, 0xea, 0x11, 0x5c, 0x32 897e1051a39Sopenharmony_ci}; 898e1051a39Sopenharmony_cistatic const unsigned char dh_priv[] = { 899e1051a39Sopenharmony_ci 0x14, 0x33, 0xe0, 0xb5, 0xa9, 0x17, 0xb6, 0x0a, 900e1051a39Sopenharmony_ci 0x30, 0x23, 0xf2, 0xf8, 0xaa, 0x2c, 0x2d, 0x70, 901e1051a39Sopenharmony_ci 0xd2, 0x96, 0x8a, 0xba, 0x9a, 0xea, 0xc8, 0x15, 902e1051a39Sopenharmony_ci 0x40, 0xb8, 0xfc, 0xe6 903e1051a39Sopenharmony_ci}; 904e1051a39Sopenharmony_cistatic const unsigned char dh_pub[] = { 905e1051a39Sopenharmony_ci 0x95, 0xdd, 0x33, 0x8d, 0x29, 0xe5, 0x71, 0x04, 906e1051a39Sopenharmony_ci 0x92, 0xb9, 0x18, 0x31, 0x7b, 0x72, 0xa3, 0x69, 907e1051a39Sopenharmony_ci 0x36, 0xe1, 0x95, 0x1a, 0x2e, 0xe5, 0xa5, 0x59, 908e1051a39Sopenharmony_ci 0x16, 0x99, 0xc0, 0x48, 0x6d, 0x0d, 0x4f, 0x9b, 909e1051a39Sopenharmony_ci 0xdd, 0x6d, 0x5a, 0x3f, 0x6b, 0x98, 0x89, 0x0c, 910e1051a39Sopenharmony_ci 0x62, 0xb3, 0x76, 0x52, 0xd3, 0x6e, 0x71, 0x21, 911e1051a39Sopenharmony_ci 0x11, 0xe6, 0x8a, 0x73, 0x55, 0x37, 0x25, 0x06, 912e1051a39Sopenharmony_ci 0x99, 0xef, 0xe3, 0x30, 0x53, 0x73, 0x91, 0xfb, 913e1051a39Sopenharmony_ci 0xc2, 0xc5, 0x48, 0xbc, 0x5a, 0xc3, 0xe5, 0xb2, 914e1051a39Sopenharmony_ci 0x33, 0x86, 0xc3, 0xee, 0xf5, 0xeb, 0x43, 0xc0, 915e1051a39Sopenharmony_ci 0x99, 0xd7, 0x0a, 0x52, 0x02, 0x68, 0x7e, 0x83, 916e1051a39Sopenharmony_ci 0x96, 0x42, 0x48, 0xfc, 0xa9, 0x1f, 0x40, 0x90, 917e1051a39Sopenharmony_ci 0x8e, 0x8f, 0xb3, 0x31, 0x93, 0x15, 0xf6, 0xd2, 918e1051a39Sopenharmony_ci 0x60, 0x6d, 0x7f, 0x7c, 0xd5, 0x2c, 0xc6, 0xe7, 919e1051a39Sopenharmony_ci 0xc5, 0x84, 0x3a, 0xfb, 0x22, 0x51, 0x9c, 0xf0, 920e1051a39Sopenharmony_ci 0xf0, 0xf9, 0xd3, 0xa0, 0xa4, 0xe8, 0xc8, 0x88, 921e1051a39Sopenharmony_ci 0x99, 0xef, 0xed, 0xe7, 0x36, 0x43, 0x51, 0xfb, 922e1051a39Sopenharmony_ci 0x6a, 0x36, 0x3e, 0xe7, 0x17, 0xe5, 0x44, 0x5a, 923e1051a39Sopenharmony_ci 0xda, 0xb4, 0xc9, 0x31, 0xa6, 0x48, 0x39, 0x97, 924e1051a39Sopenharmony_ci 0xb8, 0x7d, 0xad, 0x83, 0x67, 0x7e, 0x4d, 0x1d, 925e1051a39Sopenharmony_ci 0x3a, 0x77, 0x75, 0xe0, 0xf6, 0xd0, 0x0f, 0xdf, 926e1051a39Sopenharmony_ci 0x73, 0xc7, 0xad, 0x80, 0x1e, 0x66, 0x5a, 0x0e, 927e1051a39Sopenharmony_ci 0x5a, 0x79, 0x6d, 0x0a, 0x03, 0x80, 0xa1, 0x9f, 928e1051a39Sopenharmony_ci 0xa1, 0x82, 0xef, 0xc8, 0xa0, 0x4f, 0x5e, 0x4d, 929e1051a39Sopenharmony_ci 0xb9, 0x0d, 0x1a, 0x86, 0x37, 0xf9, 0x5d, 0xb1, 930e1051a39Sopenharmony_ci 0x64, 0x36, 0xbd, 0xc8, 0xf3, 0xfc, 0x09, 0x6c, 931e1051a39Sopenharmony_ci 0x4f, 0xf7, 0xf2, 0x34, 0xbe, 0x8f, 0xef, 0x47, 932e1051a39Sopenharmony_ci 0x9a, 0xc4, 0xb0, 0xdc, 0x4b, 0x77, 0x26, 0x3e, 933e1051a39Sopenharmony_ci 0x07, 0xd9, 0x95, 0x9d, 0xe0, 0xf1, 0xbf, 0x3f, 934e1051a39Sopenharmony_ci 0x0a, 0xe3, 0xd9, 0xd5, 0x0e, 0x4b, 0x89, 0xc9, 935e1051a39Sopenharmony_ci 0x9e, 0x3e, 0xa1, 0x21, 0x73, 0x43, 0xdd, 0x8c, 936e1051a39Sopenharmony_ci 0x65, 0x81, 0xac, 0xc4, 0x95, 0x9c, 0x91, 0xd3 937e1051a39Sopenharmony_ci}; 938e1051a39Sopenharmony_cistatic const unsigned char dh_peer_pub[] = { 939e1051a39Sopenharmony_ci 0x1f, 0xc1, 0xda, 0x34, 0x1d, 0x1a, 0x84, 0x6a, 940e1051a39Sopenharmony_ci 0x96, 0xb7, 0xbe, 0x24, 0x34, 0x0f, 0x87, 0x7d, 941e1051a39Sopenharmony_ci 0xd0, 0x10, 0xaa, 0x03, 0x56, 0xd5, 0xad, 0x58, 942e1051a39Sopenharmony_ci 0xaa, 0xe9, 0xc7, 0xb0, 0x8f, 0x74, 0x9a, 0x32, 943e1051a39Sopenharmony_ci 0x23, 0x51, 0x10, 0xb5, 0xd8, 0x8e, 0xb5, 0xdb, 944e1051a39Sopenharmony_ci 0xfa, 0x97, 0x8d, 0x27, 0xec, 0xc5, 0x30, 0xf0, 945e1051a39Sopenharmony_ci 0x2d, 0x31, 0x14, 0x00, 0x5b, 0x64, 0xb1, 0xc0, 946e1051a39Sopenharmony_ci 0xe0, 0x24, 0xcb, 0x8a, 0xe2, 0x16, 0x98, 0xbc, 947e1051a39Sopenharmony_ci 0xa9, 0xe6, 0x0d, 0x42, 0x80, 0x86, 0x22, 0xf1, 948e1051a39Sopenharmony_ci 0x81, 0xc5, 0x6e, 0x1d, 0xe7, 0xa9, 0x6e, 0x6e, 949e1051a39Sopenharmony_ci 0xfe, 0xe9, 0xd6, 0x65, 0x67, 0xe9, 0x1b, 0x97, 950e1051a39Sopenharmony_ci 0x70, 0x42, 0xc7, 0xe3, 0xd0, 0x44, 0x8f, 0x05, 951e1051a39Sopenharmony_ci 0xfb, 0x77, 0xf5, 0x22, 0xb9, 0xbf, 0xc8, 0xd3, 952e1051a39Sopenharmony_ci 0x3c, 0xc3, 0xc3, 0x1e, 0xd3, 0xb3, 0x1f, 0x0f, 953e1051a39Sopenharmony_ci 0xec, 0xb6, 0xdb, 0x4f, 0x6e, 0xa3, 0x11, 0xe7, 954e1051a39Sopenharmony_ci 0x7a, 0xfd, 0xbc, 0xd4, 0x7a, 0xee, 0x1b, 0xb1, 955e1051a39Sopenharmony_ci 0x50, 0xf2, 0x16, 0x87, 0x35, 0x78, 0xfb, 0x96, 956e1051a39Sopenharmony_ci 0x46, 0x8e, 0x8f, 0x9f, 0x3d, 0xe8, 0xef, 0xbf, 957e1051a39Sopenharmony_ci 0xce, 0x75, 0x62, 0x4b, 0x1d, 0xf0, 0x53, 0x22, 958e1051a39Sopenharmony_ci 0xa3, 0x4f, 0x14, 0x63, 0xe8, 0x39, 0xe8, 0x98, 959e1051a39Sopenharmony_ci 0x4c, 0x4a, 0xd0, 0xa9, 0x6e, 0x1a, 0xc8, 0x42, 960e1051a39Sopenharmony_ci 0xe5, 0x31, 0x8c, 0xc2, 0x3c, 0x06, 0x2a, 0x8c, 961e1051a39Sopenharmony_ci 0xa1, 0x71, 0xb8, 0xd5, 0x75, 0x98, 0x0d, 0xde, 962e1051a39Sopenharmony_ci 0x7f, 0xc5, 0x6f, 0x15, 0x36, 0x52, 0x38, 0x20, 963e1051a39Sopenharmony_ci 0xd4, 0x31, 0x92, 0xbf, 0xd5, 0x1e, 0x8e, 0x22, 964e1051a39Sopenharmony_ci 0x89, 0x78, 0xac, 0xa5, 0xb9, 0x44, 0x72, 0xf3, 965e1051a39Sopenharmony_ci 0x39, 0xca, 0xeb, 0x99, 0x31, 0xb4, 0x2b, 0xe3, 966e1051a39Sopenharmony_ci 0x01, 0x26, 0x8b, 0xc9, 0x97, 0x89, 0xc9, 0xb2, 967e1051a39Sopenharmony_ci 0x55, 0x71, 0xc3, 0xc0, 0xe4, 0xcb, 0x3f, 0x00, 968e1051a39Sopenharmony_ci 0x7f, 0x1a, 0x51, 0x1c, 0xbb, 0x53, 0xc8, 0x51, 969e1051a39Sopenharmony_ci 0x9c, 0xdd, 0x13, 0x02, 0xab, 0xca, 0x6c, 0x0f, 970e1051a39Sopenharmony_ci 0x34, 0xf9, 0x67, 0x39, 0xf1, 0x7f, 0xf4, 0x8b 971e1051a39Sopenharmony_ci}; 972e1051a39Sopenharmony_ci 973e1051a39Sopenharmony_cistatic const unsigned char dh_secret_expected[] = { 974e1051a39Sopenharmony_ci 0x08, 0xff, 0x33, 0xbb, 0x2e, 0xcf, 0xf4, 0x9a, 975e1051a39Sopenharmony_ci 0x7d, 0x4a, 0x79, 0x12, 0xae, 0xb1, 0xbb, 0x6a, 976e1051a39Sopenharmony_ci 0xb5, 0x11, 0x64, 0x1b, 0x4a, 0x76, 0x77, 0x0c, 977e1051a39Sopenharmony_ci 0x8c, 0xc1, 0xbc, 0xc2, 0x33, 0x34, 0x3d, 0xfe, 978e1051a39Sopenharmony_ci 0x70, 0x0d, 0x11, 0x81, 0x3d, 0x2c, 0x9e, 0xd2, 979e1051a39Sopenharmony_ci 0x3b, 0x21, 0x1c, 0xa9, 0xe8, 0x78, 0x69, 0x21, 980e1051a39Sopenharmony_ci 0xed, 0xca, 0x28, 0x3c, 0x68, 0xb1, 0x61, 0x53, 981e1051a39Sopenharmony_ci 0xfa, 0x01, 0xe9, 0x1a, 0xb8, 0x2c, 0x90, 0xdd, 982e1051a39Sopenharmony_ci 0xab, 0x4a, 0x95, 0x81, 0x67, 0x70, 0xa9, 0x87, 983e1051a39Sopenharmony_ci 0x10, 0xe1, 0x4c, 0x92, 0xab, 0x83, 0xb6, 0xe4, 984e1051a39Sopenharmony_ci 0x6e, 0x1e, 0x42, 0x6e, 0xe8, 0x52, 0x43, 0x0d, 985e1051a39Sopenharmony_ci 0x61, 0x87, 0xda, 0xa3, 0x72, 0x0a, 0x6b, 0xcd, 986e1051a39Sopenharmony_ci 0x73, 0x23, 0x5c, 0x6b, 0x0f, 0x94, 0x1f, 0x33, 987e1051a39Sopenharmony_ci 0x64, 0xf5, 0x04, 0x20, 0x55, 0x1a, 0x4b, 0xfe, 988e1051a39Sopenharmony_ci 0xaf, 0xe2, 0xbc, 0x43, 0x85, 0x05, 0xa5, 0x9a, 989e1051a39Sopenharmony_ci 0x4a, 0x40, 0xda, 0xca, 0x7a, 0x89, 0x5a, 0x73, 990e1051a39Sopenharmony_ci 0xdb, 0x57, 0x5c, 0x74, 0xc1, 0x3a, 0x23, 0xad, 991e1051a39Sopenharmony_ci 0x88, 0x32, 0x95, 0x7d, 0x58, 0x2d, 0x38, 0xf0, 992e1051a39Sopenharmony_ci 0xa6, 0x16, 0x5f, 0xb0, 0xd7, 0xe9, 0xb8, 0x79, 993e1051a39Sopenharmony_ci 0x9e, 0x42, 0xfd, 0x32, 0x20, 0xe3, 0x32, 0xe9, 994e1051a39Sopenharmony_ci 0x81, 0x85, 0xa0, 0xc9, 0x42, 0x97, 0x57, 0xb2, 995e1051a39Sopenharmony_ci 0xd0, 0xd0, 0x2c, 0x17, 0xdb, 0xaa, 0x1f, 0xf6, 996e1051a39Sopenharmony_ci 0xed, 0x93, 0xd7, 0xe7, 0x3e, 0x24, 0x1e, 0xae, 997e1051a39Sopenharmony_ci 0xd9, 0x0c, 0xaf, 0x39, 0x4d, 0x2b, 0xc6, 0x57, 998e1051a39Sopenharmony_ci 0x0f, 0x18, 0xc8, 0x1f, 0x2b, 0xe5, 0xd0, 0x1a, 999e1051a39Sopenharmony_ci 0x2c, 0xa9, 0x9f, 0xf1, 0x42, 0xb5, 0xd9, 0x63, 1000e1051a39Sopenharmony_ci 0xf9, 0xf5, 0x00, 0x32, 0x5e, 0x75, 0x56, 0xf9, 1001e1051a39Sopenharmony_ci 0x58, 0x49, 0xb3, 0xff, 0xc7, 0x47, 0x94, 0x86, 1002e1051a39Sopenharmony_ci 0xbe, 0x1d, 0x45, 0x96, 0xa3, 0x10, 0x6b, 0xd5, 1003e1051a39Sopenharmony_ci 0xcb, 0x4f, 0x61, 0xc5, 0x7e, 0xc5, 0xf1, 0x00, 1004e1051a39Sopenharmony_ci 0xfb, 0x7a, 0x0c, 0x82, 0xa1, 0x0b, 0x82, 0x52, 1005e1051a39Sopenharmony_ci 0x6a, 0x97, 0xd1, 0xd9, 0x7d, 0x98, 0xea, 0xf6 1006e1051a39Sopenharmony_ci}; 1007e1051a39Sopenharmony_ci 1008e1051a39Sopenharmony_cistatic const ST_KAT_PARAM dh_group[] = { 1009e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_P, dh_p), 1010e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_Q, dh_q), 1011e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_G, dh_g), 1012e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1013e1051a39Sopenharmony_ci}; 1014e1051a39Sopenharmony_ci 1015e1051a39Sopenharmony_ci/* The host's private key */ 1016e1051a39Sopenharmony_cistatic const ST_KAT_PARAM dh_host_key[] = { 1017e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PUB_KEY, dh_pub), 1018e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PRIV_KEY, dh_priv), 1019e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1020e1051a39Sopenharmony_ci}; 1021e1051a39Sopenharmony_ci 1022e1051a39Sopenharmony_ci/* The peer's public key */ 1023e1051a39Sopenharmony_cistatic const ST_KAT_PARAM dh_peer_key[] = { 1024e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PUB_KEY, dh_peer_pub), 1025e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1026e1051a39Sopenharmony_ci}; 1027e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_DH */ 1028e1051a39Sopenharmony_ci 1029e1051a39Sopenharmony_ci 1030e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_EC 1031e1051a39Sopenharmony_cistatic const char ecdh_curve_name[] = "prime256v1"; 1032e1051a39Sopenharmony_cistatic const unsigned char ecdh_privd[] = { 1033e1051a39Sopenharmony_ci 0x33, 0xd0, 0x43, 0x83, 0xa9, 0x89, 0x56, 0x03, 1034e1051a39Sopenharmony_ci 0xd2, 0xd7, 0xfe, 0x6b, 0x01, 0x6f, 0xe4, 0x59, 1035e1051a39Sopenharmony_ci 0xcc, 0x0d, 0x9a, 0x24, 0x6c, 0x86, 0x1b, 0x2e, 1036e1051a39Sopenharmony_ci 0xdc, 0x4b, 0x4d, 0x35, 0x43, 0xe1, 0x1b, 0xad 1037e1051a39Sopenharmony_ci}; 1038e1051a39Sopenharmony_cistatic const unsigned char ecdh_pub[] = { 1039e1051a39Sopenharmony_ci 0x04, 1040e1051a39Sopenharmony_ci 0x1b, 0x93, 0x67, 0x55, 0x1c, 0x55, 0x9f, 0x63, 1041e1051a39Sopenharmony_ci 0xd1, 0x22, 0xa4, 0xd8, 0xd1, 0x0a, 0x60, 0x6d, 1042e1051a39Sopenharmony_ci 0x02, 0xa5, 0x77, 0x57, 0xc8, 0xa3, 0x47, 0x73, 1043e1051a39Sopenharmony_ci 0x3a, 0x6a, 0x08, 0x28, 0x39, 0xbd, 0xc9, 0xd2, 1044e1051a39Sopenharmony_ci 0x80, 0xec, 0xe9, 0xa7, 0x08, 0x29, 0x71, 0x2f, 1045e1051a39Sopenharmony_ci 0xc9, 0x56, 0x82, 0xee, 0x9a, 0x85, 0x0f, 0x6d, 1046e1051a39Sopenharmony_ci 0x7f, 0x59, 0x5f, 0x8c, 0xd1, 0x96, 0x0b, 0xdf, 1047e1051a39Sopenharmony_ci 0x29, 0x3e, 0x49, 0x07, 0x88, 0x3f, 0x9a, 0x29 1048e1051a39Sopenharmony_ci}; 1049e1051a39Sopenharmony_cistatic const unsigned char ecdh_peer_pub[] = { 1050e1051a39Sopenharmony_ci 0x04, 1051e1051a39Sopenharmony_ci 0x1f, 0x72, 0xbd, 0x2a, 0x3e, 0xeb, 0x6c, 0x76, 1052e1051a39Sopenharmony_ci 0xe5, 0x5d, 0x69, 0x75, 0x24, 0xbf, 0x2f, 0x5b, 1053e1051a39Sopenharmony_ci 0x96, 0xb2, 0x91, 0x62, 0x06, 0x35, 0xcc, 0xb2, 1054e1051a39Sopenharmony_ci 0x4b, 0x31, 0x1b, 0x0c, 0x6f, 0x06, 0x9f, 0x86, 1055e1051a39Sopenharmony_ci 0xcf, 0xc8, 0xac, 0xd5, 0x4f, 0x4d, 0x77, 0xf3, 1056e1051a39Sopenharmony_ci 0x70, 0x4a, 0x8f, 0x04, 0x9a, 0xb1, 0x03, 0xc7, 1057e1051a39Sopenharmony_ci 0xeb, 0xd5, 0x94, 0x78, 0x61, 0xab, 0x78, 0x0c, 1058e1051a39Sopenharmony_ci 0x4a, 0x2d, 0x6b, 0xf3, 0x2f, 0x2e, 0x4a, 0xbc 1059e1051a39Sopenharmony_ci}; 1060e1051a39Sopenharmony_ci 1061e1051a39Sopenharmony_cistatic const ST_KAT_PARAM ecdh_group[] = { 1062e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_PKEY_PARAM_GROUP_NAME, ecdh_curve_name), 1063e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1064e1051a39Sopenharmony_ci}; 1065e1051a39Sopenharmony_cistatic const ST_KAT_PARAM ecdh_host_key[] = { 1066e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_PKEY_PARAM_PUB_KEY, ecdh_pub), 1067e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PRIV_KEY, ecdh_privd), 1068e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1069e1051a39Sopenharmony_ci}; 1070e1051a39Sopenharmony_cistatic const ST_KAT_PARAM ecdh_peer_key[] = { 1071e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_PKEY_PARAM_PUB_KEY, ecdh_peer_pub), 1072e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1073e1051a39Sopenharmony_ci}; 1074e1051a39Sopenharmony_cistatic const unsigned char ecdh_secret_expected[] = { 1075e1051a39Sopenharmony_ci 0x45, 0x2a, 0x2f, 0x0d, 0x24, 0xe6, 0x8d, 0xd0, 1076e1051a39Sopenharmony_ci 0xda, 0x59, 0x7b, 0x0c, 0xec, 0x9b, 0x4c, 0x38, 1077e1051a39Sopenharmony_ci 0x41, 0xdd, 0xce, 0xb3, 0xcc, 0xf1, 0x90, 0x8e, 1078e1051a39Sopenharmony_ci 0x30, 0xdb, 0x5b, 0x5f, 0x97, 0xea, 0xe0, 0xc2 1079e1051a39Sopenharmony_ci}; 1080e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_EC */ 1081e1051a39Sopenharmony_ci 1082e1051a39Sopenharmony_ci#if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_EC) 1083e1051a39Sopenharmony_cistatic const ST_KAT_KAS st_kat_kas_tests[] = 1084e1051a39Sopenharmony_ci{ 1085e1051a39Sopenharmony_ci# ifndef OPENSSL_NO_DH 1086e1051a39Sopenharmony_ci { 1087e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KA_DH, 1088e1051a39Sopenharmony_ci "DH", 1089e1051a39Sopenharmony_ci dh_group, 1090e1051a39Sopenharmony_ci dh_host_key, 1091e1051a39Sopenharmony_ci dh_peer_key, 1092e1051a39Sopenharmony_ci ITM(dh_secret_expected) 1093e1051a39Sopenharmony_ci }, 1094e1051a39Sopenharmony_ci# endif /* OPENSSL_NO_DH */ 1095e1051a39Sopenharmony_ci# ifndef OPENSSL_NO_EC 1096e1051a39Sopenharmony_ci { 1097e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_KA_ECDH, 1098e1051a39Sopenharmony_ci "EC", 1099e1051a39Sopenharmony_ci ecdh_group, 1100e1051a39Sopenharmony_ci ecdh_host_key, 1101e1051a39Sopenharmony_ci ecdh_peer_key, 1102e1051a39Sopenharmony_ci ITM(ecdh_secret_expected) 1103e1051a39Sopenharmony_ci }, 1104e1051a39Sopenharmony_ci# endif /* OPENSSL_NO_EC */ 1105e1051a39Sopenharmony_ci}; 1106e1051a39Sopenharmony_ci#endif /* !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_EC) */ 1107e1051a39Sopenharmony_ci 1108e1051a39Sopenharmony_ci/* RSA key data */ 1109e1051a39Sopenharmony_cistatic const unsigned char rsa_n[] = { 1110e1051a39Sopenharmony_ci 0xDB, 0x10, 0x1A, 0xC2, 0xA3, 0xF1, 0xDC, 0xFF, 1111e1051a39Sopenharmony_ci 0x13, 0x6B, 0xED, 0x44, 0xDF, 0xF0, 0x02, 0x6D, 1112e1051a39Sopenharmony_ci 0x13, 0xC7, 0x88, 0xDA, 0x70, 0x6B, 0x54, 0xF1, 1113e1051a39Sopenharmony_ci 0xE8, 0x27, 0xDC, 0xC3, 0x0F, 0x99, 0x6A, 0xFA, 1114e1051a39Sopenharmony_ci 0xC6, 0x67, 0xFF, 0x1D, 0x1E, 0x3C, 0x1D, 0xC1, 1115e1051a39Sopenharmony_ci 0xB5, 0x5F, 0x6C, 0xC0, 0xB2, 0x07, 0x3A, 0x6D, 1116e1051a39Sopenharmony_ci 0x41, 0xE4, 0x25, 0x99, 0xAC, 0xFC, 0xD2, 0x0F, 1117e1051a39Sopenharmony_ci 0x02, 0xD3, 0xD1, 0x54, 0x06, 0x1A, 0x51, 0x77, 1118e1051a39Sopenharmony_ci 0xBD, 0xB6, 0xBF, 0xEA, 0xA7, 0x5C, 0x06, 0xA9, 1119e1051a39Sopenharmony_ci 0x5D, 0x69, 0x84, 0x45, 0xD7, 0xF5, 0x05, 0xBA, 1120e1051a39Sopenharmony_ci 0x47, 0xF0, 0x1B, 0xD7, 0x2B, 0x24, 0xEC, 0xCB, 1121e1051a39Sopenharmony_ci 0x9B, 0x1B, 0x10, 0x8D, 0x81, 0xA0, 0xBE, 0xB1, 1122e1051a39Sopenharmony_ci 0x8C, 0x33, 0xE4, 0x36, 0xB8, 0x43, 0xEB, 0x19, 1123e1051a39Sopenharmony_ci 0x2A, 0x81, 0x8D, 0xDE, 0x81, 0x0A, 0x99, 0x48, 1124e1051a39Sopenharmony_ci 0xB6, 0xF6, 0xBC, 0xCD, 0x49, 0x34, 0x3A, 0x8F, 1125e1051a39Sopenharmony_ci 0x26, 0x94, 0xE3, 0x28, 0x82, 0x1A, 0x7C, 0x8F, 1126e1051a39Sopenharmony_ci 0x59, 0x9F, 0x45, 0xE8, 0x5D, 0x1A, 0x45, 0x76, 1127e1051a39Sopenharmony_ci 0x04, 0x56, 0x05, 0xA1, 0xD0, 0x1B, 0x8C, 0x77, 1128e1051a39Sopenharmony_ci 0x6D, 0xAF, 0x53, 0xFA, 0x71, 0xE2, 0x67, 0xE0, 1129e1051a39Sopenharmony_ci 0x9A, 0xFE, 0x03, 0xA9, 0x85, 0xD2, 0xC9, 0xAA, 1130e1051a39Sopenharmony_ci 0xBA, 0x2A, 0xBC, 0xF4, 0xA0, 0x08, 0xF5, 0x13, 1131e1051a39Sopenharmony_ci 0x98, 0x13, 0x5D, 0xF0, 0xD9, 0x33, 0x34, 0x2A, 1132e1051a39Sopenharmony_ci 0x61, 0xC3, 0x89, 0x55, 0xF0, 0xAE, 0x1A, 0x9C, 1133e1051a39Sopenharmony_ci 0x22, 0xEE, 0x19, 0x05, 0x8D, 0x32, 0xFE, 0xEC, 1134e1051a39Sopenharmony_ci 0x9C, 0x84, 0xBA, 0xB7, 0xF9, 0x6C, 0x3A, 0x4F, 1135e1051a39Sopenharmony_ci 0x07, 0xFC, 0x45, 0xEB, 0x12, 0xE5, 0x7B, 0xFD, 1136e1051a39Sopenharmony_ci 0x55, 0xE6, 0x29, 0x69, 0xD1, 0xC2, 0xE8, 0xB9, 1137e1051a39Sopenharmony_ci 0x78, 0x59, 0xF6, 0x79, 0x10, 0xC6, 0x4E, 0xEB, 1138e1051a39Sopenharmony_ci 0x6A, 0x5E, 0xB9, 0x9A, 0xC7, 0xC4, 0x5B, 0x63, 1139e1051a39Sopenharmony_ci 0xDA, 0xA3, 0x3F, 0x5E, 0x92, 0x7A, 0x81, 0x5E, 1140e1051a39Sopenharmony_ci 0xD6, 0xB0, 0xE2, 0x62, 0x8F, 0x74, 0x26, 0xC2, 1141e1051a39Sopenharmony_ci 0x0C, 0xD3, 0x9A, 0x17, 0x47, 0xE6, 0x8E, 0xAB 1142e1051a39Sopenharmony_ci}; 1143e1051a39Sopenharmony_cistatic const unsigned char rsa_e[] = { 0x01, 0x00, 0x01 }; 1144e1051a39Sopenharmony_cistatic const unsigned char rsa_d[] = { 1145e1051a39Sopenharmony_ci 0x52, 0x41, 0xF4, 0xDA, 0x7B, 0xB7, 0x59, 0x55, 1146e1051a39Sopenharmony_ci 0xCA, 0xD4, 0x2F, 0x0F, 0x3A, 0xCB, 0xA4, 0x0D, 1147e1051a39Sopenharmony_ci 0x93, 0x6C, 0xCC, 0x9D, 0xC1, 0xB2, 0xFB, 0xFD, 1148e1051a39Sopenharmony_ci 0xAE, 0x40, 0x31, 0xAC, 0x69, 0x52, 0x21, 0x92, 1149e1051a39Sopenharmony_ci 0xB3, 0x27, 0xDF, 0xEA, 0xEE, 0x2C, 0x82, 0xBB, 1150e1051a39Sopenharmony_ci 0xF7, 0x40, 0x32, 0xD5, 0x14, 0xC4, 0x94, 0x12, 1151e1051a39Sopenharmony_ci 0xEC, 0xB8, 0x1F, 0xCA, 0x59, 0xE3, 0xC1, 0x78, 1152e1051a39Sopenharmony_ci 0xF3, 0x85, 0xD8, 0x47, 0xA5, 0xD7, 0x02, 0x1A, 1153e1051a39Sopenharmony_ci 0x65, 0x79, 0x97, 0x0D, 0x24, 0xF4, 0xF0, 0x67, 1154e1051a39Sopenharmony_ci 0x6E, 0x75, 0x2D, 0xBF, 0x10, 0x3D, 0xA8, 0x7D, 1155e1051a39Sopenharmony_ci 0xEF, 0x7F, 0x60, 0xE4, 0xE6, 0x05, 0x82, 0x89, 1156e1051a39Sopenharmony_ci 0x5D, 0xDF, 0xC6, 0xD2, 0x6C, 0x07, 0x91, 0x33, 1157e1051a39Sopenharmony_ci 0x98, 0x42, 0xF0, 0x02, 0x00, 0x25, 0x38, 0xC5, 1158e1051a39Sopenharmony_ci 0x85, 0x69, 0x8A, 0x7D, 0x2F, 0x95, 0x6C, 0x43, 1159e1051a39Sopenharmony_ci 0x9A, 0xB8, 0x81, 0xE2, 0xD0, 0x07, 0x35, 0xAA, 1160e1051a39Sopenharmony_ci 0x05, 0x41, 0xC9, 0x1E, 0xAF, 0xE4, 0x04, 0x3B, 1161e1051a39Sopenharmony_ci 0x19, 0xB8, 0x73, 0xA2, 0xAC, 0x4B, 0x1E, 0x66, 1162e1051a39Sopenharmony_ci 0x48, 0xD8, 0x72, 0x1F, 0xAC, 0xF6, 0xCB, 0xBC, 1163e1051a39Sopenharmony_ci 0x90, 0x09, 0xCA, 0xEC, 0x0C, 0xDC, 0xF9, 0x2C, 1164e1051a39Sopenharmony_ci 0xD7, 0xEB, 0xAE, 0xA3, 0xA4, 0x47, 0xD7, 0x33, 1165e1051a39Sopenharmony_ci 0x2F, 0x8A, 0xCA, 0xBC, 0x5E, 0xF0, 0x77, 0xE4, 1166e1051a39Sopenharmony_ci 0x97, 0x98, 0x97, 0xC7, 0x10, 0x91, 0x7D, 0x2A, 1167e1051a39Sopenharmony_ci 0xA6, 0xFF, 0x46, 0x83, 0x97, 0xDE, 0xE9, 0xE2, 1168e1051a39Sopenharmony_ci 0x17, 0x03, 0x06, 0x14, 0xE2, 0xD7, 0xB1, 0x1D, 1169e1051a39Sopenharmony_ci 0x77, 0xAF, 0x51, 0x27, 0x5B, 0x5E, 0x69, 0xB8, 1170e1051a39Sopenharmony_ci 0x81, 0xE6, 0x11, 0xC5, 0x43, 0x23, 0x81, 0x04, 1171e1051a39Sopenharmony_ci 0x62, 0xFF, 0xE9, 0x46, 0xB8, 0xD8, 0x44, 0xDB, 1172e1051a39Sopenharmony_ci 0xA5, 0xCC, 0x31, 0x54, 0x34, 0xCE, 0x3E, 0x82, 1173e1051a39Sopenharmony_ci 0xD6, 0xBF, 0x7A, 0x0B, 0x64, 0x21, 0x6D, 0x88, 1174e1051a39Sopenharmony_ci 0x7E, 0x5B, 0x45, 0x12, 0x1E, 0x63, 0x8D, 0x49, 1175e1051a39Sopenharmony_ci 0xA7, 0x1D, 0xD9, 0x1E, 0x06, 0xCD, 0xE8, 0xBA, 1176e1051a39Sopenharmony_ci 0x2C, 0x8C, 0x69, 0x32, 0xEA, 0xBE, 0x60, 0x71 1177e1051a39Sopenharmony_ci}; 1178e1051a39Sopenharmony_cistatic const unsigned char rsa_p[] = { 1179e1051a39Sopenharmony_ci 0xFA, 0xAC, 0xE1, 0x37, 0x5E, 0x32, 0x11, 0x34, 1180e1051a39Sopenharmony_ci 0xC6, 0x72, 0x58, 0x2D, 0x91, 0x06, 0x3E, 0x77, 1181e1051a39Sopenharmony_ci 0xE7, 0x11, 0x21, 0xCD, 0x4A, 0xF8, 0xA4, 0x3F, 1182e1051a39Sopenharmony_ci 0x0F, 0xEF, 0x31, 0xE3, 0xF3, 0x55, 0xA0, 0xB9, 1183e1051a39Sopenharmony_ci 0xAC, 0xB6, 0xCB, 0xBB, 0x41, 0xD0, 0x32, 0x81, 1184e1051a39Sopenharmony_ci 0x9A, 0x8F, 0x7A, 0x99, 0x30, 0x77, 0x6C, 0x68, 1185e1051a39Sopenharmony_ci 0x27, 0xE2, 0x96, 0xB5, 0x72, 0xC9, 0xC3, 0xD4, 1186e1051a39Sopenharmony_ci 0x42, 0xAA, 0xAA, 0xCA, 0x95, 0x8F, 0xFF, 0xC9, 1187e1051a39Sopenharmony_ci 0x9B, 0x52, 0x34, 0x30, 0x1D, 0xCF, 0xFE, 0xCF, 1188e1051a39Sopenharmony_ci 0x3C, 0x56, 0x68, 0x6E, 0xEF, 0xE7, 0x6C, 0xD7, 1189e1051a39Sopenharmony_ci 0xFB, 0x99, 0xF5, 0x4A, 0xA5, 0x21, 0x1F, 0x2B, 1190e1051a39Sopenharmony_ci 0xEA, 0x93, 0xE8, 0x98, 0x26, 0xC4, 0x6E, 0x42, 1191e1051a39Sopenharmony_ci 0x21, 0x5E, 0xA0, 0xA1, 0x2A, 0x58, 0x35, 0xBB, 1192e1051a39Sopenharmony_ci 0x10, 0xE7, 0xBA, 0x27, 0x0A, 0x3B, 0xB3, 0xAF, 1193e1051a39Sopenharmony_ci 0xE2, 0x75, 0x36, 0x04, 0xAC, 0x56, 0xA0, 0xAB, 1194e1051a39Sopenharmony_ci 0x52, 0xDE, 0xCE, 0xDD, 0x2C, 0x28, 0x77, 0x03 1195e1051a39Sopenharmony_ci}; 1196e1051a39Sopenharmony_cistatic const unsigned char rsa_q[] = { 1197e1051a39Sopenharmony_ci 0xDF, 0xB7, 0x52, 0xB6, 0xD7, 0xC0, 0xE2, 0x96, 1198e1051a39Sopenharmony_ci 0xE7, 0xC9, 0xFE, 0x5D, 0x71, 0x5A, 0xC4, 0x40, 1199e1051a39Sopenharmony_ci 0x96, 0x2F, 0xE5, 0x87, 0xEA, 0xF3, 0xA5, 0x77, 1200e1051a39Sopenharmony_ci 0x11, 0x67, 0x3C, 0x8D, 0x56, 0x08, 0xA7, 0xB5, 1201e1051a39Sopenharmony_ci 0x67, 0xFA, 0x37, 0xA8, 0xB8, 0xCF, 0x61, 0xE8, 1202e1051a39Sopenharmony_ci 0x63, 0xD8, 0x38, 0x06, 0x21, 0x2B, 0x92, 0x09, 1203e1051a39Sopenharmony_ci 0xA6, 0x39, 0x3A, 0xEA, 0xA8, 0xB4, 0x45, 0x4B, 1204e1051a39Sopenharmony_ci 0x36, 0x10, 0x4C, 0xE4, 0x00, 0x66, 0x71, 0x65, 1205e1051a39Sopenharmony_ci 0xF8, 0x0B, 0x94, 0x59, 0x4F, 0x8C, 0xFD, 0xD5, 1206e1051a39Sopenharmony_ci 0x34, 0xA2, 0xE7, 0x62, 0x84, 0x0A, 0xA7, 0xBB, 1207e1051a39Sopenharmony_ci 0xDB, 0xD9, 0x8A, 0xCD, 0x05, 0xE1, 0xCC, 0x57, 1208e1051a39Sopenharmony_ci 0x7B, 0xF1, 0xF1, 0x1F, 0x11, 0x9D, 0xBA, 0x3E, 1209e1051a39Sopenharmony_ci 0x45, 0x18, 0x99, 0x1B, 0x41, 0x64, 0x43, 0xEE, 1210e1051a39Sopenharmony_ci 0x97, 0x5D, 0x77, 0x13, 0x5B, 0x74, 0x69, 0x73, 1211e1051a39Sopenharmony_ci 0x87, 0x95, 0x05, 0x07, 0xBE, 0x45, 0x07, 0x17, 1212e1051a39Sopenharmony_ci 0x7E, 0x4A, 0x69, 0x22, 0xF3, 0xDB, 0x05, 0x39 1213e1051a39Sopenharmony_ci}; 1214e1051a39Sopenharmony_cistatic const unsigned char rsa_dp[] = { 1215e1051a39Sopenharmony_ci 0x5E, 0xD8, 0xDC, 0xDA, 0x53, 0x44, 0xC4, 0x67, 1216e1051a39Sopenharmony_ci 0xE0, 0x92, 0x51, 0x34, 0xE4, 0x83, 0xA5, 0x4D, 1217e1051a39Sopenharmony_ci 0x3E, 0xDB, 0xA7, 0x9B, 0x82, 0xBB, 0x73, 0x81, 1218e1051a39Sopenharmony_ci 0xFC, 0xE8, 0x77, 0x4B, 0x15, 0xBE, 0x17, 0x73, 1219e1051a39Sopenharmony_ci 0x49, 0x9B, 0x5C, 0x98, 0xBC, 0xBD, 0x26, 0xEF, 1220e1051a39Sopenharmony_ci 0x0C, 0xE9, 0x2E, 0xED, 0x19, 0x7E, 0x86, 0x41, 1221e1051a39Sopenharmony_ci 0x1E, 0x9E, 0x48, 0x81, 0xDD, 0x2D, 0xE4, 0x6F, 1222e1051a39Sopenharmony_ci 0xC2, 0xCD, 0xCA, 0x93, 0x9E, 0x65, 0x7E, 0xD5, 1223e1051a39Sopenharmony_ci 0xEC, 0x73, 0xFD, 0x15, 0x1B, 0xA2, 0xA0, 0x7A, 1224e1051a39Sopenharmony_ci 0x0F, 0x0D, 0x6E, 0xB4, 0x53, 0x07, 0x90, 0x92, 1225e1051a39Sopenharmony_ci 0x64, 0x3B, 0x8B, 0xA9, 0x33, 0xB3, 0xC5, 0x94, 1226e1051a39Sopenharmony_ci 0x9B, 0x4C, 0x5D, 0x9C, 0x7C, 0x46, 0xA4, 0xA5, 1227e1051a39Sopenharmony_ci 0x56, 0xF4, 0xF3, 0xF8, 0x27, 0x0A, 0x7B, 0x42, 1228e1051a39Sopenharmony_ci 0x0D, 0x92, 0x70, 0x47, 0xE7, 0x42, 0x51, 0xA9, 1229e1051a39Sopenharmony_ci 0xC2, 0x18, 0xB1, 0x58, 0xB1, 0x50, 0x91, 0xB8, 1230e1051a39Sopenharmony_ci 0x61, 0x41, 0xB6, 0xA9, 0xCE, 0xD4, 0x7C, 0xBB 1231e1051a39Sopenharmony_ci}; 1232e1051a39Sopenharmony_cistatic const unsigned char rsa_dq[] = { 1233e1051a39Sopenharmony_ci 0x54, 0x09, 0x1F, 0x0F, 0x03, 0xD8, 0xB6, 0xC5, 1234e1051a39Sopenharmony_ci 0x0C, 0xE8, 0xB9, 0x9E, 0x0C, 0x38, 0x96, 0x43, 1235e1051a39Sopenharmony_ci 0xD4, 0xA6, 0xC5, 0x47, 0xDB, 0x20, 0x0E, 0xE5, 1236e1051a39Sopenharmony_ci 0xBD, 0x29, 0xD4, 0x7B, 0x1A, 0xF8, 0x41, 0x57, 1237e1051a39Sopenharmony_ci 0x49, 0x69, 0x9A, 0x82, 0xCC, 0x79, 0x4A, 0x43, 1238e1051a39Sopenharmony_ci 0xEB, 0x4D, 0x8B, 0x2D, 0xF2, 0x43, 0xD5, 0xA5, 1239e1051a39Sopenharmony_ci 0xBE, 0x44, 0xFD, 0x36, 0xAC, 0x8C, 0x9B, 0x02, 1240e1051a39Sopenharmony_ci 0xF7, 0x9A, 0x03, 0xE8, 0x19, 0xA6, 0x61, 0xAE, 1241e1051a39Sopenharmony_ci 0x76, 0x10, 0x93, 0x77, 0x41, 0x04, 0xAB, 0x4C, 1242e1051a39Sopenharmony_ci 0xED, 0x6A, 0xCC, 0x14, 0x1B, 0x99, 0x8D, 0x0C, 1243e1051a39Sopenharmony_ci 0x6A, 0x37, 0x3B, 0x86, 0x6C, 0x51, 0x37, 0x5B, 1244e1051a39Sopenharmony_ci 0x1D, 0x79, 0xF2, 0xA3, 0x43, 0x10, 0xC6, 0xA7, 1245e1051a39Sopenharmony_ci 0x21, 0x79, 0x6D, 0xF9, 0xE9, 0x04, 0x6A, 0xE8, 1246e1051a39Sopenharmony_ci 0x32, 0xFF, 0xAE, 0xFD, 0x1C, 0x7B, 0x8C, 0x29, 1247e1051a39Sopenharmony_ci 0x13, 0xA3, 0x0C, 0xB2, 0xAD, 0xEC, 0x6C, 0x0F, 1248e1051a39Sopenharmony_ci 0x8D, 0x27, 0x12, 0x7B, 0x48, 0xB2, 0xDB, 0x31 1249e1051a39Sopenharmony_ci}; 1250e1051a39Sopenharmony_cistatic const unsigned char rsa_qInv[] = { 1251e1051a39Sopenharmony_ci 0x8D, 0x1B, 0x05, 0xCA, 0x24, 0x1F, 0x0C, 0x53, 1252e1051a39Sopenharmony_ci 0x19, 0x52, 0x74, 0x63, 0x21, 0xFA, 0x78, 0x46, 1253e1051a39Sopenharmony_ci 0x79, 0xAF, 0x5C, 0xDE, 0x30, 0xA4, 0x6C, 0x20, 1254e1051a39Sopenharmony_ci 0x38, 0xE6, 0x97, 0x39, 0xB8, 0x7A, 0x70, 0x0D, 1255e1051a39Sopenharmony_ci 0x8B, 0x6C, 0x6D, 0x13, 0x74, 0xD5, 0x1C, 0xDE, 1256e1051a39Sopenharmony_ci 0xA9, 0xF4, 0x60, 0x37, 0xFE, 0x68, 0x77, 0x5E, 1257e1051a39Sopenharmony_ci 0x0B, 0x4E, 0x5E, 0x03, 0x31, 0x30, 0xDF, 0xD6, 1258e1051a39Sopenharmony_ci 0xAE, 0x85, 0xD0, 0x81, 0xBB, 0x61, 0xC7, 0xB1, 1259e1051a39Sopenharmony_ci 0x04, 0x5A, 0xC4, 0x6D, 0x56, 0x1C, 0xD9, 0x64, 1260e1051a39Sopenharmony_ci 0xE7, 0x85, 0x7F, 0x88, 0x91, 0xC9, 0x60, 0x28, 1261e1051a39Sopenharmony_ci 0x05, 0xE2, 0xC6, 0x24, 0x8F, 0xDD, 0x61, 0x64, 1262e1051a39Sopenharmony_ci 0xD8, 0x09, 0xDE, 0x7E, 0xD3, 0x4A, 0x61, 0x1A, 1263e1051a39Sopenharmony_ci 0xD3, 0x73, 0x58, 0x4B, 0xD8, 0xA0, 0x54, 0x25, 1264e1051a39Sopenharmony_ci 0x48, 0x83, 0x6F, 0x82, 0x6C, 0xAF, 0x36, 0x51, 1265e1051a39Sopenharmony_ci 0x2A, 0x5D, 0x14, 0x2F, 0x41, 0x25, 0x00, 0xDD, 1266e1051a39Sopenharmony_ci 0xF8, 0xF3, 0x95, 0xFE, 0x31, 0x25, 0x50, 0x12 1267e1051a39Sopenharmony_ci}; 1268e1051a39Sopenharmony_ci 1269e1051a39Sopenharmony_cistatic const ST_KAT_PARAM rsa_crt_key[] = { 1270e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_N, rsa_n), 1271e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e), 1272e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_D, rsa_d), 1273e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_FACTOR1, rsa_p), 1274e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_FACTOR2, rsa_q), 1275e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_EXPONENT1, rsa_dp), 1276e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_EXPONENT2, rsa_dq), 1277e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_COEFFICIENT1, rsa_qInv), 1278e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1279e1051a39Sopenharmony_ci}; 1280e1051a39Sopenharmony_ci 1281e1051a39Sopenharmony_cistatic const ST_KAT_PARAM rsa_pub_key[] = { 1282e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_N, rsa_n), 1283e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e), 1284e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1285e1051a39Sopenharmony_ci}; 1286e1051a39Sopenharmony_ci 1287e1051a39Sopenharmony_cistatic const ST_KAT_PARAM rsa_priv_key[] = { 1288e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_N, rsa_n), 1289e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e), 1290e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_D, rsa_d), 1291e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1292e1051a39Sopenharmony_ci}; 1293e1051a39Sopenharmony_ci 1294e1051a39Sopenharmony_ci/*- 1295e1051a39Sopenharmony_ci * Using OSSL_PKEY_RSA_PAD_MODE_NONE directly in the expansion of the 1296e1051a39Sopenharmony_ci * ST_KAT_PARAM_UTF8STRING macro below causes a failure on ancient 1297e1051a39Sopenharmony_ci * HP/UX PA-RISC compilers. 1298e1051a39Sopenharmony_ci */ 1299e1051a39Sopenharmony_cistatic const char pad_mode_none[] = OSSL_PKEY_RSA_PAD_MODE_NONE; 1300e1051a39Sopenharmony_ci 1301e1051a39Sopenharmony_cistatic const ST_KAT_PARAM rsa_enc_params[] = { 1302e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_ASYM_CIPHER_PARAM_PAD_MODE, pad_mode_none), 1303e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1304e1051a39Sopenharmony_ci}; 1305e1051a39Sopenharmony_ci 1306e1051a39Sopenharmony_cistatic const unsigned char rsa_expected_sig[256] = { 1307e1051a39Sopenharmony_ci 0xad, 0xbe, 0x2a, 0xaf, 0x16, 0x85, 0xc5, 0x00, 1308e1051a39Sopenharmony_ci 0x91, 0x3e, 0xd0, 0x49, 0xfb, 0x3a, 0x81, 0xb9, 1309e1051a39Sopenharmony_ci 0x6c, 0x28, 0xbc, 0xbf, 0xea, 0x96, 0x5f, 0xe4, 1310e1051a39Sopenharmony_ci 0x9f, 0x99, 0xf7, 0x18, 0x8c, 0xec, 0x60, 0x28, 1311e1051a39Sopenharmony_ci 0xeb, 0x29, 0x02, 0x49, 0xfc, 0xda, 0xd7, 0x78, 1312e1051a39Sopenharmony_ci 0x68, 0xf8, 0xe1, 0xe9, 0x4d, 0x20, 0x6d, 0x32, 1313e1051a39Sopenharmony_ci 0xa6, 0xde, 0xfc, 0xe4, 0xda, 0xcc, 0x6c, 0x75, 1314e1051a39Sopenharmony_ci 0x36, 0x6b, 0xff, 0x5a, 0xac, 0x01, 0xa8, 0xc2, 1315e1051a39Sopenharmony_ci 0xa9, 0xe6, 0x8b, 0x18, 0x3e, 0xec, 0xea, 0x4c, 1316e1051a39Sopenharmony_ci 0x4a, 0x9e, 0x00, 0x09, 0xd1, 0x8a, 0x69, 0x1b, 1317e1051a39Sopenharmony_ci 0x8b, 0xd9, 0xad, 0x37, 0xe5, 0x7c, 0xff, 0x7d, 1318e1051a39Sopenharmony_ci 0x59, 0x56, 0x3e, 0xa0, 0xc6, 0x32, 0xd8, 0x35, 1319e1051a39Sopenharmony_ci 0x2f, 0xff, 0xfb, 0x05, 0x02, 0xcd, 0xd7, 0x19, 1320e1051a39Sopenharmony_ci 0xb9, 0x00, 0x86, 0x2a, 0xcf, 0xaa, 0x78, 0x16, 1321e1051a39Sopenharmony_ci 0x4b, 0xf1, 0xa7, 0x59, 0xef, 0x7d, 0xe8, 0x74, 1322e1051a39Sopenharmony_ci 0x23, 0x5c, 0xb2, 0xd4, 0x8a, 0x99, 0xa5, 0xbc, 1323e1051a39Sopenharmony_ci 0xfa, 0x63, 0xd8, 0xf7, 0xbd, 0xc6, 0x00, 0x13, 1324e1051a39Sopenharmony_ci 0x06, 0x02, 0x9a, 0xd4, 0xa7, 0xb4, 0x3d, 0x61, 1325e1051a39Sopenharmony_ci 0xab, 0xf1, 0xc2, 0x95, 0x59, 0x9b, 0x3d, 0x67, 1326e1051a39Sopenharmony_ci 0x1f, 0xde, 0x57, 0xb6, 0xb6, 0x9f, 0xb0, 0x87, 1327e1051a39Sopenharmony_ci 0xd6, 0x51, 0xd5, 0x3e, 0x00, 0xe2, 0xc9, 0xa0, 1328e1051a39Sopenharmony_ci 0x03, 0x66, 0xbc, 0x01, 0xb3, 0x8e, 0xfa, 0xf1, 1329e1051a39Sopenharmony_ci 0x15, 0xeb, 0x26, 0xf1, 0x5d, 0x81, 0x90, 0xb4, 1330e1051a39Sopenharmony_ci 0x1c, 0x00, 0x7c, 0x83, 0x4a, 0xa5, 0xde, 0x64, 1331e1051a39Sopenharmony_ci 0xae, 0xea, 0x6c, 0x43, 0xc3, 0x20, 0x77, 0x77, 1332e1051a39Sopenharmony_ci 0x42, 0x12, 0x24, 0xf5, 0xe3, 0x70, 0xdd, 0x59, 1333e1051a39Sopenharmony_ci 0x48, 0x9c, 0xef, 0xd4, 0x8a, 0x3c, 0x29, 0x6a, 1334e1051a39Sopenharmony_ci 0x0c, 0x9c, 0xf2, 0x13, 0xa4, 0x1c, 0x2f, 0x49, 1335e1051a39Sopenharmony_ci 0xcd, 0xb4, 0xaa, 0x28, 0x40, 0x34, 0xc6, 0x75, 1336e1051a39Sopenharmony_ci 0xba, 0x30, 0xe6, 0xd8, 0x5b, 0x2f, 0x08, 0xd0, 1337e1051a39Sopenharmony_ci 0x29, 0xa5, 0x39, 0xfb, 0x6e, 0x3b, 0x0f, 0x52, 1338e1051a39Sopenharmony_ci 0x2c, 0x68, 0xf0, 0x37, 0xa9, 0xd2, 0x56, 0xd6 1339e1051a39Sopenharmony_ci}; 1340e1051a39Sopenharmony_ci 1341e1051a39Sopenharmony_cistatic const unsigned char rsa_asym_plaintext_encrypt[256] = { 1342e1051a39Sopenharmony_ci 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 1343e1051a39Sopenharmony_ci 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 1344e1051a39Sopenharmony_ci}; 1345e1051a39Sopenharmony_cistatic const unsigned char rsa_asym_expected_encrypt[256] = { 1346e1051a39Sopenharmony_ci 0x54, 0xac, 0x23, 0x96, 0x1d, 0x82, 0x5d, 0x8b, 1347e1051a39Sopenharmony_ci 0x8f, 0x36, 0x33, 0xd0, 0xf4, 0x02, 0xa2, 0x61, 1348e1051a39Sopenharmony_ci 0xb1, 0x13, 0xd4, 0x4a, 0x46, 0x06, 0x37, 0x3c, 1349e1051a39Sopenharmony_ci 0xbf, 0x40, 0x05, 0x3c, 0xc6, 0x3b, 0x64, 0xdc, 1350e1051a39Sopenharmony_ci 0x22, 0x22, 0xaf, 0x36, 0x79, 0x62, 0x45, 0xf0, 1351e1051a39Sopenharmony_ci 0x97, 0x82, 0x22, 0x44, 0x86, 0x4a, 0x7c, 0xfa, 1352e1051a39Sopenharmony_ci 0xac, 0x03, 0x21, 0x84, 0x3f, 0x31, 0xad, 0x2a, 1353e1051a39Sopenharmony_ci 0xa4, 0x6e, 0x7a, 0xc5, 0x93, 0xf3, 0x0f, 0xfc, 1354e1051a39Sopenharmony_ci 0xf1, 0x62, 0xce, 0x82, 0x12, 0x45, 0xc9, 0x35, 1355e1051a39Sopenharmony_ci 0xb0, 0x7a, 0xcd, 0x99, 0x8c, 0x91, 0x6b, 0x5a, 1356e1051a39Sopenharmony_ci 0xd3, 0x46, 0xdb, 0xf9, 0x9e, 0x52, 0x49, 0xbd, 1357e1051a39Sopenharmony_ci 0x1e, 0xe8, 0xda, 0xac, 0x61, 0x47, 0xc2, 0xda, 1358e1051a39Sopenharmony_ci 0xfc, 0x1e, 0xfb, 0x74, 0xd7, 0xd6, 0xc1, 0x18, 1359e1051a39Sopenharmony_ci 0x86, 0x3e, 0x20, 0x9c, 0x7a, 0xe1, 0x04, 0xb7, 1360e1051a39Sopenharmony_ci 0x38, 0x43, 0xb1, 0x4e, 0xa0, 0xd8, 0xc1, 0x39, 1361e1051a39Sopenharmony_ci 0x4d, 0xe1, 0xd3, 0xb0, 0xb3, 0xf1, 0x82, 0x87, 1362e1051a39Sopenharmony_ci 0x1f, 0x74, 0xb5, 0x69, 0xfd, 0x33, 0xd6, 0x21, 1363e1051a39Sopenharmony_ci 0x7c, 0x61, 0x60, 0x28, 0xca, 0x70, 0xdb, 0xa0, 1364e1051a39Sopenharmony_ci 0xbb, 0xc8, 0x73, 0xa9, 0x82, 0xf8, 0x6b, 0xd8, 1365e1051a39Sopenharmony_ci 0xf0, 0xc9, 0x7b, 0x20, 0xdf, 0x9d, 0xfb, 0x8c, 1366e1051a39Sopenharmony_ci 0xd4, 0xa2, 0x89, 0xe1, 0x9b, 0x04, 0xad, 0xaa, 1367e1051a39Sopenharmony_ci 0x11, 0x6c, 0x8f, 0xce, 0x83, 0x29, 0x56, 0x69, 1368e1051a39Sopenharmony_ci 0xbb, 0x00, 0x3b, 0xef, 0xca, 0x2d, 0xcd, 0x52, 1369e1051a39Sopenharmony_ci 0xc8, 0xf1, 0xb3, 0x9b, 0xb4, 0x4f, 0x6d, 0x9c, 1370e1051a39Sopenharmony_ci 0x3d, 0x69, 0xcc, 0x6d, 0x1f, 0x38, 0x4d, 0xe6, 1371e1051a39Sopenharmony_ci 0xbb, 0x0c, 0x87, 0xdc, 0x5f, 0xa9, 0x24, 0x93, 1372e1051a39Sopenharmony_ci 0x03, 0x46, 0xa2, 0x33, 0x6c, 0xf4, 0xd8, 0x5d, 1373e1051a39Sopenharmony_ci 0x68, 0xf3, 0xd3, 0xe0, 0xf2, 0x30, 0xdb, 0xf5, 1374e1051a39Sopenharmony_ci 0x4f, 0x0f, 0xad, 0xc7, 0xd0, 0xaa, 0x47, 0xd9, 1375e1051a39Sopenharmony_ci 0x9f, 0x85, 0x1b, 0x2e, 0x6c, 0x3c, 0x57, 0x04, 1376e1051a39Sopenharmony_ci 0x29, 0xf4, 0xf5, 0x66, 0x7d, 0x93, 0x4a, 0xaa, 1377e1051a39Sopenharmony_ci 0x05, 0x52, 0x55, 0xc1, 0xc6, 0x06, 0x90, 0xab, 1378e1051a39Sopenharmony_ci}; 1379e1051a39Sopenharmony_ci 1380e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_EC 1381e1051a39Sopenharmony_ci/* ECDSA key data */ 1382e1051a39Sopenharmony_cistatic const char ecd_prime_curve_name[] = "secp224r1"; 1383e1051a39Sopenharmony_cistatic const unsigned char ecd_prime_priv[] = { 1384e1051a39Sopenharmony_ci 0x98, 0x1f, 0xb5, 0xf1, 0xfc, 0x87, 0x1d, 0x7d, 1385e1051a39Sopenharmony_ci 0xde, 0x1e, 0x01, 0x64, 0x09, 0x9b, 0xe7, 0x1b, 1386e1051a39Sopenharmony_ci 0x9f, 0xad, 0x63, 0xdd, 0x33, 0x01, 0xd1, 0x50, 1387e1051a39Sopenharmony_ci 0x80, 0x93, 0x50, 0x30 1388e1051a39Sopenharmony_ci}; 1389e1051a39Sopenharmony_cistatic const unsigned char ecd_prime_pub[] = { 1390e1051a39Sopenharmony_ci 0x04, 0x95, 0x47, 0x99, 0x44, 0x29, 0x8f, 0x51, 1391e1051a39Sopenharmony_ci 0x39, 0xe2, 0x53, 0xec, 0x79, 0xb0, 0x4d, 0xde, 1392e1051a39Sopenharmony_ci 0x87, 0x1a, 0x76, 0x54, 0xd5, 0x96, 0xb8, 0x7a, 1393e1051a39Sopenharmony_ci 0x6d, 0xf4, 0x1c, 0x2c, 0x87, 0x91, 0x5f, 0xd5, 1394e1051a39Sopenharmony_ci 0x31, 0xdd, 0x24, 0xe5, 0x78, 0xd9, 0x08, 0x24, 1395e1051a39Sopenharmony_ci 0x8a, 0x49, 0x99, 0xec, 0x55, 0xf2, 0x82, 0xb3, 1396e1051a39Sopenharmony_ci 0xc4, 0xb7, 0x33, 0x68, 0xe4, 0x24, 0xa9, 0x12, 1397e1051a39Sopenharmony_ci 0x82 1398e1051a39Sopenharmony_ci}; 1399e1051a39Sopenharmony_cistatic const ST_KAT_PARAM ecdsa_prime_key[] = { 1400e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_PKEY_PARAM_GROUP_NAME, ecd_prime_curve_name), 1401e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_PKEY_PARAM_PUB_KEY, ecd_prime_pub), 1402e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PRIV_KEY, ecd_prime_priv), 1403e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1404e1051a39Sopenharmony_ci}; 1405e1051a39Sopenharmony_ci 1406e1051a39Sopenharmony_ci# ifndef OPENSSL_NO_EC2M 1407e1051a39Sopenharmony_cistatic const char ecd_bin_curve_name[] = "sect233r1"; 1408e1051a39Sopenharmony_cistatic const unsigned char ecd_bin_priv[] = { 1409e1051a39Sopenharmony_ci 0x00, 0x6d, 0xd6, 0x39, 0x9d, 0x2a, 0xa2, 0xc8, 1410e1051a39Sopenharmony_ci 0x8c, 0xfc, 0x7b, 0x80, 0x66, 0xaa, 0xe1, 0xaa, 1411e1051a39Sopenharmony_ci 0xba, 0xee, 0xcb, 0xfd, 0xc9, 0xe5, 0x36, 0x38, 1412e1051a39Sopenharmony_ci 0x2e, 0xf7, 0x37, 0x6d, 0xd3, 0x20 1413e1051a39Sopenharmony_ci}; 1414e1051a39Sopenharmony_cistatic const unsigned char ecd_bin_pub[] = { 1415e1051a39Sopenharmony_ci 0x04, 0x00, 0x06, 0xe2, 0x56, 0xf7, 0x37, 0xf9, 1416e1051a39Sopenharmony_ci 0xea, 0xb6, 0xd1, 0x0f, 0x59, 0xfa, 0x23, 0xc3, 1417e1051a39Sopenharmony_ci 0x93, 0xa8, 0xb2, 0x26, 0xe2, 0x5c, 0x08, 0xbe, 1418e1051a39Sopenharmony_ci 0x63, 0x49, 0x26, 0xdc, 0xc7, 0x1e, 0x6f, 0x01, 1419e1051a39Sopenharmony_ci 0x32, 0x3b, 0xe6, 0x54, 0x8d, 0xc1, 0x13, 0x3e, 1420e1051a39Sopenharmony_ci 0x54, 0xb2, 0x66, 0x89, 0xb2, 0x82, 0x0a, 0x72, 1421e1051a39Sopenharmony_ci 0x02, 0xa8, 0xe9, 0x6f, 0x54, 0xfd, 0x3a, 0x6b, 1422e1051a39Sopenharmony_ci 0x99, 0xb6, 0x8f, 0x80, 0x46 1423e1051a39Sopenharmony_ci}; 1424e1051a39Sopenharmony_cistatic const ST_KAT_PARAM ecdsa_bin_key[] = { 1425e1051a39Sopenharmony_ci ST_KAT_PARAM_UTF8STRING(OSSL_PKEY_PARAM_GROUP_NAME, ecd_bin_curve_name), 1426e1051a39Sopenharmony_ci ST_KAT_PARAM_OCTET(OSSL_PKEY_PARAM_PUB_KEY, ecd_bin_pub), 1427e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PRIV_KEY, ecd_bin_priv), 1428e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1429e1051a39Sopenharmony_ci}; 1430e1051a39Sopenharmony_ci# endif /* OPENSSL_NO_EC2M */ 1431e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_EC */ 1432e1051a39Sopenharmony_ci 1433e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_DSA 1434e1051a39Sopenharmony_ci/* dsa 2048 */ 1435e1051a39Sopenharmony_cistatic const unsigned char dsa_p[] = { 1436e1051a39Sopenharmony_ci 0xa2, 0x9b, 0x88, 0x72, 0xce, 0x8b, 0x84, 0x23, 1437e1051a39Sopenharmony_ci 0xb7, 0xd5, 0xd2, 0x1d, 0x4b, 0x02, 0xf5, 0x7e, 1438e1051a39Sopenharmony_ci 0x03, 0xe9, 0xe6, 0xb8, 0xa2, 0x58, 0xdc, 0x16, 1439e1051a39Sopenharmony_ci 0x61, 0x1b, 0xa0, 0x98, 0xab, 0x54, 0x34, 0x15, 1440e1051a39Sopenharmony_ci 0xe4, 0x15, 0xf1, 0x56, 0x99, 0x7a, 0x3e, 0xe2, 1441e1051a39Sopenharmony_ci 0x36, 0x65, 0x8f, 0xa0, 0x93, 0x26, 0x0d, 0xe3, 1442e1051a39Sopenharmony_ci 0xad, 0x42, 0x2e, 0x05, 0xe0, 0x46, 0xf9, 0xec, 1443e1051a39Sopenharmony_ci 0x29, 0x16, 0x1a, 0x37, 0x5f, 0x0e, 0xb4, 0xef, 1444e1051a39Sopenharmony_ci 0xfc, 0xef, 0x58, 0x28, 0x5c, 0x5d, 0x39, 0xed, 1445e1051a39Sopenharmony_ci 0x42, 0x5d, 0x7a, 0x62, 0xca, 0x12, 0x89, 0x6c, 1446e1051a39Sopenharmony_ci 0x4a, 0x92, 0xcb, 0x19, 0x46, 0xf2, 0x95, 0x2a, 1447e1051a39Sopenharmony_ci 0x48, 0x13, 0x3f, 0x07, 0xda, 0x36, 0x4d, 0x1b, 1448e1051a39Sopenharmony_ci 0xdf, 0x6b, 0x0f, 0x71, 0x39, 0x98, 0x3e, 0x69, 1449e1051a39Sopenharmony_ci 0x3c, 0x80, 0x05, 0x9b, 0x0e, 0xac, 0xd1, 0x47, 1450e1051a39Sopenharmony_ci 0x9b, 0xa9, 0xf2, 0x85, 0x77, 0x54, 0xed, 0xe7, 1451e1051a39Sopenharmony_ci 0x5f, 0x11, 0x2b, 0x07, 0xeb, 0xbf, 0x35, 0x34, 1452e1051a39Sopenharmony_ci 0x8b, 0xbf, 0x3e, 0x01, 0xe0, 0x2f, 0x2d, 0x47, 1453e1051a39Sopenharmony_ci 0x3d, 0xe3, 0x94, 0x53, 0xf9, 0x9d, 0xd2, 0x36, 1454e1051a39Sopenharmony_ci 0x75, 0x41, 0xca, 0xca, 0x3b, 0xa0, 0x11, 0x66, 1455e1051a39Sopenharmony_ci 0x34, 0x3d, 0x7b, 0x5b, 0x58, 0xa3, 0x7b, 0xd1, 1456e1051a39Sopenharmony_ci 0xb7, 0x52, 0x1d, 0xb2, 0xf1, 0x3b, 0x86, 0x70, 1457e1051a39Sopenharmony_ci 0x71, 0x32, 0xfe, 0x09, 0xf4, 0xcd, 0x09, 0xdc, 1458e1051a39Sopenharmony_ci 0x16, 0x18, 0xfa, 0x34, 0x01, 0xeb, 0xf9, 0xcc, 1459e1051a39Sopenharmony_ci 0x7b, 0x19, 0xfa, 0x94, 0xaa, 0x47, 0x20, 0x88, 1460e1051a39Sopenharmony_ci 0x13, 0x3d, 0x6c, 0xb2, 0xd3, 0x5c, 0x11, 0x79, 1461e1051a39Sopenharmony_ci 0xc8, 0xc8, 0xff, 0x36, 0x87, 0x58, 0xd5, 0x07, 1462e1051a39Sopenharmony_ci 0xd9, 0xf9, 0xa1, 0x7d, 0x46, 0xc1, 0x10, 0xfe, 1463e1051a39Sopenharmony_ci 0x31, 0x44, 0xce, 0x9b, 0x02, 0x2b, 0x42, 0xe4, 1464e1051a39Sopenharmony_ci 0x19, 0xeb, 0x4f, 0x53, 0x88, 0x61, 0x3b, 0xfc, 1465e1051a39Sopenharmony_ci 0x3e, 0x26, 0x24, 0x1a, 0x43, 0x2e, 0x87, 0x06, 1466e1051a39Sopenharmony_ci 0xbc, 0x58, 0xef, 0x76, 0x11, 0x72, 0x78, 0xde, 1467e1051a39Sopenharmony_ci 0xab, 0x6c, 0xf6, 0x92, 0x61, 0x82, 0x91, 0xb7 1468e1051a39Sopenharmony_ci}; 1469e1051a39Sopenharmony_cistatic const unsigned char dsa_q[] = { 1470e1051a39Sopenharmony_ci 0xa3, 0xbf, 0xd9, 0xab, 0x78, 0x84, 0x79, 0x4e, 1471e1051a39Sopenharmony_ci 0x38, 0x34, 0x50, 0xd5, 0x89, 0x1d, 0xc1, 0x8b, 1472e1051a39Sopenharmony_ci 0x65, 0x15, 0x7b, 0xdc, 0xfc, 0xda, 0xc5, 0x15, 1473e1051a39Sopenharmony_ci 0x18, 0x90, 0x28, 0x67 1474e1051a39Sopenharmony_ci}; 1475e1051a39Sopenharmony_cistatic const unsigned char dsa_g[] = { 1476e1051a39Sopenharmony_ci 0x68, 0x19, 0x27, 0x88, 0x69, 0xc7, 0xfd, 0x3d, 1477e1051a39Sopenharmony_ci 0x2d, 0x7b, 0x77, 0xf7, 0x7e, 0x81, 0x50, 0xd9, 1478e1051a39Sopenharmony_ci 0xad, 0x43, 0x3b, 0xea, 0x3b, 0xa8, 0x5e, 0xfc, 1479e1051a39Sopenharmony_ci 0x80, 0x41, 0x5a, 0xa3, 0x54, 0x5f, 0x78, 0xf7, 1480e1051a39Sopenharmony_ci 0x22, 0x96, 0xf0, 0x6c, 0xb1, 0x9c, 0xed, 0xa0, 1481e1051a39Sopenharmony_ci 0x6c, 0x94, 0xb0, 0x55, 0x1c, 0xfe, 0x6e, 0x6f, 1482e1051a39Sopenharmony_ci 0x86, 0x3e, 0x31, 0xd1, 0xde, 0x6e, 0xed, 0x7d, 1483e1051a39Sopenharmony_ci 0xab, 0x8b, 0x0c, 0x9d, 0xf2, 0x31, 0xe0, 0x84, 1484e1051a39Sopenharmony_ci 0x34, 0xd1, 0x18, 0x4f, 0x91, 0xd0, 0x33, 0x69, 1485e1051a39Sopenharmony_ci 0x6b, 0xb3, 0x82, 0xf8, 0x45, 0x5e, 0x98, 0x88, 1486e1051a39Sopenharmony_ci 0xf5, 0xd3, 0x1d, 0x47, 0x84, 0xec, 0x40, 0x12, 1487e1051a39Sopenharmony_ci 0x02, 0x46, 0xf4, 0xbe, 0xa6, 0x17, 0x94, 0xbb, 1488e1051a39Sopenharmony_ci 0xa5, 0x86, 0x6f, 0x09, 0x74, 0x64, 0x63, 0xbd, 1489e1051a39Sopenharmony_ci 0xf8, 0xe9, 0xe1, 0x08, 0xcd, 0x95, 0x29, 0xc3, 1490e1051a39Sopenharmony_ci 0xd0, 0xf6, 0xdf, 0x80, 0x31, 0x6e, 0x2e, 0x70, 1491e1051a39Sopenharmony_ci 0xaa, 0xeb, 0x1b, 0x26, 0xcd, 0xb8, 0xad, 0x97, 1492e1051a39Sopenharmony_ci 0xbc, 0x3d, 0x28, 0x7e, 0x0b, 0x8d, 0x61, 0x6c, 1493e1051a39Sopenharmony_ci 0x42, 0xe6, 0x5b, 0x87, 0xdb, 0x20, 0xde, 0xb7, 1494e1051a39Sopenharmony_ci 0x00, 0x5b, 0xc4, 0x16, 0x74, 0x7a, 0x64, 0x70, 1495e1051a39Sopenharmony_ci 0x14, 0x7a, 0x68, 0xa7, 0x82, 0x03, 0x88, 0xeb, 1496e1051a39Sopenharmony_ci 0xf4, 0x4d, 0x52, 0xe0, 0x62, 0x8a, 0xf9, 0xcf, 1497e1051a39Sopenharmony_ci 0x1b, 0x71, 0x66, 0xd0, 0x34, 0x65, 0xf3, 0x5a, 1498e1051a39Sopenharmony_ci 0xcc, 0x31, 0xb6, 0x11, 0x0c, 0x43, 0xda, 0xbc, 1499e1051a39Sopenharmony_ci 0x7c, 0x5d, 0x59, 0x1e, 0x67, 0x1e, 0xaf, 0x7c, 1500e1051a39Sopenharmony_ci 0x25, 0x2c, 0x1c, 0x14, 0x53, 0x36, 0xa1, 0xa4, 1501e1051a39Sopenharmony_ci 0xdd, 0xf1, 0x32, 0x44, 0xd5, 0x5e, 0x83, 0x56, 1502e1051a39Sopenharmony_ci 0x80, 0xca, 0xb2, 0x53, 0x3b, 0x82, 0xdf, 0x2e, 1503e1051a39Sopenharmony_ci 0xfe, 0x55, 0xec, 0x18, 0xc1, 0xe6, 0xcd, 0x00, 1504e1051a39Sopenharmony_ci 0x7b, 0xb0, 0x89, 0x75, 0x8b, 0xb1, 0x7c, 0x2c, 1505e1051a39Sopenharmony_ci 0xbe, 0x14, 0x44, 0x1b, 0xd0, 0x93, 0xae, 0x66, 1506e1051a39Sopenharmony_ci 0xe5, 0x97, 0x6d, 0x53, 0x73, 0x3f, 0x4f, 0xa3, 1507e1051a39Sopenharmony_ci 0x26, 0x97, 0x01, 0xd3, 0x1d, 0x23, 0xd4, 0x67 1508e1051a39Sopenharmony_ci}; 1509e1051a39Sopenharmony_cistatic const unsigned char dsa_pub[] = { 1510e1051a39Sopenharmony_ci 0xa0, 0x12, 0xb3, 0xb1, 0x70, 0xb3, 0x07, 0x22, 1511e1051a39Sopenharmony_ci 0x79, 0x57, 0xb7, 0xca, 0x20, 0x61, 0xa8, 0x16, 1512e1051a39Sopenharmony_ci 0xac, 0x7a, 0x2b, 0x3d, 0x9a, 0xe9, 0x95, 0xa5, 1513e1051a39Sopenharmony_ci 0x11, 0x9c, 0x38, 0x5b, 0x60, 0x3b, 0xf6, 0xf6, 1514e1051a39Sopenharmony_ci 0xc5, 0xde, 0x4d, 0xc5, 0xec, 0xb5, 0xdf, 0xa4, 1515e1051a39Sopenharmony_ci 0xa4, 0x1c, 0x68, 0x66, 0x2e, 0xb2, 0x5b, 0x63, 1516e1051a39Sopenharmony_ci 0x8b, 0x7e, 0x26, 0x20, 0xba, 0x89, 0x8d, 0x07, 1517e1051a39Sopenharmony_ci 0xda, 0x6c, 0x49, 0x91, 0xe7, 0x6c, 0xc0, 0xec, 1518e1051a39Sopenharmony_ci 0xd1, 0xad, 0x34, 0x21, 0x07, 0x70, 0x67, 0xe4, 1519e1051a39Sopenharmony_ci 0x7c, 0x18, 0xf5, 0x8a, 0x92, 0xa7, 0x2a, 0xd4, 1520e1051a39Sopenharmony_ci 0x31, 0x99, 0xec, 0xb7, 0xbd, 0x84, 0xe7, 0xd3, 1521e1051a39Sopenharmony_ci 0xaf, 0xb9, 0x01, 0x9f, 0x0e, 0x9d, 0xd0, 0xfb, 1522e1051a39Sopenharmony_ci 0xaa, 0x48, 0x73, 0x00, 0xb1, 0x30, 0x81, 0xe3, 1523e1051a39Sopenharmony_ci 0x3c, 0x90, 0x28, 0x76, 0x43, 0x6f, 0x7b, 0x03, 1524e1051a39Sopenharmony_ci 0xc3, 0x45, 0x52, 0x84, 0x81, 0xd3, 0x62, 0x81, 1525e1051a39Sopenharmony_ci 0x5e, 0x24, 0xfe, 0x59, 0xda, 0xc5, 0xac, 0x34, 1526e1051a39Sopenharmony_ci 0x66, 0x0d, 0x4c, 0x8a, 0x76, 0xcb, 0x99, 0xa7, 1527e1051a39Sopenharmony_ci 0xc7, 0xde, 0x93, 0xeb, 0x95, 0x6c, 0xd6, 0xbc, 1528e1051a39Sopenharmony_ci 0x88, 0xe5, 0x8d, 0x90, 0x10, 0x34, 0x94, 0x4a, 1529e1051a39Sopenharmony_ci 0x09, 0x4b, 0x01, 0x80, 0x3a, 0x43, 0xc6, 0x72, 1530e1051a39Sopenharmony_ci 0xb9, 0x68, 0x8c, 0x0e, 0x01, 0xd8, 0xf4, 0xfc, 1531e1051a39Sopenharmony_ci 0x91, 0xc6, 0x2a, 0x3f, 0x88, 0x02, 0x1f, 0x7b, 1532e1051a39Sopenharmony_ci 0xd6, 0xa6, 0x51, 0xb1, 0xa8, 0x8f, 0x43, 0xaa, 1533e1051a39Sopenharmony_ci 0x4e, 0xf2, 0x76, 0x53, 0xd1, 0x2b, 0xf8, 0xb7, 1534e1051a39Sopenharmony_ci 0x09, 0x9f, 0xdf, 0x6b, 0x46, 0x10, 0x82, 0xf8, 1535e1051a39Sopenharmony_ci 0xe9, 0x39, 0x10, 0x7b, 0xfd, 0x2f, 0x72, 0x10, 1536e1051a39Sopenharmony_ci 0x08, 0x7d, 0x32, 0x6c, 0x37, 0x52, 0x00, 0xf1, 1537e1051a39Sopenharmony_ci 0xf5, 0x1e, 0x7e, 0x74, 0xa3, 0x41, 0x31, 0x90, 1538e1051a39Sopenharmony_ci 0x1b, 0xcd, 0x08, 0x63, 0x52, 0x1f, 0xf8, 0xd6, 1539e1051a39Sopenharmony_ci 0x76, 0xc4, 0x85, 0x81, 0x86, 0x87, 0x36, 0xc5, 1540e1051a39Sopenharmony_ci 0xe5, 0x1b, 0x16, 0xa4, 0xe3, 0x92, 0x15, 0xea, 1541e1051a39Sopenharmony_ci 0x0b, 0x17, 0xc4, 0x73, 0x59, 0x74, 0xc5, 0x16 1542e1051a39Sopenharmony_ci}; 1543e1051a39Sopenharmony_cistatic const unsigned char dsa_priv[] = { 1544e1051a39Sopenharmony_ci 0x6c, 0xca, 0xee, 0xf6, 0xd7, 0x3b, 0x4e, 0x80, 1545e1051a39Sopenharmony_ci 0xf1, 0x1c, 0x17, 0xb8, 0xe9, 0x62, 0x7c, 0x03, 1546e1051a39Sopenharmony_ci 0x66, 0x35, 0xba, 0xc3, 0x94, 0x23, 0x50, 0x5e, 1547e1051a39Sopenharmony_ci 0x40, 0x7e, 0x5c, 0xb7 1548e1051a39Sopenharmony_ci}; 1549e1051a39Sopenharmony_ci 1550e1051a39Sopenharmony_cistatic const ST_KAT_PARAM dsa_key[] = { 1551e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_P, dsa_p), 1552e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_Q, dsa_q), 1553e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_FFC_G, dsa_g), 1554e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PUB_KEY, dsa_pub), 1555e1051a39Sopenharmony_ci ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_PRIV_KEY, dsa_priv), 1556e1051a39Sopenharmony_ci ST_KAT_PARAM_END() 1557e1051a39Sopenharmony_ci}; 1558e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_DSA */ 1559e1051a39Sopenharmony_ci 1560e1051a39Sopenharmony_cistatic const ST_KAT_SIGN st_kat_sign_tests[] = { 1561e1051a39Sopenharmony_ci { 1562e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_SIGN_RSA, 1563e1051a39Sopenharmony_ci "RSA", 1564e1051a39Sopenharmony_ci "SHA-256", 1565e1051a39Sopenharmony_ci rsa_crt_key, 1566e1051a39Sopenharmony_ci ITM(rsa_expected_sig) 1567e1051a39Sopenharmony_ci }, 1568e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_EC 1569e1051a39Sopenharmony_ci { 1570e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_SIGN_ECDSA, 1571e1051a39Sopenharmony_ci "EC", 1572e1051a39Sopenharmony_ci "SHA-256", 1573e1051a39Sopenharmony_ci ecdsa_prime_key, 1574e1051a39Sopenharmony_ci /* 1575e1051a39Sopenharmony_ci * The ECDSA signature changes each time due to it using a random k. 1576e1051a39Sopenharmony_ci * So there is no expected KAT for this case. 1577e1051a39Sopenharmony_ci */ 1578e1051a39Sopenharmony_ci }, 1579e1051a39Sopenharmony_ci# ifndef OPENSSL_NO_EC2M 1580e1051a39Sopenharmony_ci { 1581e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_SIGN_ECDSA, 1582e1051a39Sopenharmony_ci "EC", 1583e1051a39Sopenharmony_ci "SHA-256", 1584e1051a39Sopenharmony_ci ecdsa_bin_key, 1585e1051a39Sopenharmony_ci /* 1586e1051a39Sopenharmony_ci * The ECDSA signature changes each time due to it using a random k. 1587e1051a39Sopenharmony_ci * So there is no expected KAT for this case. 1588e1051a39Sopenharmony_ci */ 1589e1051a39Sopenharmony_ci }, 1590e1051a39Sopenharmony_ci# endif 1591e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_EC */ 1592e1051a39Sopenharmony_ci#ifndef OPENSSL_NO_DSA 1593e1051a39Sopenharmony_ci { 1594e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_SIGN_DSA, 1595e1051a39Sopenharmony_ci "DSA", 1596e1051a39Sopenharmony_ci "SHA-256", 1597e1051a39Sopenharmony_ci dsa_key, 1598e1051a39Sopenharmony_ci /* 1599e1051a39Sopenharmony_ci * The DSA signature changes each time due to it using a random k. 1600e1051a39Sopenharmony_ci * So there is no expected KAT for this case. 1601e1051a39Sopenharmony_ci */ 1602e1051a39Sopenharmony_ci }, 1603e1051a39Sopenharmony_ci#endif /* OPENSSL_NO_DSA */ 1604e1051a39Sopenharmony_ci}; 1605e1051a39Sopenharmony_ci 1606e1051a39Sopenharmony_cistatic const ST_KAT_ASYM_CIPHER st_kat_asym_cipher_tests[] = { 1607e1051a39Sopenharmony_ci { 1608e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_ASYM_RSA_ENC, 1609e1051a39Sopenharmony_ci "RSA", 1610e1051a39Sopenharmony_ci 1, 1611e1051a39Sopenharmony_ci rsa_pub_key, 1612e1051a39Sopenharmony_ci rsa_enc_params, 1613e1051a39Sopenharmony_ci ITM(rsa_asym_plaintext_encrypt), 1614e1051a39Sopenharmony_ci ITM(rsa_asym_expected_encrypt), 1615e1051a39Sopenharmony_ci }, 1616e1051a39Sopenharmony_ci { 1617e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_ASYM_RSA_DEC, 1618e1051a39Sopenharmony_ci "RSA", 1619e1051a39Sopenharmony_ci 0, 1620e1051a39Sopenharmony_ci rsa_priv_key, 1621e1051a39Sopenharmony_ci rsa_enc_params, 1622e1051a39Sopenharmony_ci ITM(rsa_asym_expected_encrypt), 1623e1051a39Sopenharmony_ci ITM(rsa_asym_plaintext_encrypt), 1624e1051a39Sopenharmony_ci }, 1625e1051a39Sopenharmony_ci { 1626e1051a39Sopenharmony_ci OSSL_SELF_TEST_DESC_ASYM_RSA_DEC, 1627e1051a39Sopenharmony_ci "RSA", 1628e1051a39Sopenharmony_ci 0, 1629e1051a39Sopenharmony_ci rsa_crt_key, 1630e1051a39Sopenharmony_ci rsa_enc_params, 1631e1051a39Sopenharmony_ci ITM(rsa_asym_expected_encrypt), 1632e1051a39Sopenharmony_ci ITM(rsa_asym_plaintext_encrypt), 1633e1051a39Sopenharmony_ci }, 1634e1051a39Sopenharmony_ci}; 1635