Searched refs:psa_hash_setup (Results 1 - 12 of 12) sorted by relevance
/third_party/mbedtls/tests/include/spe/ |
H A D | crypto_spe.h | 102 #define psa_hash_setup \ macro 103 PSA_FUNCTION_NAME(psa_hash_setup)
|
/third_party/mbedtls/library/ |
H A D | lmots.c | 130 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in create_digit_array_with_checksum() 241 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in hash_digit_array() 321 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in public_key_from_hashed_digit_array() 596 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in mbedtls_lmots_generate_private_key()
|
H A D | psa_crypto_mac.c | 90 status = psa_hash_setup(&hmac->hash_ctx, hash_alg); in psa_hmac_setup_internal() 128 status = psa_hash_setup(&hmac->hash_ctx, hash_alg); in psa_hmac_finish_internal()
|
H A D | lms.c | 105 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in create_merkle_leaf_value() 179 status = psa_hash_setup(&op, PSA_ALG_SHA_256); in create_merkle_internal_value()
|
H A D | md.c | 522 psa_status_t status = psa_hash_setup(ctx->md_ctx, alg); in mbedtls_md_starts()
|
H A D | ssl_msg.c | 126 PSA_CHK(psa_hash_setup(&operation, hash_alg)); in mbedtls_ct_hmac() 165 PSA_CHK(psa_hash_setup(&operation, hash_alg)); in mbedtls_ct_hmac()
|
H A D | ssl_tls.c | 849 status = psa_hash_setup(&ssl->handshake->fin_sha256_psa, PSA_ALG_SHA_256); in mbedtls_ssl_reset_checksum() 874 status = psa_hash_setup(&ssl->handshake->fin_sha384_psa, PSA_ALG_SHA_384); in mbedtls_ssl_reset_checksum() 9338 if ((status = psa_hash_setup(&hash_operation, in mbedtls_ssl_get_key_exchange_md_tls1_2() 9340 MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_setup", status); in mbedtls_ssl_get_key_exchange_md_tls1_2()
|
H A D | psa_crypto.c | 2292 psa_status_t psa_hash_setup(psa_hash_operation_t *operation, in psa_hash_setup() function 6540 psa_status_t status = psa_hash_setup(&operation, alg); in psa_hash_try_support()
|
/third_party/mbedtls/programs/psa/ |
H A D | psa_hash.c | 6 * operation, which requires psa_hash_setup(), psa_hash_update() and 76 status = psa_hash_setup(&hash_operation, HASH_ALG); in main() 81 mbedtls_printf("psa_hash_setup failed\n"); in main()
|
/third_party/mbedtls/include/psa/ |
H A D | crypto.h | 949 * -# Call psa_hash_setup() to specify the algorithm. 956 * If an error occurs at any step after a call to psa_hash_setup(), the 961 * After a successful call to psa_hash_setup(), the application must 989 psa_status_t psa_hash_setup(psa_hash_operation_t *operation, 994 * The application must call psa_hash_setup() before calling this function. 1021 * The application must call psa_hash_setup() before calling this function. 1069 * The application must call psa_hash_setup() before calling this function. 1111 * psa_hash_setup() again. 1137 * to calling psa_hash_setup() on \p target_operation with the same 2949 * first calculate the hash by calling psa_hash_setup(), psa_hash_updat [all...] |
/third_party/mbedtls/tests/include/test/ |
H A D | psa_test_wrappers.h | 405 #define psa_hash_setup(arg0_operation, arg1_alg) \ macro
|
/third_party/mbedtls/tests/src/ |
H A D | psa_test_wrappers.c | 704 /* Wrapper for psa_hash_setup */ 709 psa_status_t status = (psa_hash_setup)(arg0_operation, arg1_alg); in mbedtls_test_wrap_psa_hash_setup()
|
Completed in 47 milliseconds