Lines Matching defs:seed
40 * @seed: Seed or reseed the random number generator. With the
43 * random number generator requires a seed for setting
44 * up a new state, the seed must be provided by the
46 * size of the seed is defined with @seedsize .
50 * @seedsize: The seed size required for a random number generator
52 * random number generators does not require a seed
55 * the seed size is set to zero.
62 int (*seed)(struct crypto_rng *tfm, const u8 *seed, unsigned int slen);
218 * @seed: seed input data
219 * @slen: length of the seed input data
223 * is initialized with the caller provided seed or automatically, depending
225 * caller-provided seed, the SP800-90A DRBGs perform an automatic seeding).
226 * The seed is provided as a parameter to this function call. The provided seed
227 * should have the length of the seed size defined for the random number
232 int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed,
236 * crypto_rng_seedsize() - obtain seed size of RNG
239 * The function returns the seed size for the random number generator
245 * Return: seed size for the random number generator