Searched refs:addtl (Results 1 – 3 of 3) sorted by relevance
/linux-4.4.14/include/crypto/ |
D | drbg.h | 97 struct list_head *addtl); 199 struct drbg_string *addtl) in crypto_drbg_get_bytes_addtl() argument 201 return crypto_rng_generate(drng, addtl->buf, addtl->len, in crypto_drbg_get_bytes_addtl() 224 struct drbg_string *addtl, in crypto_drbg_get_bytes_addtl_test() argument 229 return crypto_rng_generate(drng, addtl->buf, addtl->len, in crypto_drbg_get_bytes_addtl_test()
|
/linux-4.4.14/crypto/ |
D | drbg.c | 580 struct list_head *addtl) in drbg_ctr_generate() argument 587 if (addtl && !list_empty(addtl)) { in drbg_ctr_generate() 588 ret = drbg_ctr_update(drbg, addtl, 2); in drbg_ctr_generate() 712 struct list_head *addtl) in drbg_hmac_generate() argument 720 if (addtl && !list_empty(addtl)) { in drbg_hmac_generate() 721 ret = drbg_hmac_update(drbg, addtl, 1); in drbg_hmac_generate() 745 if (addtl && !list_empty(addtl)) in drbg_hmac_generate() 746 ret = drbg_hmac_update(drbg, addtl, 1); in drbg_hmac_generate() 909 struct list_head *addtl) in drbg_hash_process_addtl() argument 917 if (!addtl || list_empty(addtl)) in drbg_hash_process_addtl() [all …]
|
D | testmgr.c | 1762 struct drbg_string addtl, pers, testentropy; in drbg_cavs_test() local 1785 drbg_string_fill(&addtl, test->addtla, test->addtllen); in drbg_cavs_test() 1789 buf, test->expectedlen, &addtl, &test_data); in drbg_cavs_test() 1792 buf, test->expectedlen, &addtl); in drbg_cavs_test() 1800 drbg_string_fill(&addtl, test->addtlb, test->addtllen); in drbg_cavs_test() 1804 buf, test->expectedlen, &addtl, &test_data); in drbg_cavs_test() 1807 buf, test->expectedlen, &addtl); in drbg_cavs_test()
|