Searched refs:get_entropy (Results 1 – 7 of 7) sorted by relevance
/third_party/openssl/doc/man3/ |
D | RAND_DRBG_set_callbacks.pod | 18 RAND_DRBG_get_entropy_fn get_entropy, 61 The B<get_entropy>() callback is called by the B<drbg> when it requests fresh 81 free the buffer allocated previously by get_entropy(). 83 as returned by the get_entropy() callback. 88 The callbacks are analogous to get_entropy() and cleanup_entropy(), 109 Since the default implementation of the get_entropy callback does not have access 123 (using the B<get_entropy>() and B<cleanup_entropy>() callbacks) which it will
|
/third_party/openssl/crypto/rand/ |
D | drbg_lib.c | 204 drbg->get_entropy = rand_drbg_get_entropy; in rand_drbg_new() 214 drbg->get_entropy = rand_drbg_get_entropy; in rand_drbg_new() 330 if (drbg->get_entropy != NULL) in RAND_DRBG_instantiate() 331 entropylen = drbg->get_entropy(drbg, &entropy, min_entropy, in RAND_DRBG_instantiate() 430 if (drbg->get_entropy != NULL) in RAND_DRBG_reseed() 431 entropylen = drbg->get_entropy(drbg, &entropy, drbg->strength, in RAND_DRBG_reseed() 700 RAND_DRBG_get_entropy_fn get_entropy, in RAND_DRBG_set_callbacks() argument 707 drbg->get_entropy = get_entropy; in RAND_DRBG_set_callbacks()
|
D | rand_local.h | 284 RAND_DRBG_get_entropy_fn get_entropy; member
|
/third_party/openssl/test/ |
D | drbgtest.c | 503 RAND_DRBG_get_entropy_fn get_entropy; member 528 ret = ctx->get_entropy(drbg, pout, entropy, min_len, max_len, in get_entropy_hook() 541 ctx->get_entropy = drbg->get_entropy; in hook_drbg() 542 drbg->get_entropy = get_entropy_hook; in hook_drbg() 551 drbg->get_entropy = ctx->get_entropy; in unhook_drbg()
|
/third_party/openssl/include/openssl/ |
D | rand_drbg.h | 120 RAND_DRBG_get_entropy_fn get_entropy,
|
/third_party/mbedtls/docs/proposed/ |
D | psa-driver-interface.md | 383 A driver can declare an entropy source by providing a `"get_entropy"` entry point. This entry point… 396 …raphy system is running as an application in an operating system and `"get_entropy"` returns data … 404 …f the `PSA_DRIVER_GET_ENTROPY_BLOCK` flag is clear. The core may call `get_entropy` again later, g… 407 … `"get_entropy"` point, the core will call all of them (as well as the entry points from opaque dr… 412 …t time. If this flag is clear, the core is not expecting to call the `"get_entropy"` entry point a… 420 1. The core makes a first round of calls to `"get_entropy"` on every source with the `BLOCK` flag c… 538 …re [entropy sources](#entropy-collection-entry-point) (each having a `"get_entropy"` entry point) … 540 …get_entropy"` returns data with an estimated amount of entropy that is in general less than the bu… 542 …ntropy_size"` property for subsequent reseeding). The core calls the `"get_entropy"` points of the… 987 #### Flags for `"get_entropy"`
|
/third_party/openssl/crypto/err/ |
D | openssl.txt | 1014 RAND_F_GET_ENTROPY:106:get_entropy
|