mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
980a880ee5
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/11010)
425 lines
14 KiB
PHP
425 lines
14 KiB
PHP
/*
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
typedef struct st_kat_st {
|
|
const char *desc;
|
|
const char *algorithm;
|
|
const unsigned char *pt;
|
|
size_t pt_len;
|
|
const unsigned char *expected;
|
|
size_t expected_len;
|
|
} ST_KAT;
|
|
|
|
typedef ST_KAT ST_KAT_DIGEST;
|
|
typedef struct st_kat_cipher_st {
|
|
ST_KAT base;
|
|
const unsigned char *key;
|
|
size_t key_len;
|
|
const unsigned char *iv;
|
|
size_t iv_len;
|
|
const unsigned char *aad;
|
|
size_t aad_len;
|
|
const unsigned char *tag;
|
|
size_t tag_len;
|
|
} ST_KAT_CIPHER;
|
|
|
|
typedef struct st_kat_nvp_st {
|
|
const char *name;
|
|
const char *value;
|
|
} ST_KAT_NVP;
|
|
|
|
typedef struct st_kat_kdf_st {
|
|
const char *desc;
|
|
const char *algorithm;
|
|
const ST_KAT_NVP *ctrls;
|
|
const unsigned char *expected;
|
|
size_t expected_len;
|
|
} ST_KAT_KDF;
|
|
|
|
typedef struct st_kat_drbg_st {
|
|
const char *desc;
|
|
const char *algorithm;
|
|
int nid;
|
|
const unsigned char *entropyin;
|
|
size_t entropyinlen;
|
|
const unsigned char *nonce;
|
|
size_t noncelen;
|
|
const unsigned char *persstr;
|
|
size_t persstrlen;
|
|
const unsigned char *entropyinpr1;
|
|
size_t entropyinpr1len;
|
|
const unsigned char *entropyinpr2;
|
|
size_t entropyinpr2len;
|
|
const unsigned char *entropyaddin1;
|
|
size_t entropyaddin1len;
|
|
const unsigned char *entropyaddin2;
|
|
size_t entropyaddin2len;
|
|
const unsigned char *expected;
|
|
size_t expectedlen;
|
|
} ST_KAT_DRBG;
|
|
|
|
/* Macros to build Self test data */
|
|
#define ITM(x) x, sizeof(x)
|
|
#define ITM_STR(x) x, sizeof(x) - 1
|
|
|
|
/*- DIGEST TEST DATA */
|
|
static const unsigned char sha1_pt[] = "abc";
|
|
static const unsigned char sha1_digest[] = {
|
|
0xA9, 0x99, 0x3E, 0x36, 0x47, 0x06, 0x81, 0x6A, 0xBA, 0x3E, 0x25, 0x71,
|
|
0x78, 0x50, 0xC2, 0x6C, 0x9C, 0xD0, 0xD8, 0x9D
|
|
};
|
|
|
|
static const unsigned char sha512_pt[] = "abc";
|
|
static const unsigned char sha512_digest[] = {
|
|
0xDD, 0xAF, 0x35, 0xA1, 0x93, 0x61, 0x7A, 0xBA, 0xCC, 0x41, 0x73, 0x49,
|
|
0xAE, 0x20, 0x41, 0x31, 0x12, 0xE6, 0xFA, 0x4E, 0x89, 0xA9, 0x7E, 0xA2,
|
|
0x0A, 0x9E, 0xEE, 0xE6, 0x4B, 0x55, 0xD3, 0x9A, 0x21, 0x92, 0x99, 0x2A,
|
|
0x27, 0x4F, 0xC1, 0xA8, 0x36, 0xBA, 0x3C, 0x23, 0xA3, 0xFE, 0xEB, 0xBD,
|
|
0x45, 0x4D, 0x44, 0x23, 0x64, 0x3C, 0xE8, 0x0E, 0x2A, 0x9A, 0xC9, 0x4F,
|
|
0xA5, 0x4C, 0xA4, 0x9F
|
|
};
|
|
static const unsigned char sha3_256_pt[] = { 0xe7, 0x37, 0x21, 0x05 };
|
|
static const unsigned char sha3_256_digest[] = {
|
|
0x3a, 0x42, 0xb6, 0x8a, 0xb0, 0x79, 0xf2, 0x8c, 0x4c, 0xa3, 0xc7, 0x52,
|
|
0x29, 0x6f, 0x27, 0x90, 0x06, 0xc4, 0xfe, 0x78, 0xb1, 0xeb, 0x79, 0xd9,
|
|
0x89, 0x77, 0x7f, 0x05, 0x1e, 0x40, 0x46, 0xae
|
|
};
|
|
|
|
static const ST_KAT_DIGEST st_kat_digest_tests[] =
|
|
{
|
|
{
|
|
OSSL_SELF_TEST_DESC_MD_SHA1,
|
|
"SHA1",
|
|
ITM_STR(sha1_pt),
|
|
ITM(sha1_digest),
|
|
},
|
|
{
|
|
OSSL_SELF_TEST_DESC_MD_SHA2,
|
|
"SHA512",
|
|
ITM_STR(sha512_pt),
|
|
ITM(sha512_digest),
|
|
},
|
|
{
|
|
OSSL_SELF_TEST_DESC_MD_SHA3,
|
|
"SHA3-256",
|
|
ITM(sha3_256_pt),
|
|
ITM(sha3_256_digest),
|
|
},
|
|
};
|
|
|
|
|
|
/*- CIPHER TEST DATA */
|
|
|
|
/* DES3 test data */
|
|
static const unsigned char des_ede3_cbc_pt[] = {
|
|
0x6B, 0xC1, 0xBE, 0xE2, 0x2E, 0x40, 0x9F, 0x96, 0xE9, 0x3D, 0x7E, 0x11,
|
|
0x73, 0x93, 0x17, 0x2A, 0xAE, 0x2D, 0x8A, 0x57, 0x1E, 0x03, 0xAC, 0x9C,
|
|
0x9E, 0xB7, 0x6F, 0xAC, 0x45, 0xAF, 0x8E, 0x51
|
|
};
|
|
|
|
static const unsigned char des_ede3_cbc_key[] = {
|
|
0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
|
|
0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0x01,
|
|
0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0x01, 0x23
|
|
};
|
|
static const unsigned char des_ede3_cbc_iv[] = {
|
|
0xF6, 0x9F, 0x24, 0x45, 0xDF, 0x4F, 0x9B, 0x17
|
|
};
|
|
static const unsigned char des_ede3_cbc_ct[] = {
|
|
0x20, 0x79, 0xC3, 0xD5, 0x3A, 0xA7, 0x63, 0xE1, 0x93, 0xB7, 0x9E, 0x25,
|
|
0x69, 0xAB, 0x52, 0x62, 0x51, 0x65, 0x70, 0x48, 0x1F, 0x25, 0xB5, 0x0F,
|
|
0x73, 0xC0, 0xBD, 0xA8, 0x5C, 0x8E, 0x0D, 0xA7
|
|
};
|
|
|
|
static const unsigned char aes_256_gcm_key[] = {
|
|
0x92,0xe1,0x1d,0xcd,0xaa,0x86,0x6f,0x5c,0xe7,0x90,0xfd,0x24,
|
|
0x50,0x1f,0x92,0x50,0x9a,0xac,0xf4,0xcb,0x8b,0x13,0x39,0xd5,
|
|
0x0c,0x9c,0x12,0x40,0x93,0x5d,0xd0,0x8b
|
|
};
|
|
static const unsigned char aes_256_gcm_iv[] = {
|
|
0xac,0x93,0xa1,0xa6,0x14,0x52,0x99,0xbd,0xe9,0x02,0xf2,0x1a
|
|
};
|
|
static const unsigned char aes_256_gcm_pt[] = {
|
|
0x2d,0x71,0xbc,0xfa,0x91,0x4e,0x4a,0xc0,0x45,0xb2,0xaa,0x60,
|
|
0x95,0x5f,0xad,0x24
|
|
};
|
|
static const unsigned char aes_256_gcm_aad[] = {
|
|
0x1e,0x08,0x89,0x01,0x6f,0x67,0x60,0x1c,0x8e,0xbe,0xa4,0x94,
|
|
0x3b,0xc2,0x3a,0xd6
|
|
};
|
|
static const unsigned char aes_256_gcm_ct[] = {
|
|
0x89,0x95,0xae,0x2e,0x6d,0xf3,0xdb,0xf9,0x6f,0xac,0x7b,0x71,
|
|
0x37,0xba,0xe6,0x7f
|
|
};
|
|
static const unsigned char aes_256_gcm_tag[] = {
|
|
0xec,0xa5,0xaa,0x77,0xd5,0x1d,0x4a,0x0a,0x14,0xd9,0xc5,0x1e,
|
|
0x1d,0xa4,0x74,0xab
|
|
};
|
|
|
|
static const ST_KAT_CIPHER st_kat_cipher_tests[] = {
|
|
#ifndef OPENSSL_NO_DES
|
|
{
|
|
{
|
|
OSSL_SELF_TEST_DESC_CIPHER_TDES,
|
|
"DES-EDE3-CBC",
|
|
ITM(des_ede3_cbc_pt),
|
|
ITM(des_ede3_cbc_ct)
|
|
},
|
|
ITM(des_ede3_cbc_key),
|
|
ITM(des_ede3_cbc_iv),
|
|
},
|
|
#endif
|
|
{
|
|
{
|
|
OSSL_SELF_TEST_DESC_CIPHER_AES_GCM,
|
|
"AES-256-GCM",
|
|
ITM(aes_256_gcm_pt),
|
|
ITM(aes_256_gcm_ct),
|
|
},
|
|
ITM(aes_256_gcm_key),
|
|
ITM(aes_256_gcm_iv),
|
|
ITM(aes_256_gcm_aad),
|
|
ITM(aes_256_gcm_tag)
|
|
}
|
|
};
|
|
|
|
/*- KDF TEST DATA */
|
|
|
|
static const ST_KAT_NVP hkdf_ctrl[] =
|
|
{
|
|
{ "digest", "SHA256" },
|
|
{ "key", "secret" },
|
|
{ "salt", "salt" },
|
|
{ "info", "label" },
|
|
{ NULL, NULL }
|
|
};
|
|
static const unsigned char hkdf_expected[] = {
|
|
0x2a, 0xc4, 0x36, 0x9f, 0x52, 0x59, 0x96, 0xf8, 0xde, 0x13
|
|
};
|
|
|
|
static const ST_KAT_KDF st_kat_kdf_tests[] =
|
|
{
|
|
{
|
|
OSSL_SELF_TEST_DESC_KDF_HKDF,
|
|
"HKDF",
|
|
hkdf_ctrl,
|
|
ITM(hkdf_expected)
|
|
}
|
|
};
|
|
|
|
/*-
|
|
* DRBG test vectors are a small subset of
|
|
* https://csrc.nist.rip/groups/STM/cavp/documents/drbg/drbgtestvectors.zip
|
|
* Using the folder drbgvectors_pr_true
|
|
* Generated for CAVS 14.3.
|
|
*/
|
|
|
|
/*
|
|
* Hash_DRBG.rsp
|
|
*
|
|
* [SHA-256]
|
|
* [PredictionResistance = True]
|
|
* [EntropyInputLen = 256]
|
|
* [NonceLen = 128]
|
|
* [PersonalizationStringLen = 256]
|
|
* [AdditionalInputLen = 256]
|
|
* [ReturnedBitsLen = 1024]
|
|
*
|
|
* COUNT = 14
|
|
*/
|
|
static const unsigned char drbg_hash_sha256_pr_entropyin[] = {
|
|
0x06, 0x6d, 0xc8, 0xce, 0x75, 0xb2, 0x89, 0x66, 0xa6, 0x85, 0x16, 0x3f,
|
|
0xe2, 0xa4, 0xd4, 0x27, 0xfb, 0xdb, 0x61, 0x66, 0x50, 0x61, 0x6b, 0xa2,
|
|
0x82, 0xfc, 0x33, 0x2b, 0x4e, 0x6f, 0x12, 0x20
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_nonce[] = {
|
|
0x55, 0x9f, 0x7c, 0x64, 0x89, 0x70, 0x83, 0xec, 0x2d, 0x73, 0x70, 0xd9,
|
|
0xf0, 0xe5, 0x07, 0x1f
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_persstr[] = {
|
|
0x88, 0x6f, 0x54, 0x9a, 0xad, 0x1a, 0xc6, 0x3d, 0x18, 0xcb, 0xcc, 0x66,
|
|
0x85, 0xda, 0xa2, 0xc2, 0xf7, 0x9e, 0xb0, 0x89, 0x4c, 0xb4, 0xae, 0xf1,
|
|
0xac, 0x54, 0x4f, 0xce, 0x57, 0xf1, 0x5e, 0x11
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_entropyinpr0[] = {
|
|
0xff, 0x80, 0xb7, 0xd2, 0x6a, 0x05, 0xbc, 0x8a, 0x7a, 0xbe, 0x53, 0x28,
|
|
0x6b, 0x0e, 0xeb, 0x73, 0x3b, 0x71, 0x5a, 0x20, 0x5b, 0xfa, 0x4f, 0xf6,
|
|
0x37, 0x03, 0xde, 0xad, 0xb6, 0xea, 0x0e, 0xf4
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_entropyinpr1[] = {
|
|
0xc7, 0x38, 0x32, 0x53, 0x46, 0x81, 0xed, 0xe3, 0x7e, 0x03, 0x84, 0x6d,
|
|
0x3c, 0x84, 0x17, 0x67, 0x29, 0x7d, 0x24, 0x6c, 0x68, 0x92, 0x41, 0xd2,
|
|
0xe7, 0x75, 0xbe, 0x7e, 0xc9, 0x96, 0x29, 0x3d
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_addin0[] = {
|
|
0xb7, 0x21, 0x5f, 0x14, 0xac, 0x7b, 0xaf, 0xd0, 0xa9, 0x17, 0x72, 0xba,
|
|
0x22, 0xf7, 0x19, 0xaf, 0xbd, 0x20, 0xb3, 0x11, 0x63, 0x6c, 0x2b, 0x1e,
|
|
0x83, 0xe4, 0xa8, 0x23, 0x35, 0x3f, 0xc6, 0xea
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_addin1[] = {
|
|
0xce, 0xd3, 0x1f, 0x7e, 0x0d, 0xae, 0x5b, 0xb5, 0xc0, 0x43, 0xe2, 0x46,
|
|
0xb2, 0x94, 0x73, 0xe2, 0xfd, 0x39, 0x51, 0x2e, 0xad, 0x45, 0x69, 0xee,
|
|
0xe3, 0xe3, 0x80, 0x33, 0x14, 0xab, 0xa7, 0xa3
|
|
};
|
|
static const unsigned char drbg_hash_sha256_pr_expected[] = {
|
|
0x60, 0xc2, 0x34, 0xcf, 0xaf, 0xb4, 0x68, 0x03, 0x3b, 0xf1, 0x95, 0xe5,
|
|
0x78, 0xce, 0x26, 0x6e, 0x14, 0x65, 0x32, 0x6a, 0x96, 0xa9, 0xe0, 0x3f,
|
|
0x8b, 0x89, 0x36, 0x70, 0xef, 0x62, 0x75, 0x4d, 0x5e, 0x80, 0xd5, 0x53,
|
|
0xa1, 0xf8, 0x49, 0x50, 0x20, 0x8b, 0x93, 0x43, 0x07, 0x9f, 0x2e, 0xf8,
|
|
0x56, 0xe9, 0xc5, 0x70, 0x61, 0x85, 0x97, 0xb5, 0xdc, 0x82, 0xa2, 0xda,
|
|
0xea, 0xa3, 0xfd, 0x9b, 0x2f, 0xd2, 0xa0, 0xd7, 0x1b, 0xc6, 0x29, 0x35,
|
|
0xcc, 0xb8, 0x3d, 0xa0, 0x67, 0x98, 0x05, 0xa0, 0xe3, 0x1e, 0xfe, 0xe4,
|
|
0xf0, 0xe5, 0x13, 0xb0, 0x83, 0x17, 0xfa, 0xca, 0x93, 0x5e, 0x38, 0x29,
|
|
0x48, 0xd2, 0x72, 0xdb, 0x76, 0x3e, 0x6d, 0xf3, 0x25, 0x10, 0xff, 0x1b,
|
|
0x99, 0xff, 0xf8, 0xc6, 0x0e, 0xb0, 0xdd, 0x29, 0x2e, 0xbc, 0xbb, 0xc8,
|
|
0x0a, 0x01, 0x6e, 0xd3, 0xb0, 0x0e, 0x4e, 0xab
|
|
};
|
|
|
|
/*
|
|
* CTR_DRBG.rsp
|
|
*
|
|
* [AES-128 use df]
|
|
* [PredictionResistance = True]
|
|
* [EntropyInputLen = 128]
|
|
* [NonceLen = 64]
|
|
* [PersonalizationStringLen = 128]
|
|
* [AdditionalInputLen = 128]
|
|
* [ReturnedBitsLen = 512]
|
|
*
|
|
* COUNT = 0
|
|
*/
|
|
static const unsigned char drbg_ctr_aes128_pr_df_entropyin[] = {
|
|
0x92, 0x89, 0x8f, 0x31, 0xfa, 0x1c, 0xff, 0x6d, 0x18, 0x2f, 0x26, 0x06,
|
|
0x43, 0xdf, 0xf8, 0x18
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_nonce[] = {
|
|
0xc2, 0xa4, 0xd9, 0x72, 0xc3, 0xb9, 0xb6, 0x97
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_persstr[] = {
|
|
0xea, 0x65, 0xee, 0x60, 0x26, 0x4e, 0x7e, 0xb6, 0x0e, 0x82, 0x68, 0xc4,
|
|
0x37, 0x3c, 0x5c, 0x0b
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_entropyinpr0[] = {
|
|
0x20, 0x72, 0x8a, 0x06, 0xf8, 0x6f, 0x8d, 0xd4, 0x41, 0xe2, 0x72, 0xb7,
|
|
0xc4, 0x2c, 0xe8, 0x10
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_entropyinpr1[] = {
|
|
0x3d, 0xb0, 0xf0, 0x94, 0xf3, 0x05, 0x50, 0x33, 0x17, 0x86, 0x3e, 0x22,
|
|
0x08, 0xf7, 0xa5, 0x01
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_addin0[] = {
|
|
0x1a, 0x40, 0xfa, 0xe3, 0xcc, 0x6c, 0x7c, 0xa0, 0xf8, 0xda, 0xba, 0x59,
|
|
0x23, 0x6d, 0xad, 0x1d
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_addin1[] = {
|
|
0x9f, 0x72, 0x76, 0x6c, 0xc7, 0x46, 0xe5, 0xed, 0x2e, 0x53, 0x20, 0x12,
|
|
0xbc, 0x59, 0x31, 0x8c
|
|
};
|
|
static const unsigned char drbg_ctr_aes128_pr_df_expected[] = {
|
|
0x5a, 0x35, 0x39, 0x87, 0x0f, 0x4d, 0x22, 0xa4, 0x09, 0x24, 0xee, 0x71,
|
|
0xc9, 0x6f, 0xac, 0x72, 0x0a, 0xd6, 0xf0, 0x88, 0x82, 0xd0, 0x83, 0x28,
|
|
0x73, 0xec, 0x3f, 0x93, 0xd8, 0xab, 0x45, 0x23, 0xf0, 0x7e, 0xac, 0x45,
|
|
0x14, 0x5e, 0x93, 0x9f, 0xb1, 0xd6, 0x76, 0x43, 0x3d, 0xb6, 0xe8, 0x08,
|
|
0x88, 0xf6, 0xda, 0x89, 0x08, 0x77, 0x42, 0xfe, 0x1a, 0xf4, 0x3f, 0xc4,
|
|
0x23, 0xc5, 0x1f, 0x68
|
|
};
|
|
|
|
/*
|
|
* HMAC_DRBG.rsp
|
|
*
|
|
* [SHA-1]
|
|
* [PredictionResistance = True]
|
|
* [EntropyInputLen = 128]
|
|
* [NonceLen = 64]
|
|
* [PersonalizationStringLen = 128]
|
|
* [AdditionalInputLen = 128]
|
|
* [ReturnedBitsLen = 640]
|
|
*
|
|
* COUNT = 0
|
|
*/
|
|
static const unsigned char drbg_hmac_sha1_pr_entropyin[] = {
|
|
0x68, 0x0f, 0xac, 0xe9, 0x0d, 0x7b, 0xca, 0x21, 0xd4, 0xa0, 0xed, 0xb7,
|
|
0x79, 0x9e, 0xe5, 0xd8
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_nonce[] = {
|
|
0xb7, 0xbe, 0x9e, 0xed, 0xdd, 0x0e, 0x3b, 0x4b
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_persstr[] = {
|
|
0xf5, 0x8c, 0x40, 0xae, 0x70, 0xf7, 0xa5, 0x56, 0x48, 0xa9, 0x31, 0xa0,
|
|
0xa9, 0x31, 0x3d, 0xd7
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_entropyinpr0[] = {
|
|
0x7c, 0xaf, 0xe2, 0x31, 0x63, 0x0a, 0xa9, 0x5a, 0x74, 0x2c, 0x4e, 0x5f,
|
|
0x5f, 0x22, 0xc6, 0xa4
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_entropyinpr1[] = {
|
|
0x1c, 0x0d, 0x77, 0x92, 0x89, 0x88, 0x27, 0x94, 0x8a, 0x58, 0x9f, 0x82,
|
|
0x2d, 0x1a, 0xf7, 0xa6
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_addin0[] = {
|
|
0xdc, 0x36, 0x63, 0xf0, 0x62, 0x78, 0x9c, 0xd1, 0x5c, 0xbb, 0x20, 0xc3,
|
|
0xc1, 0x8c, 0xd9, 0xd7
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_addin1[] = {
|
|
0xfe, 0x85, 0xb0, 0xab, 0x14, 0xc6, 0x96, 0xe6, 0x9c, 0x24, 0xe7, 0xb5,
|
|
0xa1, 0x37, 0x12, 0x0c
|
|
};
|
|
static const unsigned char drbg_hmac_sha1_pr_expected[] = {
|
|
0x68, 0x00, 0x4b, 0x3a, 0x28, 0xf7, 0xf0, 0x1c, 0xf9, 0xe9, 0xb5, 0x71,
|
|
0x20, 0x79, 0xef, 0x80, 0x87, 0x1b, 0x08, 0xb9, 0xa9, 0x1b, 0xcd, 0x2b,
|
|
0x9f, 0x09, 0x4d, 0xa4, 0x84, 0x80, 0xb3, 0x4c, 0xaf, 0xd5, 0x59, 0x6b,
|
|
0x0c, 0x0a, 0x48, 0xe1, 0x48, 0xda, 0xbc, 0x6f, 0x77, 0xb8, 0xff, 0xaf,
|
|
0x18, 0x70, 0x28, 0xe1, 0x04, 0x13, 0x7a, 0x4f, 0xeb, 0x1c, 0x72, 0xb0,
|
|
0xc4, 0x4f, 0xe8, 0xb1, 0xaf, 0xab, 0xa5, 0xbc, 0xfd, 0x86, 0x67, 0xf2,
|
|
0xf5, 0x5b, 0x46, 0x06, 0x63, 0x2e, 0x3c, 0xbc
|
|
};
|
|
|
|
static const ST_KAT_DRBG st_kat_drbg_tests[] =
|
|
{
|
|
{
|
|
OSSL_SELF_TEST_DESC_DRBG_HASH,
|
|
"SHA256",
|
|
NID_sha256,
|
|
ITM(drbg_hash_sha256_pr_entropyin),
|
|
ITM(drbg_hash_sha256_pr_nonce),
|
|
ITM(drbg_hash_sha256_pr_persstr),
|
|
ITM(drbg_hash_sha256_pr_entropyinpr0),
|
|
ITM(drbg_hash_sha256_pr_entropyinpr1),
|
|
ITM(drbg_hash_sha256_pr_addin0),
|
|
ITM(drbg_hash_sha256_pr_addin1),
|
|
ITM(drbg_hash_sha256_pr_expected)
|
|
},
|
|
{
|
|
OSSL_SELF_TEST_DESC_DRBG_CTR,
|
|
"AES-128",
|
|
NID_aes_128_ctr,
|
|
ITM(drbg_ctr_aes128_pr_df_entropyin),
|
|
ITM(drbg_ctr_aes128_pr_df_nonce),
|
|
ITM(drbg_ctr_aes128_pr_df_persstr),
|
|
ITM(drbg_ctr_aes128_pr_df_entropyinpr0),
|
|
ITM(drbg_ctr_aes128_pr_df_entropyinpr1),
|
|
ITM(drbg_ctr_aes128_pr_df_addin0),
|
|
ITM(drbg_ctr_aes128_pr_df_addin1),
|
|
ITM(drbg_ctr_aes128_pr_df_expected)
|
|
},
|
|
{
|
|
OSSL_SELF_TEST_DESC_DRBG_HMAC,
|
|
"SHA1",
|
|
NID_sha1,
|
|
ITM(drbg_hmac_sha1_pr_entropyin),
|
|
ITM(drbg_hmac_sha1_pr_nonce),
|
|
ITM(drbg_hmac_sha1_pr_persstr),
|
|
ITM(drbg_hmac_sha1_pr_entropyinpr0),
|
|
ITM(drbg_hmac_sha1_pr_entropyinpr1),
|
|
ITM(drbg_hmac_sha1_pr_addin0),
|
|
ITM(drbg_hmac_sha1_pr_addin1),
|
|
ITM(drbg_hmac_sha1_pr_expected)
|
|
}
|
|
};
|