/mbedtls-development/tests/src/drivers/ |
A D | test_driver_aead.c | 35 const uint8_t *nonce, size_t nonce_length, in mbedtls_test_transparent_aead_encrypt() argument 53 nonce, nonce_length, in mbedtls_test_transparent_aead_encrypt() 66 const uint8_t *nonce, size_t nonce_length, in mbedtls_test_transparent_aead_decrypt() argument 84 nonce, nonce_length, in mbedtls_test_transparent_aead_decrypt() 142 size_t nonce_length ) in mbedtls_test_transparent_aead_set_nonce() argument 154 mbedtls_psa_aead_set_nonce( operation, nonce, nonce_length ); in mbedtls_test_transparent_aead_set_nonce()
|
/mbedtls-development/library/ |
A D | psa_crypto_aead.c | 143 const uint8_t *nonce, size_t nonce_length, in mbedtls_psa_aead_encrypt() argument 173 nonce, nonce_length, in mbedtls_psa_aead_encrypt() 188 nonce, nonce_length, in mbedtls_psa_aead_encrypt() 254 const uint8_t *nonce, size_t nonce_length, in mbedtls_psa_aead_decrypt() argument 281 nonce, nonce_length, in mbedtls_psa_aead_decrypt() 295 nonce, nonce_length, in mbedtls_psa_aead_decrypt() 396 size_t nonce_length ) in mbedtls_psa_aead_set_nonce() argument 408 nonce_length ) ); in mbedtls_psa_aead_set_nonce() 420 if( nonce_length != 12 ) in mbedtls_psa_aead_set_nonce()
|
A D | psa_crypto_aead.h | 83 const uint8_t *nonce, size_t nonce_length, 146 const uint8_t *nonce, size_t nonce_length, 268 size_t nonce_length );
|
A D | psa_crypto_driver_wrappers.h | 208 const uint8_t *nonce, size_t nonce_length, 217 const uint8_t *nonce, size_t nonce_length, 237 size_t nonce_length );
|
A D | psa_crypto_driver_wrappers.c | 1468 const uint8_t *nonce, size_t nonce_length, in psa_driver_wrapper_aead_encrypt() argument 1488 nonce, nonce_length, in psa_driver_wrapper_aead_encrypt() 1502 nonce, nonce_length, in psa_driver_wrapper_aead_encrypt() 1520 const uint8_t *nonce, size_t nonce_length, in psa_driver_wrapper_aead_decrypt() argument 1540 nonce, nonce_length, in psa_driver_wrapper_aead_decrypt() 1554 nonce, nonce_length, in psa_driver_wrapper_aead_decrypt() 1669 size_t nonce_length ) in psa_driver_wrapper_aead_set_nonce() argument 1677 nonce_length ) ); in psa_driver_wrapper_aead_set_nonce() 1686 nonce, nonce_length ) ); in psa_driver_wrapper_aead_set_nonce() 1695 (void)nonce_length; in psa_driver_wrapper_aead_set_nonce()
|
A D | psa_crypto.c | 3647 if( nonce_length != 0 ) in psa_aead_check_nonce_length() 3653 if( nonce_length >= 7 && nonce_length <= 13 ) in psa_aead_check_nonce_length() 3659 if( nonce_length == 12 ) in psa_aead_check_nonce_length() 3673 size_t nonce_length, in psa_aead_encrypt() argument 3706 nonce, nonce_length, in psa_aead_encrypt() 3723 size_t nonce_length, in psa_aead_decrypt() argument 3756 nonce, nonce_length, in psa_aead_decrypt() 3866 size_t *nonce_length ) in psa_aead_generate_nonce() argument 3871 *nonce_length = 0; in psa_aead_generate_nonce() 3901 *nonce_length = required_nonce_size; in psa_aead_generate_nonce() [all …]
|
/mbedtls-development/tests/include/test/drivers/ |
A D | aead.h | 63 const uint8_t *nonce, size_t nonce_length, 72 const uint8_t *nonce, size_t nonce_length, 92 size_t nonce_length );
|
/mbedtls-development/tests/include/test/ |
A D | psa_crypto_helpers.h | 267 nonce_length ) \ argument 273 ( ( nonce_length ) != 12 ) ) \
|
/mbedtls-development/include/psa/ |
A D | crypto.h | 2133 size_t nonce_length, 2206 size_t nonce_length, 2431 size_t *nonce_length); 2471 size_t nonce_length);
|
A D | crypto_se_driver.h | 740 size_t nonce_length, 782 size_t nonce_length,
|
/mbedtls-development/tests/src/ |
A D | psa_exercise_key.c | 239 size_t nonce_length = sizeof( nonce ); in exercise_aead_key() local 255 nonce_length = 12; in exercise_aead_key() 262 nonce_length = 12; in exercise_aead_key() 268 nonce, nonce_length, in exercise_aead_key() 282 nonce, nonce_length, in exercise_aead_key()
|
/mbedtls-development/tests/suites/ |
A D | test_suite_psa_crypto.function | 1243 size_t nonce_length = nonce_length_arg; 1248 TEST_ASSERT( nonce_length <= sizeof( nonce ) ); 1265 nonce, nonce_length, 1277 nonce, nonce_length, 4005 int nonce_length, 4065 nonce_length, 4123 size_t nonce_length; 4170 nonce_length = 0; 4175 nonce_length = ( size_t ) nonce_length_arg; 4176 ASSERT_ALLOC( nonce_buffer, nonce_length ); [all …]
|