Lines Matching full:seed
26 * @seed: Seed or reseed the random number generator. With the
29 * random number generator requires a seed for setting
30 * up a new state, the seed must be provided by the
32 * size of the seed is defined with @seedsize .
35 * @seedsize: The seed size required for a random number generator
37 * random number generators does not require a seed
40 * the seed size is set to zero.
47 int (*seed)(struct crypto_rng *tfm, const u8 *seed, unsigned int slen); member
169 * @seed: seed input data
170 * @slen: length of the seed input data
174 * is initialized with the caller provided seed or automatically, depending
176 * caller-provided seed, the SP800-90A DRBGs perform an automatic seeding).
177 * The seed is provided as a parameter to this function call. The provided seed
178 * should have the length of the seed size defined for the random number
183 int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed,
187 * crypto_rng_seedsize() - obtain seed size of RNG
190 * The function returns the seed size for the random number generator
196 * Return: seed size for the random number generator