Fix missed drivers header
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
cbbde5f28c
commit
7f0a180107
1 changed files with 9 additions and 9 deletions
|
@ -68,34 +68,34 @@ psa_status_t mbedtls_test_transparent_aead_decrypt(
|
|||
uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_encrypt_setup(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
const psa_key_attributes_t *attributes,
|
||||
const uint8_t *key_buffer, size_t key_buffer_size,
|
||||
psa_algorithm_t alg );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_decrypt_setup(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
const psa_key_attributes_t *attributes,
|
||||
const uint8_t *key_buffer, size_t key_buffer_size,
|
||||
psa_algorithm_t alg );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_set_nonce(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
const uint8_t *nonce,
|
||||
size_t nonce_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_set_lengths(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
size_t ad_length,
|
||||
size_t plaintext_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_update_ad(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
const uint8_t *input,
|
||||
size_t input_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_update(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
const uint8_t *input,
|
||||
size_t input_length,
|
||||
uint8_t *output,
|
||||
|
@ -103,7 +103,7 @@ psa_status_t mbedtls_test_transparent_aead_update(
|
|||
size_t *output_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_finish(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
uint8_t *ciphertext,
|
||||
size_t ciphertext_size,
|
||||
size_t *ciphertext_length,
|
||||
|
@ -112,7 +112,7 @@ psa_status_t mbedtls_test_transparent_aead_finish(
|
|||
size_t *tag_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_verify(
|
||||
psa_aead_operation_t *operation,
|
||||
mbedtls_psa_aead_operation_t *operation,
|
||||
uint8_t *plaintext,
|
||||
size_t plaintext_size,
|
||||
size_t *plaintext_length,
|
||||
|
@ -120,7 +120,7 @@ psa_status_t mbedtls_test_transparent_aead_verify(
|
|||
size_t tag_length );
|
||||
|
||||
psa_status_t mbedtls_test_transparent_aead_abort(
|
||||
psa_aead_operation_t *operation );
|
||||
mbedtls_psa_aead_operation_t *operation );
|
||||
|
||||
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
||||
#endif /* PSA_CRYPTO_TEST_DRIVERS_AEAD_H */
|
||||
|
|
Loading…
Reference in a new issue