Lines Matching defs:nonce
1432 size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce,
1449 attributes, key_buffer, key_buffer_size, alg, nonce, nonce_length, additional_data,
1458 return (mbedtls_psa_aead_encrypt(attributes, key_buffer, key_buffer_size, alg, nonce, nonce_length,
1472 size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce,
1489 attributes, key_buffer, key_buffer_size, alg, nonce, nonce_length, additional_data,
1498 return (mbedtls_psa_aead_decrypt(attributes, key_buffer, key_buffer_size, alg, nonce, nonce_length,
1591 psa_status_t psa_driver_wrapper_aead_set_nonce(psa_aead_operation_t *operation, const uint8_t *nonce,
1597 return (mbedtls_psa_aead_set_nonce(&operation->ctx.mbedtls_ctx, nonce, nonce_length));
1604 return (mbedtls_test_transparent_aead_set_nonce(&operation->ctx.transparent_test_driver_ctx, nonce,
1613 (void)nonce;