Symbol: drbg_state
crypto/drbg.c
1016
static inline void drbg_dealloc_state(struct drbg_state *drbg)
crypto/drbg.c
1042
static inline int drbg_alloc_state(struct drbg_state *drbg)
crypto/drbg.c
1142
static int drbg_generate(struct drbg_state *drbg,
crypto/drbg.c
1277
static int drbg_generate_long(struct drbg_state *drbg,
crypto/drbg.c
1298
static int drbg_prepare_hrng(struct drbg_state *drbg)
crypto/drbg.c
1334
static int drbg_instantiate(struct drbg_state *drbg, struct drbg_string *pers,
crypto/drbg.c
1399
static int drbg_uninstantiate(struct drbg_state *drbg)
crypto/drbg.c
1422
struct drbg_state *drbg = crypto_rng_ctx(tfm);
crypto/drbg.c
1438
static int drbg_init_hash_kernel(struct drbg_state *drbg)
crypto/drbg.c
1463
static int drbg_fini_hash_kernel(struct drbg_state *drbg)
crypto/drbg.c
1474
static void drbg_kcapi_hmacsetkey(struct drbg_state *drbg,
crypto/drbg.c
1482
static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval,
crypto/drbg.c
1496
static int drbg_fini_sym_kernel(struct drbg_state *drbg)
crypto/drbg.c
1517
static int drbg_init_sym_kernel(struct drbg_state *drbg)
crypto/drbg.c
1572
static int drbg_kcapi_sym_ctr(struct drbg_state *drbg,
crypto/drbg.c
1662
struct drbg_state *drbg = crypto_tfm_ctx(tfm);
crypto/drbg.c
1687
struct drbg_state *drbg = crypto_rng_ctx(tfm);
crypto/drbg.c
1706
struct drbg_state *drbg = crypto_rng_ctx(tfm);
crypto/drbg.c
1742
struct drbg_state *drbg = NULL;
crypto/drbg.c
1764
drbg = kzalloc_obj(struct drbg_state);
crypto/drbg.c
1837
alg->base.cra_ctxsize = sizeof(struct drbg_state);
crypto/drbg.c
186
static int drbg_uninstantiate(struct drbg_state *drbg);
crypto/drbg.c
232
static bool drbg_fips_continuous_test(struct drbg_state *drbg,
crypto/drbg.c
276
static int drbg_init_sym_kernel(struct drbg_state *drbg);
crypto/drbg.c
277
static int drbg_fini_sym_kernel(struct drbg_state *drbg);
crypto/drbg.c
278
static int drbg_kcapi_sym_ctr(struct drbg_state *drbg,
crypto/drbg.c
283
static int drbg_ctr_df(struct drbg_state *drbg,
crypto/drbg.c
306
static int drbg_ctr_update(struct drbg_state *drbg, struct list_head *seed,
crypto/drbg.c
369
static int drbg_ctr_generate(struct drbg_state *drbg,
crypto/drbg.c
409
static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval,
crypto/drbg.c
411
static void drbg_kcapi_hmacsetkey(struct drbg_state *drbg,
crypto/drbg.c
413
static int drbg_init_hash_kernel(struct drbg_state *drbg);
crypto/drbg.c
414
static int drbg_fini_hash_kernel(struct drbg_state *drbg);
crypto/drbg.c
427
static int drbg_hmac_update(struct drbg_state *drbg, struct list_head *seed,
crypto/drbg.c
479
static int drbg_hmac_generate(struct drbg_state *drbg,
crypto/drbg.c
592
static int drbg_hash_df(struct drbg_state *drbg,
crypto/drbg.c
631
static int drbg_hash_update(struct drbg_state *drbg, struct list_head *seed,
crypto/drbg.c
674
static int drbg_hash_process_addtl(struct drbg_state *drbg,
crypto/drbg.c
706
static int drbg_hash_hashgen(struct drbg_state *drbg,
crypto/drbg.c
747
static int drbg_hash_generate(struct drbg_state *drbg,
crypto/drbg.c
809
static inline int __drbg_seed(struct drbg_state *drbg, struct list_head *seed,
crypto/drbg.c
846
static inline void drbg_get_random_bytes(struct drbg_state *drbg,
crypto/drbg.c
856
static int drbg_seed_from_random(struct drbg_state *drbg)
crypto/drbg.c
879
static bool drbg_nopr_reseed_interval_elapsed(struct drbg_state *drbg)
crypto/drbg.c
910
static int drbg_seed(struct drbg_state *drbg, struct drbg_string *pers,
include/crypto/drbg.h
124
static inline __u8 drbg_statelen(struct drbg_state *drbg)
include/crypto/drbg.h
131
static inline __u8 drbg_blocklen(struct drbg_state *drbg)
include/crypto/drbg.h
138
static inline __u8 drbg_keylen(struct drbg_state *drbg)
include/crypto/drbg.h
145
static inline size_t drbg_max_request_bytes(struct drbg_state *drbg)
include/crypto/drbg.h
151
static inline size_t drbg_max_addtl(struct drbg_state *drbg)
include/crypto/drbg.h
166
static inline size_t drbg_max_requests(struct drbg_state *drbg)
include/crypto/drbg.h
58
struct drbg_state;
include/crypto/drbg.h
71
int (*update)(struct drbg_state *drbg, struct list_head *seed,
include/crypto/drbg.h
73
int (*generate)(struct drbg_state *drbg,
include/crypto/drbg.h
76
int (*crypto_init)(struct drbg_state *drbg);
include/crypto/drbg.h
77
int (*crypto_fini)(struct drbg_state *drbg);