Home
last modified time | relevance | path

Searched refs:psa_hash_setup (Results 1 – 12 of 12) sorted by relevance

/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_hash.function22 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
45 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
74 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
Dtest_suite_psa_crypto.function1811 status = psa_hash_setup( &operation, alg );
1820 TEST_EQUAL( psa_hash_setup( &operation, alg ), status );
1824 PSA_ASSERT( psa_hash_setup( &operation, KNOWN_SUPPORTED_HASH_ALG ) );
1953 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
1955 TEST_EQUAL( psa_hash_setup( &operation, alg ),
1967 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
1977 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
1991 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
2000 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
2018 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
[all …]
Dtest_suite_psa_crypto_driver_wrappers.function1590 TEST_EQUAL( psa_hash_setup( &operation, alg ), expected_status );
1642 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
1699 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
1751 PSA_ASSERT( psa_hash_setup( &source_operation, alg ) );
/third_party/mbedtls/tests/include/spe/
Dcrypto_spe.h91 #define psa_hash_setup \ macro
92 PSA_FUNCTION_NAME(psa_hash_setup)
/third_party/mbedtls/library/
Dpsa_crypto_mac.c94 status = psa_hash_setup( &hmac->hash_ctx, hash_alg ); in psa_hmac_setup_internal()
130 status = psa_hash_setup( &hmac->hash_ctx, hash_alg ); in psa_hmac_finish_internal()
Dx509write_csr.c222 if( psa_hash_setup( &hash_operation, hash_alg ) != PSA_SUCCESS ) in x509write_csr_der_internal()
Dssl_tls.c2456 psa_hash_setup( &ssl->handshake->fin_sha256_psa, PSA_ALG_SHA_256 ); in mbedtls_ssl_reset_checksum()
2464 psa_hash_setup( &ssl->handshake->fin_sha384_psa, PSA_ALG_SHA_384 ); in mbedtls_ssl_reset_checksum()
2965 psa_hash_setup( &handshake->fin_sha256_psa, PSA_ALG_SHA_256 ); in ssl_handshake_params_init()
2974 psa_hash_setup( &handshake->fin_sha384_psa, PSA_ALG_SHA_384 ); in ssl_handshake_params_init()
6979 if( ( status = psa_hash_setup( &hash_operation, in mbedtls_ssl_get_key_exchange_md_tls1_2()
Dx509_crt.c2438 if( psa_hash_setup( &hash_operation, hash_alg ) != PSA_SUCCESS ) in x509_crt_check_signature()
Dpsa_crypto.c2116 psa_status_t psa_hash_setup( psa_hash_operation_t *operation, in psa_hash_setup() function
/third_party/mbedtls/docs/
Dgetting_started.md388 1. Call `psa_hash_setup()` to specify the hash algorithm.
412 status = psa_hash_setup(&operation, alg);
461 status = psa_hash_setup(&operation, alg);
489 After a successful call to `psa_hash_setup()`, you can terminate the operation at any time by calli…
496 …wever, reuse the operation structure for a different operation by calling `psa_hash_setup()` again.
498 …t for any operation that is initialized successfully (by a successful call to `psa_hash_setup()`) .
/third_party/mbedtls/include/psa/
Dcrypto.h998 psa_status_t psa_hash_setup(psa_hash_operation_t *operation,
/third_party/mbedtls/docs/proposed/
Dpsa-driver-interface.md253 * `"hash_setup"`: called by `psa_hash_setup()`.