/mbedtls-latest/tests/include/spe/ |
D | crypto_spe.h | 128 #define psa_generate_key \ macro 129 PSA_FUNCTION_NAME(psa_generate_key)
|
/mbedtls-latest/programs/psa/ |
D | crypto_examples.c | 173 status = psa_generate_key(&attributes, &key); in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() 221 status = psa_generate_key(&attributes, &key); in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() 268 status = psa_generate_key(&attributes, &key); in cipher_example_encrypt_decrypt_aes_ctr_multi()
|
D | key_ladder_demo.c | 197 PSA_CHECK(psa_generate_key(&attributes, &key)); in generate()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_entropy.function | 83 PSA_ASSERT(psa_generate_key(&attributes, &key)); 90 psa_generate_key(&attributes, &key));
|
D | test_suite_psa_crypto_not_supported.function | 44 TEST_EQUAL(psa_generate_key(&attributes, &key_id),
|
D | test_suite_psa_crypto_generate_key.function | 29 TEST_EQUAL(psa_generate_key(&attributes, &key_id),
|
D | test_suite_psa_crypto_se_driver_hal.function | 1206 TEST_EQUAL(psa_generate_key(&attributes, &returned_id), 1255 PSA_ASSERT(psa_generate_key(&attributes, &returned_id)); 1367 PSA_ASSERT(psa_generate_key(&drv_attributes, &returned_id));
|
D | test_suite_psa_crypto_se_driver_hal_mocks.function | 470 TEST_ASSERT(psa_generate_key(&attributes, &returned_id) == expected_result);
|
D | test_suite_pk.function | 347 * For other keys (ex: DH) psa_generate_key() is used instead. */ 359 return psa_generate_key(&attributes, key);
|
D | test_suite_psa_crypto.function | 1462 psa_status_t status = psa_generate_key(gkc->attributes, &key); 2071 PSA_ASSERT(psa_generate_key(&attributes, &key)); 10174 psa_status_t status = psa_generate_key(&attributes, &key); 10396 PSA_ASSERT(psa_generate_key(&attributes, &key));
|
D | test_suite_psa_crypto_driver_wrappers.function | 806 actual_status = psa_generate_key(&attributes, &key);
|
/mbedtls-latest/library/ |
D | ssl_cookie.c | 130 if ((status = psa_generate_key(&attributes, in mbedtls_ssl_cookie_setup()
|
D | ssl_tls13_generic.c | 1586 status = psa_generate_key(&key_attributes, in mbedtls_ssl_tls13_generate_and_write_xxdh_key_exchange()
|
D | ssl_tls12_client.c | 2787 status = psa_generate_key(&key_attributes, in ssl_write_client_key_exchange() 2959 status = psa_generate_key(&key_attributes, in ssl_write_client_key_exchange()
|
D | ssl_tls12_server.c | 3039 status = psa_generate_key(&key_attributes, in ssl_prepare_server_key_exchange()
|
D | psa_crypto.c | 8100 psa_status_t psa_generate_key(const psa_key_attributes_t *attributes, function
|
/mbedtls-latest/include/psa/ |
D | crypto.h | 4214 psa_status_t psa_generate_key(const psa_key_attributes_t *attributes,
|
/mbedtls-latest/docs/ |
D | psa-transition.md | 92 …0587ab204a8296462327b) if you have the key material available and [`psa_generate_key`](https://mbe… 192 …* `PSA_WANT_KEY_TYPE_xxx_KEY_PAIR_GENERATE` enables support for `psa_generate_key` to randomly gen… 354 …* If the key is randomly generated, use [`psa_generate_key`](https://mbed-tls.readthedocs.io/proje… 542 …* If the key is randomly generated, use [`psa_generate_key`](https://mbed-tls.readthedocs.io/proje… 636 The PSA API uses its internal random generator to generate keys (`psa_generate_key`), nonces for en… 674 …* If the key is randomly generated, use [`psa_generate_key`](https://mbed-tls.readthedocs.io/proje… 780 The easiest way to create a key pair object is by randomly generating it with [`psa_generate_key`](… 782 For RSA keys, `psa_generate_key` uses 65537 as the public exponent. You can use [`psa_generate_key_… 1100 …* Use [`psa_generate_key`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/g… 1141 3. Call [`psa_generate_key`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/… [all …]
|
/mbedtls-latest/tests/include/test/ |
D | psa_test_wrappers.h | 354 #define psa_generate_key(arg0_attributes, arg1_key) \ macro
|
/mbedtls-latest/tests/src/ |
D | psa_test_wrappers.c | 603 psa_status_t status = (psa_generate_key)(arg0_attributes, arg1_key); in mbedtls_test_wrap_psa_generate_key()
|
/mbedtls-latest/docs/architecture/ |
D | psa-crypto-implementation-structure.md | 60 … Implementations of key creation PSA APIs, namely psa_import_key(), psa_generate_key(), psa_key_de…
|
/mbedtls-latest/docs/proposed/ |
D | psa-conditional-inclusion-c.md | 88 * `PSA_WANT_KEY_TYPE_xxx_KEY_PAIR_GENERATE` enables support for `psa_generate_key` to randomly gene…
|
D | psa-driver-interface.md | 888 * `"generate_key"`: called by `psa_generate_key()`, only when generating a key pair (key such that … 1103 * `"generate_key"`: called by `psa_generate_key()`. 1110 * `"allocate_key"`: called by `psa_import_key()`, `psa_generate_key()`, `psa_key_derivation_output_… 1289 psa_generate_key(&attributes, &key);
|
/mbedtls-latest/ |
D | ChangeLog | 1573 * Fix the error returned by psa_generate_key() for a public key. Fixes #4551. 2337 * Fix psa_generate_key() returning an error when asked to generate
|