Lines Matching refs:seed
306 static int drbg_ctr_update(struct drbg_state *drbg, struct list_head *seed, in drbg_ctr_update() argument
335 if (seed) { in drbg_ctr_update()
336 ret = drbg_ctr_df(drbg, df_data, drbg_statelen(drbg), seed); in drbg_ctr_update()
427 static int drbg_hmac_update(struct drbg_state *drbg, struct list_head *seed, in drbg_hmac_update() argument
448 if (seed) in drbg_hmac_update()
449 list_splice_tail(seed, &seedlist); in drbg_hmac_update()
471 if (!seed) in drbg_hmac_update()
631 static int drbg_hash_update(struct drbg_state *drbg, struct list_head *seed, in drbg_hash_update() argument
641 if (!seed) in drbg_hash_update()
652 list_splice_tail(seed, &datalist); in drbg_hash_update()
809 static inline int __drbg_seed(struct drbg_state *drbg, struct list_head *seed, in __drbg_seed() argument
812 int ret = drbg->d_ops->update(drbg, seed, reseed); in __drbg_seed()
1704 const u8 *seed, unsigned int slen) in drbg_kcapi_seed() argument
1716 drbg_string_fill(&string, seed, slen); in drbg_kcapi_seed()
1842 alg->seed = drbg_kcapi_seed; in drbg_fill_array()