Home
last modified time | relevance | path

Searched refs:initialized (Results 1 – 23 of 23) sorted by relevance

/mbedtls-latest/programs/fuzz/
Dfuzz_dtlsclient.c16 static int initialized = 0; variable
44 if (initialized == 0) { in LLVMFuzzerTestOneInput()
54 initialized = 1; in LLVMFuzzerTestOneInput()
Dfuzz_client.c14 static int initialized = 0; variable
48 if (initialized == 0) { in LLVMFuzzerTestOneInput()
63 initialized = 1; in LLVMFuzzerTestOneInput()
Dfuzz_dtlsserver.c21 static int initialized = 0; variable
71 if (initialized == 0) { in LLVMFuzzerTestOneInput()
90 initialized = 1; in LLVMFuzzerTestOneInput()
Dfuzz_server.c16 static int initialized = 0; variable
80 if (initialized == 0) { in LLVMFuzzerTestOneInput()
104 initialized = 1; in LLVMFuzzerTestOneInput()
/mbedtls-latest/library/
Dpsa_crypto.c120 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 …]
Dpsa_crypto_slot_management.c197 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/
Dudp_proxy.c355 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/
Dtest_suite_mps.function37 * - 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.
Dtest_suite_net.function27 * \param ctx An initialized, but unopened socket context.
Dtest_suite_aes.function7 * be initialized, and are left freed.
Dhost_test.function329 /* The non-varying fields are initialized on first use. */
Dtest_suite_bignum_mod.function216 /* Check when m is not initialized */
Dtest_suite_ecp.function1121 /* Freshly initialized key */
1417 // Test initialized point
Dtest_suite_pk.function249 * \param pk The PK object to fill. It must have been initialized
Dtest_suite_psa_crypto.function2926 /* 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/
Dmd-cipher-dispatch.md194 * 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.
Dstrategy.md148 available and the driver subsystem has been initialized, regardless of whether
Dpsa-legacy-bridges.md306 * `pk` must be initialized, but not set up.
/mbedtls-latest/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md115 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/
Dinvasive-testing.md71 …is a global variable of function pointer type. This global variable is initialized to the system f…
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md424 * `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/
Dpsa-transition.md82 All PSA operation objects must be zero-initialized (or equivalently, initialized with the provided …
/mbedtls-latest/
DChangeLog403 * 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).