Searched refs:addtl (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/include/crypto/ |
D | drbg.h | 98 struct list_head *addtl); 207 struct drbg_string *addtl) in crypto_drbg_get_bytes_addtl() argument 209 return crypto_rng_generate(drng, addtl->buf, addtl->len, in crypto_drbg_get_bytes_addtl() 232 struct drbg_string *addtl, in crypto_drbg_get_bytes_addtl_test() argument 237 return crypto_rng_generate(drng, addtl->buf, addtl->len, in crypto_drbg_get_bytes_addtl_test()
|
/Linux-v4.19/crypto/ |
D | drbg.c | 544 struct list_head *addtl) in drbg_ctr_generate() argument 550 if (addtl && !list_empty(addtl)) { in drbg_ctr_generate() 551 ret = drbg_ctr_update(drbg, addtl, 2); in drbg_ctr_generate() 657 struct list_head *addtl) in drbg_hmac_generate() argument 665 if (addtl && !list_empty(addtl)) { in drbg_hmac_generate() 666 ret = drbg_hmac_update(drbg, addtl, 1); in drbg_hmac_generate() 688 if (addtl && !list_empty(addtl)) in drbg_hmac_generate() 689 ret = drbg_hmac_update(drbg, addtl, 1); in drbg_hmac_generate() 852 struct list_head *addtl) in drbg_hash_process_addtl() argument 860 if (!addtl || list_empty(addtl)) in drbg_hash_process_addtl() [all …]
|
D | testmgr.c | 1962 struct drbg_string addtl, pers, testentropy; in drbg_cavs_test() local 1985 drbg_string_fill(&addtl, test->addtla, test->addtllen); in drbg_cavs_test() 1989 buf, test->expectedlen, &addtl, &test_data); in drbg_cavs_test() 1992 buf, test->expectedlen, &addtl); in drbg_cavs_test() 2000 drbg_string_fill(&addtl, test->addtlb, test->addtllen); in drbg_cavs_test() 2004 buf, test->expectedlen, &addtl, &test_data); in drbg_cavs_test() 2007 buf, test->expectedlen, &addtl); in drbg_cavs_test()
|