Searched refs:arg3_nonce_length (Results 1 – 2 of 2) sorted by relevance
/mbedtls-latest/tests/include/test/ |
D | psa_test_wrappers.h | 57 size_t arg3_nonce_length, 65 #define psa_aead_decrypt(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additional_data, a… argument 66 …mbedtls_test_wrap_psa_aead_decrypt(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additio… 79 size_t arg3_nonce_length, 87 #define psa_aead_encrypt(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additional_data, a… argument 88 …mbedtls_test_wrap_psa_aead_encrypt(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additio… 112 size_t *arg3_nonce_length); 113 #define psa_aead_generate_nonce(arg0_operation, arg1_nonce, arg2_nonce_size, arg3_nonce_length) \ argument 114 …s_test_wrap_psa_aead_generate_nonce(arg0_operation, arg1_nonce, arg2_nonce_size, arg3_nonce_length)
|
/mbedtls-latest/tests/src/ |
D | psa_test_wrappers.c | 63 size_t arg3_nonce_length, in mbedtls_test_wrap_psa_aead_decrypt() argument 73 MBEDTLS_TEST_MEMORY_POISON(arg2_nonce, arg3_nonce_length); in mbedtls_test_wrap_psa_aead_decrypt() 78 …psa_status_t status = (psa_aead_decrypt)(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_a… in mbedtls_test_wrap_psa_aead_decrypt() 80 MBEDTLS_TEST_MEMORY_UNPOISON(arg2_nonce, arg3_nonce_length); in mbedtls_test_wrap_psa_aead_decrypt() 103 size_t arg3_nonce_length, in mbedtls_test_wrap_psa_aead_encrypt() argument 113 MBEDTLS_TEST_MEMORY_POISON(arg2_nonce, arg3_nonce_length); in mbedtls_test_wrap_psa_aead_encrypt() 118 …psa_status_t status = (psa_aead_encrypt)(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_a… in mbedtls_test_wrap_psa_aead_encrypt() 120 MBEDTLS_TEST_MEMORY_UNPOISON(arg2_nonce, arg3_nonce_length); in mbedtls_test_wrap_psa_aead_encrypt() 165 size_t *arg3_nonce_length) in mbedtls_test_wrap_psa_aead_generate_nonce() argument 170 …status = (psa_aead_generate_nonce)(arg0_operation, arg1_nonce, arg2_nonce_size, arg3_nonce_length); in mbedtls_test_wrap_psa_aead_generate_nonce()
|