/mbedtls-latest/programs/fuzz/ |
D | fuzz_dtlsclient.c | 16 static int initialized = 0; variable 44 if (initialized == 0) { in LLVMFuzzerTestOneInput() 54 initialized = 1; in LLVMFuzzerTestOneInput()
|
D | fuzz_client.c | 14 static int initialized = 0; variable 48 if (initialized == 0) { in LLVMFuzzerTestOneInput() 63 initialized = 1; in LLVMFuzzerTestOneInput()
|
D | fuzz_dtlsserver.c | 21 static int initialized = 0; variable 71 if (initialized == 0) { in LLVMFuzzerTestOneInput() 90 initialized = 1; in LLVMFuzzerTestOneInput()
|
D | fuzz_server.c | 16 static int initialized = 0; variable 80 if (initialized == 0) { in LLVMFuzzerTestOneInput() 104 initialized = 1; in LLVMFuzzerTestOneInput()
|
/mbedtls-latest/library/ |
D | psa_crypto.c | 120 uint8_t initialized; member 129 uint8_t initialized; in psa_get_initialized() local 135 initialized = global_data.rng_state == RNG_SEEDED; in psa_get_initialized() 145 initialized = in psa_get_initialized() 146 (initialized && (global_data.initialized == PSA_CRYPTO_SUBSYSTEM_ALL_INITIALISED)); in psa_get_initialized() 152 return initialized; in psa_get_initialized() 157 uint8_t initialized; in psa_get_drivers_initialized() local 163 initialized = (global_data.initialized & PSA_CRYPTO_SUBSYSTEM_DRIVER_WRAPPERS_INITIALIZED) != 0; in psa_get_drivers_initialized() 169 return initialized; in psa_get_drivers_initialized() 8148 if (global_data.initialized & PSA_CRYPTO_SUBSYSTEM_TRANSACTION_INITIALIZED) { [all …]
|
D | psa_crypto_slot_management.c | 197 uint8_t initialized; in psa_get_key_slots_initialized() local 203 initialized = global_data.key_slots_initialized; in psa_get_key_slots_initialized() 209 return initialized; in psa_get_key_slots_initialized()
|
/mbedtls-latest/programs/test/ |
D | udp_proxy.c | 355 static int initialized = 0; in elapsed_time() local 358 if (initialized == 0) { in elapsed_time() 360 initialized = 1; in elapsed_time()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_mps.function | 37 * - with_acc: 0 if the reader should be initialized without accumulator. 38 * 1 if the reader should be initialized with accumulator. 84 * - with_acc: 0 if the reader should be initialized without accumulator. 85 * 1 if the reader should be initialized with accumulator. 141 * - with_acc: 0 if the reader should be initialized without accumulator. 142 * 1 if the reader should be initialized with accumulator.
|
D | test_suite_net.function | 27 * \param ctx An initialized, but unopened socket context.
|
D | test_suite_aes.function | 7 * be initialized, and are left freed.
|
D | host_test.function | 329 /* The non-varying fields are initialized on first use. */
|
D | test_suite_bignum_mod.function | 216 /* Check when m is not initialized */
|
D | test_suite_ecp.function | 1121 /* Freshly initialized key */ 1417 // Test initialized point
|
D | test_suite_pk.function | 249 * \param pk The PK object to fill. It must have been initialized
|
D | test_suite_psa_crypto.function | 2926 /* A freshly-initialized hash operation should not be usable. */ 3446 /* A freshly-initialized MAC operation should not be usable. */ 3871 /* A freshly-initialized cipher operation should not be usable. */
|
/mbedtls-latest/docs/architecture/psa-migration/ |
D | md-cipher-dispatch.md | 194 * There is a PSA driver which has not been initialized (this happens in `psa_crypto_init()`). 195 * For ciphers, the keystore is not initialized yet, and Mbed TLS uses a custom implementation of PS… 240 …abled for this hash, or because there is an accelerator driver which has not been initialized yet). 254 …-SHA-256. It must work at all times, regardless of the state of PSA (e.g. drivers not initialized). 267 …tor driver is working. For hashes, it's enough to assume the driver is initialized; we've [conside… 497 As a starting point, return 1 if PSA crypto's driver subsystem has been initialized. 610 …abled via PSA. As a starting point, return 1 if PSA crypto's driver subsystem has been initialized.
|
D | strategy.md | 148 available and the driver subsystem has been initialized, regardless of whether
|
D | psa-legacy-bridges.md | 306 * `pk` must be initialized, but not set up.
|
/mbedtls-latest/docs/architecture/psa-thread-safety/ |
D | psa-thread-safety.md | 115 The PSA subsystem is initialized via a call to [`psa_crypto_init`](https://arm-software.github.io/p… 119 Once initialized, threads can use any PSA function if there is no overlap between their calls. All …
|
/mbedtls-latest/docs/architecture/testing/ |
D | invasive-testing.md | 71 …is a global variable of function pointer type. This global variable is initialized to the system f…
|
/mbedtls-latest/docs/proposed/ |
D | psa-driver-interface.md | 424 * `operation` is a zero-initialized operation object. 541 … address may change between calls. Before the first call, `*memory` is initialized to all-bits-zer… 680 * `operation` is a zero-initialized operation object. 960 …on context. On the first call to `"add_entropy"`, this object has been initialized by a call to th…
|
/mbedtls-latest/docs/ |
D | psa-transition.md | 82 All PSA operation objects must be zero-initialized (or equivalently, initialized with the provided …
|
/mbedtls-latest/ |
D | ChangeLog | 403 * Avoid segmentation fault caused by releasing not initialized 1131 * Fix mbedtls_ctr_drbg_free() on an initialized but unseeded context. When 2801 * Variables containing error codes are now initialized to an error code 4784 initialized but not set (found by pravic).
|