Home
last modified time | relevance | path

Searched refs:psa_crypto_init (Results 1 – 25 of 72) sorted by relevance

123

/mbedtls-latest/tests/suites/
Dtest_suite_psa_crypto_init.function146 PSA_ASSERT(psa_crypto_init());
169 * psa_crypto_init() */
208 status = psa_crypto_init();
215 status = psa_crypto_init();
232 PSA_ASSERT(psa_crypto_init());
307 status = psa_crypto_init();
326 status = psa_crypto_init();
347 TEST_EQUAL(psa_crypto_init(), expected_init_status);
392 TEST_EQUAL(psa_crypto_init(), expected_init_status);
420 TEST_EQUAL(psa_crypto_init(), expected_init_status);
Dtest_suite_random.function122 PSA_ASSERT(psa_crypto_init());
128 PSA_ASSERT(psa_crypto_init());
148 PSA_ASSERT(psa_crypto_init());
153 PSA_ASSERT(psa_crypto_init());
180 PSA_ASSERT(psa_crypto_init());
205 PSA_ASSERT(psa_crypto_init());
Dtest_suite_psa_crypto_persistent_key.function130 PSA_ASSERT(psa_crypto_init());
161 PSA_ASSERT(psa_crypto_init());
172 PSA_ASSERT(psa_crypto_init());
184 PSA_ASSERT(psa_crypto_init());
210 PSA_ASSERT(psa_crypto_init());
228 PSA_ASSERT(psa_crypto_init());
270 PSA_ASSERT(psa_crypto_init());
284 PSA_ASSERT(psa_crypto_init());
Dtest_suite_psa_crypto_hash.function21 PSA_ASSERT(psa_crypto_init());
52 PSA_ASSERT(psa_crypto_init());
90 PSA_ASSERT(psa_crypto_init());
116 PSA_ASSERT(psa_crypto_init());
Dtest_suite_psa_crypto_entropy.function80 PSA_ASSERT(psa_crypto_init());
120 PSA_ASSERT(psa_crypto_init());
193 PSA_ASSERT(psa_crypto_init());
231 status = psa_crypto_init();
239 status = psa_crypto_init();
Dtest_suite_psa_crypto_driver_wrappers.function531 PSA_ASSERT(psa_crypto_init());
601 PSA_ASSERT(psa_crypto_init());
659 PSA_ASSERT(psa_crypto_init());
730 PSA_ASSERT(psa_crypto_init());
800 PSA_ASSERT(psa_crypto_init());
864 PSA_ASSERT(psa_crypto_init());
908 PSA_ASSERT(psa_crypto_init());
984 PSA_ASSERT(psa_crypto_init());
1064 PSA_ASSERT(psa_crypto_init());
1174 PSA_ASSERT(psa_crypto_init());
[all …]
Dtest_suite_psa_crypto_slot_management.function93 PSA_ASSERT(psa_crypto_init());
147 PSA_ASSERT(psa_crypto_init());
245 PSA_ASSERT(psa_crypto_init());
389 PSA_ASSERT(psa_crypto_init());
453 PSA_ASSERT(psa_crypto_init());
477 PSA_ASSERT(psa_crypto_init());
537 PSA_ASSERT(psa_crypto_init());
573 PSA_ASSERT(psa_crypto_init());
661 PSA_ASSERT(psa_crypto_init());
752 PSA_ASSERT(psa_crypto_init());
[all …]
Dtest_suite_psa_crypto_se_driver_hal_mocks.function304 TEST_EQUAL(psa_crypto_init(), expected_psa_status);
346 PSA_ASSERT(psa_crypto_init());
413 PSA_ASSERT(psa_crypto_init());
463 PSA_ASSERT(psa_crypto_init());
529 PSA_ASSERT(psa_crypto_init());
586 PSA_ASSERT(psa_crypto_init());
646 PSA_ASSERT(psa_crypto_init());
Dtest_suite_psa_crypto.function370 PSA_ASSERT(psa_crypto_init());
1546 PSA_ASSERT(psa_crypto_init());
1595 PSA_ASSERT(psa_crypto_init());
1662 PSA_ASSERT(psa_crypto_init());
1720 PSA_ASSERT(psa_crypto_init());
1772 PSA_ASSERT(psa_crypto_init());
1883 PSA_ASSERT(psa_crypto_init());
1948 PSA_ASSERT(psa_crypto_init());
2012 PSA_ASSERT(psa_crypto_init());
2064 PSA_ASSERT(psa_crypto_init());
[all …]
Dtest_suite_psa_crypto_se_driver_hal.function819 PSA_ASSERT(psa_crypto_init());
844 PSA_ASSERT(psa_crypto_init());
868 PSA_ASSERT(psa_crypto_init());
904 PSA_ASSERT(psa_crypto_init());
936 PSA_ASSERT(psa_crypto_init());
1036 PSA_ASSERT(psa_crypto_init());
1062 PSA_ASSERT(psa_crypto_init());
1125 PSA_ASSERT(psa_crypto_init());
1152 PSA_ASSERT(psa_crypto_init());
1200 PSA_ASSERT(psa_crypto_init());
[all …]
Dtest_suite_psa_crypto_not_supported.function21 PSA_ASSERT(psa_crypto_init());
41 PSA_ASSERT(psa_crypto_init());
Dtest_suite_psa_crypto_generate_key.function26 PSA_ASSERT(psa_crypto_init());
/mbedtls-latest/docs/
Duse-psa-crypto.md15 `psa_crypto_init()` before calling any function from the SSL/TLS, X.509 or PK
30 `psa_crypto_init()` before you call any other `psa_xxx()` function. Other
32 PSA Crypto but you're not required to call `psa_crypto_init()` before calling
37 exceptions). When it is enabled, you need to call `psa_crypto_init()` before
59 `psa_crypto_init()` has been called before their use, and for backwards
62 `MBEDTLS_USE_PSA_CRYPTO` is that the user promises to call `psa_crypto_init()`
65 as TLS 1.3, can be introduced with a requirement to call `psa_crypto_init()`.
/mbedtls-latest/tests/include/spe/
Dcrypto_spe.h24 #define psa_crypto_init \ macro
25 PSA_FUNCTION_NAME(psa_crypto_init)
/mbedtls-latest/docs/architecture/testing/
Ddriver-interface-test-strategy.md77 * Test that keys in a secure element survive `mbedtls_psa_crypto_free(); psa_crypto_init()`.
78 * Test that the driver's persistent data survives `mbedtls_psa_crypto_free(); psa_crypto_init()`.
85 …2</sub>, ..., after M<sub>n</sub>), call `mbedtls_psa_crypto_free(); psa_crypto_init()` at that po…
88 * The recovery during `psa_crypto_init` can itself be interrupted. Test those interruptions too.
/mbedtls-latest/programs/fuzz/
Dfuzz_x509crl.c14 psa_status_t status = psa_crypto_init(); in LLVMFuzzerTestOneInput()
Dfuzz_x509crt.c14 psa_status_t status = psa_crypto_init(); in LLVMFuzzerTestOneInput()
Dfuzz_x509csr.c14 psa_status_t status = psa_crypto_init(); in LLVMFuzzerTestOneInput()
/mbedtls-latest/programs/x509/
Dcrl_app.c62 psa_status_t status = psa_crypto_init(); in main()
Dreq_app.c62 psa_status_t status = psa_crypto_init(); in main()
/mbedtls-latest/programs/pkey/
Dpk_verify.c47 psa_status_t status = psa_crypto_init(); in main()
Drsa_verify_pss.c50 psa_status_t status = psa_crypto_init(); in main()
/mbedtls-latest/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md88 … X.509 and TLS. When this option is enabled, applications must call `psa_crypto_init()` before cal…
194 * There is a PSA driver which has not been initialized (this happens in `psa_crypto_init()`).
195 …rst, and the application takes care that it happens before it calls `psa_crypto_init()`). A possib…
197 …he client has not yet activated the connection to the server (this happens in `psa_crypto_init()`).
229 * Possibly additional runtime state (for example, we might check whether `psa_crypto_init` has been…
255psa_crypto_init()` has been called. In some limited cases, such as `test_suite_psa_crypto_not_supp…
258 …mes from an accelerator driver), then SHA-256 only needs to work if `psa_crypto_init()` has been c…
264 …works if the connection to the server has been established, meaning `psa_crypto_init` has been cal…
297 * Mixed-domain code can call PSA code if it knows that `psa_crypto_init()` has been called, without…
567 …_can_do_hash()` (or a more general function `psa_can_do`) alongside `psa_crypto_init()`. Note that…
/mbedtls-latest/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md5 …nagement.html) and [`psa_crypto_init`](https://arm-software.github.io/psa-api/crypto/1.1/api/libra…
43 …n concurrently calling any set of PSA key management functions once `psa_crypto_init` has been cal…
115psa_crypto_init`](https://arm-software.github.io/psa-api/crypto/1.1/api/library/library.html#c.psa…
139 …tex` defined in `include/mbedtls/threading.h`, which is used to make `psa_crypto_init` thread-safe.
265 …st that our key slot state system is enforced. We also test the thread-safety of `psa_crypto_init`.
/mbedtls-latest/programs/psa/
Dpsa_hash.c69 status = psa_crypto_init(); in main()

123