Home
last modified time | relevance | path

Searched refs:psa_cipher_decrypt_setup (Results 1 – 10 of 10) sorted by relevance

/openthread-3.6.0/third_party/mbedtls/repo/tests/include/spe/
Dcrypto_spe.h81 #define psa_cipher_decrypt_setup \ macro
82 PSA_FUNCTION_NAME(psa_cipher_decrypt_setup)
/openthread-3.6.0/third_party/mbedtls/repo/programs/psa/
Dcrypto_examples.c143 status = psa_cipher_decrypt_setup( &operation, key, alg ); in cipher_decrypt()
/openthread-3.6.0/third_party/mbedtls/repo/docs/
Dgetting_started.md280 1. Call `psa_cipher_decrypt_setup()` to specify the algorithm and the key to be used.
327 status = psa_cipher_decrypt_setup(&operation, key_id, alg);
363 …ture with a successful call to `psa_cipher_encrypt_setup()` or `psa_cipher_decrypt_setup()`, you c…
371 …ent operation by calling either `psa_cipher_encrypt_setup()` or `psa_cipher_decrypt_setup()` again.
373 …uccessfully (by a successful call to `psa_cipher_encrypt_setup()` or `psa_cipher_decrypt_setup()`).
/openthread-3.6.0/third_party/mbedtls/repo/include/psa/
Dcrypto.h1879 psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation,
/openthread-3.6.0/third_party/mbedtls/repo/tests/src/
Dpsa_exercise_key.c207 PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) ); in exercise_cipher_key()
/openthread-3.6.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_driver_wrappers.function694 PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) );
920 status = psa_cipher_decrypt_setup( &operation, key, alg );
Dtest_suite_psa_crypto.function950 status = psa_cipher_decrypt_setup( &operation, key, exercise_alg );
2411 PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) );
2413 TEST_EQUAL( psa_cipher_decrypt_setup( &operation, key, alg ),
2902 PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) );
3176 PSA_ASSERT( psa_cipher_decrypt_setup( &operation2, key, alg ) );
Dtest_suite_psa_crypto_se_driver_hal.function693 SMOKE_ASSERT( psa_cipher_decrypt_setup( &cipher_operation, key,
/openthread-3.6.0/third_party/mbedtls/repo/library/
Dcipher.c1219 status = psa_cipher_decrypt_setup( &cipher_op, in mbedtls_cipher_crypt()
Dpsa_crypto.c3386 psa_status_t psa_cipher_decrypt_setup( psa_cipher_operation_t *operation, in psa_cipher_decrypt_setup() function