Home
last modified time | relevance | path

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

/mbedtls-latest/tests/include/spe/
Dcrypto_spe.h66 #define psa_export_public_key \ macro
67 PSA_FUNCTION_NAME(psa_export_public_key)
/mbedtls-latest/tests/src/
Dpsa_exercise_key.c653 status = psa_export_public_key(key, public_key, public_key_length, in mbedtls_test_psa_key_agreement_with_self()
710 status = psa_export_public_key(key, in mbedtls_test_psa_raw_key_agreement_with_self()
1078 status = psa_export_public_key(key, exported, in exercise_export_public_key()
1096 status = psa_export_public_key(key, exported, in exercise_export_public_key()
1306 PSA_ASSERT(psa_export_public_key(psa_key, in mbedtls_test_key_consistency_psa_pk()
1320 PSA_ASSERT(psa_export_public_key(psa_key, in mbedtls_test_key_consistency_psa_pk()
Dpsa_crypto_stubs.c37 psa_status_t psa_export_public_key(mbedtls_svc_key_id_t key, in psa_export_public_key() function
Dpsa_test_wrappers.c591 …psa_status_t status = (psa_export_public_key)(arg0_key, arg1_data, arg2_data_size, arg3_data_lengt… in mbedtls_test_wrap_psa_export_public_key()
/mbedtls-latest/library/
Dpk_ecc.c96 status = psa_export_public_key(pk->priv_id, pk->pub_raw, sizeof(pk->pub_raw), in mbedtls_pk_ecc_set_pubkey_from_prv()
123 status = psa_export_public_key(key_id, pub, sizeof(pub), &pub_len); in mbedtls_pk_ecc_set_pubkey_from_prv()
Dpkwrite.c101 if (psa_export_public_key(pk->priv_id, buf, sizeof(buf), &len) != PSA_SUCCESS) { in pk_write_ec_pubkey()
129 if (psa_export_public_key(pk->priv_id, buf, sizeof(buf), &len) != PSA_SUCCESS) { in pk_write_ec_pubkey()
371 if (psa_export_public_key(pk->priv_id, start, buffer_size, in pk_write_opaque_pubkey()
Dpk_wrap.c623 status = psa_export_public_key(pk->priv_id, key, sizeof(key), &key_len); in ecdsa_opaque_verify_wrap()
940 status = psa_export_public_key(key_id, prv_key_buf, sizeof(prv_key_buf), in eckey_check_pair_psa()
992 status = psa_export_public_key(key_id, prv_key_buf, sizeof(prv_key_buf), in eckey_check_pair_psa()
1058 status = psa_export_public_key(prv->priv_id, exp_pub_key, sizeof(exp_pub_key), in ecdsa_opaque_check_pair_wrap()
Dpk.c818 status = psa_export_public_key(pk->priv_id, in import_public_into_psa()
883 status = psa_export_public_key(key_id, exp_key, sizeof(exp_key), &exp_key_len); in copy_from_psa()
Dssl_tls13_generic.c1596 status = psa_export_public_key(handshake->xxdh_psa_privkey, in mbedtls_ssl_tls13_generate_and_write_xxdh_key_exchange()
Dssl_tls12_client.c2801 status = psa_export_public_key(handshake->xxdh_psa_privkey, in ssl_write_client_key_exchange()
2973 status = psa_export_public_key(handshake->xxdh_psa_privkey, in ssl_write_client_key_exchange()
Dssl_tls12_server.c3062 status = psa_export_public_key(handshake->xxdh_psa_privkey, in ssl_prepare_server_key_exchange()
Dpsa_crypto.c1628 psa_status_t psa_export_public_key(mbedtls_svc_key_id_t key, in psa_export_public_key() function
/mbedtls-latest/tests/suites/
Dtest_suite_psa_crypto_se_driver_hal.function401 status = psa_export_public_key(key, data, data_size, data_length);
690 SMOKE_ASSERT(psa_export_public_key(key,
750 if (psa_export_public_key(key, buffer, sizeof(buffer), &length) ==
1395 PSA_ASSERT(psa_export_public_key(id,
Dtest_suite_psa_crypto_op_fail.function378 PSA_ASSERT(psa_export_public_key(key_id,
Dtest_suite_psa_crypto_se_driver_hal_mocks.function540 TEST_ASSERT(psa_export_public_key(id, exported, sizeof(exported),
Dtest_suite_pk.function599 PSA_ASSERT(psa_export_public_key(priv_id, pub_key_buf, sizeof(pub_key_buf), &pub_key_len));
1920 TEST_EQUAL(psa_export_public_key(key_id, opaque_pub_key, sizeof(opaque_pub_key),
Dtest_suite_psa_crypto_driver_wrappers.function929 actual_status = psa_export_public_key(handle,
2219 actual_status = psa_export_public_key(key, output_buffer, expected_output->len, &output_size);
Dtest_suite_psa_crypto.function247 TEST_EQUAL(psa_export_public_key(key,
1251 PSA_ASSERT(psa_export_public_key(key,
1895 status = psa_export_public_key(key,
/mbedtls-latest/docs/
Dpsa-transition.md98 …ou need the public key corresponding to a key pair object, call [`psa_export_public_key`](https://…
196 …rt for the corresponding public key type, as well as support for `psa_export_public_key` on the pr…
780 …2a65b3c4522ce9b67ea5ea7720e17de); exporting the public key with [`psa_export_public_key`](https://…
784 …#group__import__export_1ga668e35be8d2852ad3feeef74ac6f75bf) and [`psa_export_public_key`](https://…
901 … key or to export the public key of a PSA key pair object, call [`psa_export_public_key`](https://…
1054 * Export both public keys with [`psa_export_public_key`](https://mbed-tls.readthedocs.io/projects/a…
1060 psa_export_public_key(key1, pub1, sizeof(pub1), &length1);
1061 psa_export_public_key(key2, pub2, sizeof(pub2), &length2);
1108 Call [`psa_export_public_key`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/grou…
1141 …attributes` and `our_key` (output) to generate a key pair, then [`psa_export_public_key`](https://…
[all …]
/mbedtls-latest/include/psa/
Dcrypto.h819 psa_status_t psa_export_public_key(mbedtls_svc_key_id_t key,
/mbedtls-latest/tests/include/test/
Dpsa_test_wrappers.h348 #define psa_export_public_key(arg0_key, arg1_data, arg2_data_size, arg3_data_length) \ macro
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md192 …terial, in the same format as defined for `psa_export_key()` and `psa_export_public_key()` in the …
881 …export_key) and [`psa_export_public_key()`](https://armmbed.github.io/mbed-crypto/html/api/keys/ma…
890 … function at any time to obtain the public key, which can be for `psa_export_public_key()` but als…
912 …_export_key) or [`psa_export_public_key()`](https://armmbed.github.io/mbed-crypto/html/api/keys/ma…
1101 …try point at any time to obtain the public key, which can be for `psa_export_public_key()` but als…
Dpsa-conditional-inclusion-c.md92 …ables `PSA_WANT_KEY_TYPE_xxx_PUBLIC_KEY`, as well as support for `psa_export_public_key` on the pr…