mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 17:55:38 +01:00
add encryption only test case
This commit is contained in:
parent
4b26850a15
commit
f2525ebda7
@ -138,3 +138,6 @@ aead_encrypt_decrypt:PSA_KEY_TYPE_DES:"D7828D13B2B0BDC325A76236DF93CC6B":PSA_ALG
|
||||
|
||||
PSA AEAD Encrypt-Decrypt, Fail Scenario - Invalid algorithm
|
||||
aead_encrypt_decrypt:PSA_KEY_TYPE_AES:"D7828D13B2B0BDC325A76236DF93CC6B":PSA_ALG_CTR:"B96B49E21D621741632875DB7F6C9243D2D7C2":"EC46BB63B02520C33C49FD70":PSA_ERROR_NOT_SUPPORTED
|
||||
|
||||
PSA AEAD Encrypt, AES CCM
|
||||
aead_encrypt:PSA_KEY_TYPE_AES:"D7828D13B2B0BDC325A76236DF93CC6B":PSA_ALG_CCM:"08E8CF97D820EA258460E96AD9CF5289054D895CEAC47C":"0BE1A88BACE018B1":"00412B4EA9CDBE3C9696766CFA":"4CB97F86A2A4689A877947AB8091EF5386A6FFBDD080F8E78CF7CB0CDDD7B3"
|
||||
|
@ -655,3 +655,70 @@ exit:
|
||||
mbedtls_psa_crypto_free( );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void aead_encrypt( int key_type_arg, char * key_hex,
|
||||
int alg_arg, char * input_hex,
|
||||
char * add_data, char * nonce_hex,
|
||||
char * expected_result_hex )
|
||||
{
|
||||
int slot = 1;
|
||||
psa_key_type_t key_type = key_type_arg;
|
||||
psa_algorithm_t alg = alg_arg;
|
||||
unsigned char *key_data = NULL;
|
||||
size_t key_size;
|
||||
unsigned char *input_data = NULL;
|
||||
size_t input_size;
|
||||
unsigned char *output_data = NULL;
|
||||
size_t output_size = 0;
|
||||
size_t output_length = 0;
|
||||
unsigned char *expected_result = NULL;
|
||||
size_t expected_result_length = 0;
|
||||
uint8_t* nonce = NULL;
|
||||
size_t nonce_length = 0;
|
||||
size_t tag_length = 16;
|
||||
unsigned char *additional_data = NULL;
|
||||
size_t additional_data_length = 0;
|
||||
|
||||
|
||||
key_data = unhexify_alloc( key_hex, &key_size );
|
||||
TEST_ASSERT( key_data != NULL );
|
||||
input_data = unhexify_alloc( input_hex, &input_size );
|
||||
TEST_ASSERT( input_data != NULL );
|
||||
additional_data = unhexify_alloc( add_data, &additional_data_length );
|
||||
TEST_ASSERT( input_data != NULL );
|
||||
output_size = input_size + tag_length;
|
||||
output_data = mbedtls_calloc( 1, output_size );
|
||||
TEST_ASSERT( output_data != NULL );
|
||||
nonce = unhexify_alloc( nonce_hex, &nonce_length );
|
||||
TEST_ASSERT( nonce != NULL );
|
||||
expected_result = unhexify_alloc( expected_result_hex, &expected_result_length );
|
||||
TEST_ASSERT( expected_result != NULL );
|
||||
|
||||
TEST_ASSERT( psa_crypto_init( ) == PSA_SUCCESS );
|
||||
|
||||
TEST_ASSERT( psa_import_key( slot, key_type,
|
||||
key_data, key_size ) == PSA_SUCCESS );
|
||||
|
||||
TEST_ASSERT( psa_aead_encrypt( slot, alg,
|
||||
nonce, nonce_length,
|
||||
additional_data, additional_data_length,
|
||||
input_data, input_size, output_data,
|
||||
output_size, &output_length ) == PSA_SUCCESS );
|
||||
|
||||
|
||||
TEST_ASSERT( memcmp( output_data, expected_result,
|
||||
output_length ) == 0 );
|
||||
|
||||
|
||||
exit:
|
||||
psa_destroy_key( slot );
|
||||
mbedtls_free( key_data );
|
||||
mbedtls_free( input_data );
|
||||
mbedtls_free( additional_data );
|
||||
mbedtls_free( output_data );
|
||||
mbedtls_free( nonce );
|
||||
mbedtls_free( expected_result );
|
||||
mbedtls_psa_crypto_free( );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
Loading…
Reference in New Issue
Block a user