Symbol: rng_alg
crypto/drbg.c
575
static struct rng_alg drbg_alg = {
crypto/jitterentropy-kcapi.c
263
static struct rng_alg jent_alg = {
crypto/rng.c
184
int crypto_register_rng(struct rng_alg *alg)
crypto/rng.c
202
void crypto_unregister_rng(struct rng_alg *alg)
crypto/rng.c
208
int crypto_register_rngs(struct rng_alg *algs, int count)
crypto/rng.c
224
void crypto_unregister_rngs(struct rng_alg *algs, int count)
crypto/rng.c
60
struct rng_alg *ralg = container_of(alg, struct rng_alg, base);
crypto/rng.c
97
.algsize = offsetof(struct rng_alg, base),
drivers/crypto/allwinner/sun8i-ce/sun8i-ce-prng.c
59
struct rng_alg *alg = crypto_rng_alg(tfm);
drivers/crypto/allwinner/sun8i-ce/sun8i-ce.h
360
struct rng_alg rng;
drivers/crypto/allwinner/sun8i-ss/sun8i-ss-prng.c
61
struct rng_alg *alg = crypto_rng_alg(tfm);
drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h
277
struct rng_alg rng;
drivers/crypto/caam/caamprng.c
34
struct rng_alg rng;
drivers/crypto/qcom-rng.c
164
static struct rng_alg qcom_rng_alg = {
include/crypto/internal/rng.h
15
int crypto_register_rng(struct rng_alg *alg);
include/crypto/internal/rng.h
16
void crypto_unregister_rng(struct rng_alg *alg);
include/crypto/internal/rng.h
17
int crypto_register_rngs(struct rng_alg *algs, int count);
include/crypto/internal/rng.h
18
void crypto_unregister_rngs(struct rng_alg *algs, int count);
include/crypto/rng.h
118
static inline struct rng_alg *__crypto_rng_alg(struct crypto_alg *alg)
include/crypto/rng.h
120
return container_of(alg, struct rng_alg, base);
include/crypto/rng.h
129
static inline struct rng_alg *crypto_rng_alg(struct crypto_rng *tfm)