Home
last modified time | relevance | path

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

/mbedtls-latest/tests/include/spe/
Dcrypto_spe.h120 #define psa_sign_hash \ macro
121 PSA_FUNCTION_NAME(psa_sign_hash)
/mbedtls-latest/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.function482 status = psa_sign_hash(key, alg,
722 SMOKE_ASSERT(psa_sign_hash(key, PSA_ALG_ECDSA_ANY,
1412 psa_sign_hash(id, alg,
1419 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.function2541 status = psa_sign_hash(key, exercise_alg,
6821 PSA_ASSERT(psa_sign_hash(key, alg,
6997 actual_status = psa_sign_hash(key, alg,
7197 PSA_ASSERT(psa_sign_hash(key, alg,
Dtest_suite_psa_crypto_driver_wrappers.function558 actual_status = psa_sign_hash(key, alg,
/mbedtls-latest/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.c1331 status = psa_sign_hash(ctx->priv_id, PSA_ALG_RSA_PSS(psa_md_alg), in mbedtls_pk_sign_ext()
1335 status = psa_sign_hash(ctx->priv_id, PSA_ALG_RSA_PSS_ANY_SALT(psa_md_alg), in mbedtls_pk_sign_ext()
Dpsa_crypto.c3271 psa_status_t psa_sign_hash(mbedtls_svc_key_id_t key, function
/mbedtls-latest/include/psa/
Dcrypto.h2994 psa_status_t psa_sign_hash(mbedtls_svc_key_id_t key,
/mbedtls-latest/tests/include/test/
Dpsa_test_wrappers.h703 #define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signatu… macro
/mbedtls-latest/tests/src/
Dpsa_exercise_key.c372 status = psa_sign_hash(key, alg, in exercise_signature_key()
Dpsa_test_wrappers.c1233 …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()
/mbedtls-latest/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 …
/mbedtls-latest/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_…
/mbedtls-latest/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…
/mbedtls-latest/
DChangeLog2776 * Rename psa_asymmetric_sign() to psa_sign_hash() and