Lines Matching refs:addtl

85  * string drbg_string addtl;
87 * drbg_string_fill(&addtl, addtl_string, strlen(addtl_string));
91 * err = crypto_drbg_get_bytes_addtl(drng, &data, DATALEN, &addtl);
524 * 2 => first invocation from drbg_ctr_update when addtl is present. In
529 * was called with addtl, the df_data memory already contains the
530 * DFed addtl information and we do not need to call DF again.
597 struct list_head *addtl)
603 if (addtl && !list_empty(addtl)) {
604 ret = drbg_ctr_update(drbg, addtl, 2);
710 struct list_head *addtl)
718 if (addtl && !list_empty(addtl)) {
719 ret = drbg_hmac_update(drbg, addtl, 1);
741 if (addtl && !list_empty(addtl))
742 ret = drbg_hmac_update(drbg, addtl, 1);
905 struct list_head *addtl)
913 if (!addtl || list_empty(addtl))
921 list_splice_tail(addtl, &datalist);
979 struct list_head *addtl)
992 ret = drbg_hash_process_addtl(drbg, addtl);
1232 * concatenation of entropy with personalization str / addtl input)
1376 * @addtl Additional input that is mixed into state, may be NULL -- note
1385 struct drbg_string *addtl)
1398 if (addtl && NULL == addtl->buf && 0 < addtl->len) {
1414 if (addtl && addtl->len > (drbg_max_addtl(drbg))) {
1416 addtl->len);
1435 len = drbg_seed(drbg, addtl, true);
1439 addtl = NULL;
1448 if (addtl && 0 < addtl->len)
1449 list_add_tail(&addtl->list, &addtllist);
1519 struct drbg_string *addtl)
1529 err = drbg_generate(drbg, buf + len, chunk, addtl);
1953 struct drbg_string *addtl = NULL;
1959 addtl = &string;
1962 return drbg_generate_long(drbg, dst, dlen, addtl);
2012 struct drbg_string addtl;
2045 drbg_string_fill(&addtl, buf, max_addtllen + 1);
2047 len = drbg_generate(drbg, buf, OUTBUFLEN, &addtl);
2054 ret = drbg_seed(drbg, &addtl, false);