2 * RNG implementation using standard kernel RNG.
4 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
13 #include <crypto/internal/rng.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/random.h>
19 static int krng_get_random(struct crypto_rng
*tfm
, u8
*rdata
, unsigned int dlen
)
21 get_random_bytes(rdata
, dlen
);
25 static int krng_reset(struct crypto_rng
*tfm
, u8
*seed
, unsigned int slen
)
30 static struct crypto_alg krng_alg
= {
32 .cra_driver_name
= "krng",
34 .cra_flags
= CRYPTO_ALG_TYPE_RNG
,
36 .cra_type
= &crypto_rng_type
,
37 .cra_module
= THIS_MODULE
,
38 .cra_list
= LIST_HEAD_INIT(krng_alg
.cra_list
),
41 .rng_make_random
= krng_get_random
,
42 .rng_reset
= krng_reset
,
49 /* Module initalization */
50 static int __init
krng_mod_init(void)
52 return crypto_register_alg(&krng_alg
);
55 static void __exit
krng_mod_fini(void)
57 crypto_unregister_alg(&krng_alg
);
61 module_init(krng_mod_init
);
62 module_exit(krng_mod_fini
);
64 MODULE_LICENSE("GPL");
65 MODULE_DESCRIPTION("Kernel Random Number Generator");
66 MODULE_ALIAS("stdrng");