Home
last modified time | relevance | path

Searched refs:psa_sign_hash (Results 1 – 20 of 20) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/include/spe/
Dcrypto_spe.h120 #define psa_sign_hash \ macro
121 PSA_FUNCTION_NAME(psa_sign_hash)
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_entropy.function123 PSA_ASSERT(psa_sign_hash(key, alg,
135 psa_sign_hash(key, alg,
Dtest_suite_psa_crypto_se_driver_hal.function469 status = psa_sign_hash(key, alg,
709 SMOKE_ASSERT(psa_sign_hash(key, PSA_ALG_ECDSA_ANY,
1397 psa_sign_hash(id, alg,
1404 PSA_ASSERT(psa_sign_hash(sw_key, alg,
Dtest_suite_psa_crypto_op_fail.function244 psa_sign_hash(key_id, alg,
Dtest_suite_psa_crypto_se_driver_hal_mocks.function598 TEST_ASSERT(psa_sign_hash(id, algorithm,
Dtest_suite_psa_crypto.function2561 status = psa_sign_hash(key, exercise_alg,
6841 PSA_ASSERT(psa_sign_hash(key, alg,
7017 actual_status = psa_sign_hash(key, alg,
7217 PSA_ASSERT(psa_sign_hash(key, alg,
Dtest_suite_pk.function2725 PSA_ASSERT(psa_sign_hash(priv_key_id, psa_alg_for_test, in_buf, in_buf_len,
Dtest_suite_psa_crypto_driver_wrappers.function543 actual_status = psa_sign_hash(key, alg,
/openthread-latest/third_party/mbedtls/repo/library/
Dpk_wrap.c210 status = psa_sign_hash(key_id, alg, hash, hash_len, in mbedtls_pk_psa_rsa_sign_ext()
712 status = psa_sign_hash(key_id, in ecdsa_sign_psa()
721 status = psa_sign_hash(key_id, in ecdsa_sign_psa()
1533 status = psa_sign_hash(pk->priv_id, alg, hash, hash_len, sig, sig_size, sig_len); in rsa_opaque_sign_wrap()
Dpk.c1364 status = psa_sign_hash(ctx->priv_id, sign_alg, in mbedtls_pk_sign_ext()
Dpsa_crypto.c3215 psa_status_t psa_sign_hash(mbedtls_svc_key_id_t key, in psa_sign_hash() function
/openthread-latest/third_party/mbedtls/repo/include/psa/
Dcrypto.h2991 psa_status_t psa_sign_hash(mbedtls_svc_key_id_t key,
/openthread-latest/third_party/mbedtls/repo/tests/include/test/
Dpsa_test_wrappers.h653 #define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signatu… macro
/openthread-latest/third_party/mbedtls/repo/tests/src/
Dpsa_exercise_key.c372 status = psa_sign_hash(key, alg, in exercise_signature_key()
Dpsa_test_wrappers.c1165 …psa_status_t status = (psa_sign_hash)(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signat… in mbedtls_test_wrap_psa_sign_hash()
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-conditional-inclusion-c.md237 … example, if there is no transparent implementation of RSA or ECDSA, `psa_sign_hash` and `psa_veri…
Dpsa-driver-interface.md181 …ular function in the PSA Cryptography API. For example, if a call to `psa_sign_hash()` is dispatch…
230 * `"sign_hash"`: signature of an already calculated hash. Called by `psa_sign_hash()` and possibly …
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md836 psa_sign_hash(key_id, ...);
935 …ign` or `mbedtls_pk_sign_ext` to sign an already calculated hash is [`psa_sign_hash`](https://mbed…
944 Generally, `psa_sign_hash` and `psa_verify_hash` require the input to have the correct length for t…
967 …specifying a hash as part of the algorithm. It can only be used with `psa_sign_hash` and `psa_veri…
1306 … API (`psa_generate_key`, `psa_export_public_key`, `psa_import_key`, `psa_sign_hash`, `psa_verify_…
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md239 * When called from `psa_sign_hash` and other PSA functions, it must call the PSA hash accelerator i…
/openthread-latest/third_party/mbedtls/repo/
DChangeLog2581 * Rename psa_asymmetric_sign() to psa_sign_hash() and