Searched refs:mbedtls_entropy_context (Results 1 – 25 of 42) sorted by relevance
12
/mbedtls-3.5.0/include/mbedtls/ |
D | entropy.h | 119 typedef struct mbedtls_entropy_context { struct 137 mbedtls_entropy_context; typedef 152 void mbedtls_entropy_init(mbedtls_entropy_context *ctx); 159 void mbedtls_entropy_free(mbedtls_entropy_context *ctx); 178 int mbedtls_entropy_add_source(mbedtls_entropy_context *ctx, 190 int mbedtls_entropy_gather(mbedtls_entropy_context *ctx); 215 int mbedtls_entropy_update_manual(mbedtls_entropy_context *ctx, 227 int mbedtls_entropy_update_nv_seed(mbedtls_entropy_context *ctx); 241 int mbedtls_entropy_write_seed_file(mbedtls_entropy_context *ctx, const char *path); 255 int mbedtls_entropy_update_seed_file(mbedtls_entropy_context *ctx, const char *path);
|
/mbedtls-3.5.0/library/ |
D | entropy.c | 42 void mbedtls_entropy_init(mbedtls_entropy_context *ctx) in mbedtls_entropy_init() 81 void mbedtls_entropy_free(mbedtls_entropy_context *ctx) in mbedtls_entropy_free() 105 int mbedtls_entropy_add_source(mbedtls_entropy_context *ctx, in mbedtls_entropy_add_source() 143 static int entropy_update(mbedtls_entropy_context *ctx, unsigned char source_id, in entropy_update() 204 int mbedtls_entropy_update_manual(mbedtls_entropy_context *ctx, in mbedtls_entropy_update_manual() 229 static int entropy_gather_internal(mbedtls_entropy_context *ctx) in entropy_gather_internal() 280 int mbedtls_entropy_gather(mbedtls_entropy_context *ctx) in mbedtls_entropy_gather() 305 mbedtls_entropy_context *ctx = (mbedtls_entropy_context *) data; in mbedtls_entropy_func() 435 int mbedtls_entropy_update_nv_seed(mbedtls_entropy_context *ctx) in mbedtls_entropy_update_nv_seed() 458 int mbedtls_entropy_write_seed_file(mbedtls_entropy_context *ctx, const char *path) in mbedtls_entropy_write_seed_file() [all …]
|
D | psa_crypto_random_impl.h | 120 void (* entropy_init)(mbedtls_entropy_context *ctx); 121 void (* entropy_free)(mbedtls_entropy_context *ctx); 122 mbedtls_entropy_context entropy; 183 mbedtls_entropy_context *entropy, in mbedtls_psa_drbg_seed()
|
D | psa_crypto_invasive.h | 72 void (* entropy_init)(mbedtls_entropy_context *ctx), 73 void (* entropy_free)(mbedtls_entropy_context *ctx));
|
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_entropy.function | 57 static void entropy_clear_sources(mbedtls_entropy_context *ctx) 145 mbedtls_entropy_context ctx; 168 mbedtls_entropy_context ctx; 183 mbedtls_entropy_context ctx; 198 mbedtls_entropy_context ctx; 214 mbedtls_entropy_context ctx; 241 mbedtls_entropy_context ctx; 276 mbedtls_entropy_context ctx; 308 mbedtls_entropy_context ctx; 356 mbedtls_entropy_context ctx; [all …]
|
D | test_suite_random.function | 24 mbedtls_entropy_context entropy; 63 mbedtls_entropy_context entropy;
|
/mbedtls-3.5.0/programs/random/ |
D | gen_entropy.c | 44 mbedtls_entropy_context entropy; in main()
|
D | gen_random_ctr_drbg.c | 48 mbedtls_entropy_context entropy; in main()
|
/mbedtls-3.5.0/programs/pkey/ |
D | pk_encrypt.c | 56 mbedtls_entropy_context entropy; in main()
|
D | pk_decrypt.c | 57 mbedtls_entropy_context entropy; in main()
|
D | pk_sign.c | 53 mbedtls_entropy_context entropy; in main()
|
D | rsa_sign_pss.c | 54 mbedtls_entropy_context entropy; in main()
|
D | rsa_encrypt.c | 54 mbedtls_entropy_context entropy; in main()
|
D | dh_genprime.c | 62 mbedtls_entropy_context entropy; in main()
|
D | ecdh_curve25519.c | 49 mbedtls_entropy_context entropy; in main()
|
D | rsa_genkey.c | 57 mbedtls_entropy_context entropy; in main()
|
D | rsa_decrypt.c | 57 mbedtls_entropy_context entropy; in main()
|
D | ecdsa.c | 94 mbedtls_entropy_context entropy; in main()
|
/mbedtls-3.5.0/programs/ssl/ |
D | ssl_test_lib.h | 149 mbedtls_entropy_context entropy;
|
D | mini_client.c | 163 mbedtls_entropy_context entropy; in main()
|
/mbedtls-3.5.0/programs/fuzz/ |
D | fuzz_dtlsclient.c | 41 mbedtls_entropy_context entropy; in LLVMFuzzerTestOneInput()
|
D | fuzz_privkey.c | 24 mbedtls_entropy_context entropy; in LLVMFuzzerTestOneInput()
|
D | fuzz_client.c | 45 mbedtls_entropy_context entropy; in LLVMFuzzerTestOneInput()
|
D | fuzz_dtlsserver.c | 46 mbedtls_entropy_context entropy; in LLVMFuzzerTestOneInput()
|
D | fuzz_server.c | 45 mbedtls_entropy_context entropy; in LLVMFuzzerTestOneInput()
|
12