Searched refs:psa_hash_setup (Results 1 – 12 of 12) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_psa_crypto_hash.function | 22 PSA_ASSERT( psa_hash_setup( &operation, alg ) ); 45 PSA_ASSERT( psa_hash_setup( &operation, alg ) ); 74 PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
D | test_suite_psa_crypto.function | 1811 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 …]
|
D | test_suite_psa_crypto_driver_wrappers.function | 1590 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/ |
D | crypto_spe.h | 91 #define psa_hash_setup \ macro 92 PSA_FUNCTION_NAME(psa_hash_setup)
|
/third_party/mbedtls/library/ |
D | psa_crypto_mac.c | 94 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()
|
D | x509write_csr.c | 222 if( psa_hash_setup( &hash_operation, hash_alg ) != PSA_SUCCESS ) in x509write_csr_der_internal()
|
D | ssl_tls.c | 2456 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()
|
D | x509_crt.c | 2438 if( psa_hash_setup( &hash_operation, hash_alg ) != PSA_SUCCESS ) in x509_crt_check_signature()
|
D | psa_crypto.c | 2116 psa_status_t psa_hash_setup( psa_hash_operation_t *operation, in psa_hash_setup() function
|
/third_party/mbedtls/docs/ |
D | getting_started.md | 388 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/ |
D | crypto.h | 998 psa_status_t psa_hash_setup(psa_hash_operation_t *operation,
|
/third_party/mbedtls/docs/proposed/ |
D | psa-driver-interface.md | 253 * `"hash_setup"`: called by `psa_hash_setup()`.
|