summaryrefslogtreecommitdiffstats
path: root/crypto/rng.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-04-20 01:39:04 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2015-04-20 22:19:58 -0400
commitff030b099a21a4753af575b4304249e88400e506 (patch)
treef54046623574ff38c4da038d3eff37837978aec6 /crypto/rng.c
parentd0e83059a6c9b04f00264a74b8f6439948de4613 (diff)
crypto: rng - Introduce crypto_rng_generate
This patch adds the new top-level function crypto_rng_generate which generates random numbers with additional input. It also extends the mid-level rng_gen_random function to take additional data as input. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/rng.c')
-rw-r--r--crypto/rng.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/crypto/rng.c b/crypto/rng.c
index 87fa2f4933b0..4514d3755f79 100644
--- a/crypto/rng.c
+++ b/crypto/rng.c
@@ -36,6 +36,12 @@ static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
36 return container_of(tfm, struct crypto_rng, base); 36 return container_of(tfm, struct crypto_rng, base);
37} 37}
38 38
39static int generate(struct crypto_rng *tfm, const u8 *src, unsigned int slen,
40 u8 *dst, unsigned int dlen)
41{
42 return crypto_rng_alg(tfm)->rng_make_random(tfm, dst, dlen);
43}
44
39static int rngapi_reset(struct crypto_rng *tfm, u8 *seed, unsigned int slen) 45static int rngapi_reset(struct crypto_rng *tfm, u8 *seed, unsigned int slen)
40{ 46{
41 u8 *buf = NULL; 47 u8 *buf = NULL;
@@ -59,9 +65,8 @@ static int rngapi_reset(struct crypto_rng *tfm, u8 *seed, unsigned int slen)
59static int crypto_rng_init_tfm(struct crypto_tfm *tfm) 65static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
60{ 66{
61 struct crypto_rng *rng = __crypto_rng_cast(tfm); 67 struct crypto_rng *rng = __crypto_rng_cast(tfm);
62 struct rng_alg *alg = &tfm->__crt_alg->cra_rng;
63 68
64 rng->generate = alg->rng_make_random; 69 rng->generate = generate;
65 rng->seed = rngapi_reset; 70 rng->seed = rngapi_reset;
66 71
67 return 0; 72 return 0;