2020-07-16 20:28:59 +02:00
|
|
|
/* BEGIN_HEADER */
|
2020-09-07 16:17:55 +02:00
|
|
|
#include "test/drivers/test_driver.h"
|
2020-07-16 20:28:59 +02:00
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
2020-09-07 12:58:16 +02:00
|
|
|
* depends_on:MBEDTLS_PSA_CRYPTO_C:MBEDTLS_PSA_CRYPTO_DRIVERS:PSA_CRYPTO_DRIVER_TEST
|
2020-07-16 20:28:59 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECDSA_DETERMINISTIC:MBEDTLS_ECP_DP_SECP256R1_ENABLED:MBEDTLS_SHA256_C */
|
|
|
|
void ecdsa_sign( int force_status_arg,
|
2020-09-07 12:58:16 +02:00
|
|
|
data_t *key_input,
|
|
|
|
data_t *data_input,
|
|
|
|
data_t *expected_output,
|
2020-07-16 20:28:59 +02:00
|
|
|
int fake_output,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_status_t force_status = force_status_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-07-16 20:28:59 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_DETERMINISTIC_ECDSA( PSA_ALG_SHA_256 );
|
|
|
|
uint8_t signature[64];
|
|
|
|
size_t signature_length = 0xdeadbeef;
|
|
|
|
psa_status_t actual_status;
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_sign_hooks = test_driver_signature_hooks_init();
|
2020-07-16 20:28:59 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
psa_set_key_type( &attributes,
|
|
|
|
PSA_KEY_TYPE_ECC_KEY_PAIR( PSA_ECC_CURVE_SECP_R1 ) );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN_HASH );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_import_key( &attributes,
|
2020-09-07 12:58:16 +02:00
|
|
|
key_input->x, key_input->len,
|
2020-08-04 14:58:35 +02:00
|
|
|
&key );
|
2020-07-16 20:28:59 +02:00
|
|
|
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_sign_hooks.forced_status = force_status;
|
|
|
|
if( fake_output == 1 )
|
2020-07-16 20:28:59 +02:00
|
|
|
{
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_sign_hooks.forced_output = expected_output->x;
|
|
|
|
test_driver_signature_sign_hooks.forced_output_length = expected_output->len;
|
2020-07-16 20:28:59 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
actual_status = psa_sign_hash( key, alg,
|
2020-09-07 12:58:16 +02:00
|
|
|
data_input->x, data_input->len,
|
2020-07-16 20:28:59 +02:00
|
|
|
signature, sizeof( signature ),
|
|
|
|
&signature_length );
|
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
if( expected_status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
ASSERT_COMPARE( signature, signature_length,
|
2020-09-07 12:58:16 +02:00
|
|
|
expected_output->x, expected_output->len );
|
2020-07-16 20:28:59 +02:00
|
|
|
}
|
2020-09-07 12:58:16 +02:00
|
|
|
TEST_EQUAL( test_driver_signature_sign_hooks.hits, 1 );
|
2020-07-16 20:28:59 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-07-16 20:28:59 +02:00
|
|
|
PSA_DONE( );
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_sign_hooks = test_driver_signature_hooks_init();
|
2020-07-16 20:28:59 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2020-07-17 19:46:15 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECDSA_DETERMINISTIC:MBEDTLS_ECP_DP_SECP256R1_ENABLED:MBEDTLS_SHA256_C */
|
|
|
|
void ecdsa_verify( int force_status_arg,
|
|
|
|
int register_public_key,
|
2020-09-07 12:58:16 +02:00
|
|
|
data_t *key_input,
|
|
|
|
data_t *data_input,
|
|
|
|
data_t *signature_input,
|
2020-07-17 19:46:15 +02:00
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_status_t force_status = force_status_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-07-17 19:46:15 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_DETERMINISTIC_ECDSA( PSA_ALG_SHA_256 );
|
|
|
|
psa_status_t actual_status;
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_verify_hooks = test_driver_signature_hooks_init();
|
2020-07-17 19:46:15 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
if( register_public_key )
|
|
|
|
{
|
|
|
|
psa_set_key_type( &attributes,
|
|
|
|
PSA_KEY_TYPE_ECC_PUBLIC_KEY( PSA_ECC_CURVE_SECP_R1 ) );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_VERIFY_HASH );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_import_key( &attributes,
|
2020-09-07 12:58:16 +02:00
|
|
|
key_input->x, key_input->len,
|
2020-08-04 14:58:35 +02:00
|
|
|
&key );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
psa_set_key_type( &attributes,
|
|
|
|
PSA_KEY_TYPE_ECC_KEY_PAIR( PSA_ECC_CURVE_SECP_R1 ) );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_VERIFY_HASH );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_import_key( &attributes,
|
2020-09-07 12:58:16 +02:00
|
|
|
key_input->x, key_input->len,
|
2020-08-04 14:58:35 +02:00
|
|
|
&key );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
|
|
|
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_verify_hooks.forced_status = force_status;
|
2020-07-17 19:46:15 +02:00
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
actual_status = psa_verify_hash( key, alg,
|
2020-09-07 12:58:16 +02:00
|
|
|
data_input->x, data_input->len,
|
|
|
|
signature_input->x, signature_input->len );
|
2020-07-17 19:46:15 +02:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
2020-09-07 12:58:16 +02:00
|
|
|
TEST_EQUAL( test_driver_signature_verify_hooks.hits, 1 );
|
2020-07-17 19:46:15 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-07-17 19:46:15 +02:00
|
|
|
PSA_DONE( );
|
2020-09-07 12:58:16 +02:00
|
|
|
test_driver_signature_verify_hooks = test_driver_signature_hooks_init();
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2020-07-20 15:33:08 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECP_DP_SECP256R1_ENABLED */
|
|
|
|
void generate_key( int force_status_arg,
|
2020-09-07 12:58:16 +02:00
|
|
|
data_t *fake_output,
|
2020-07-20 15:33:08 +02:00
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_status_t force_status = force_status_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-07-20 15:33:08 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_ECDSA( PSA_ALG_SHA_256 );
|
2020-09-07 12:58:16 +02:00
|
|
|
const uint8_t *expected_output = NULL;
|
|
|
|
size_t expected_output_length = 0;
|
2020-07-20 15:33:08 +02:00
|
|
|
psa_status_t actual_status;
|
2020-09-07 12:58:16 +02:00
|
|
|
uint8_t actual_output[PSA_KEY_EXPORT_ECC_KEY_PAIR_MAX_SIZE(256)] = {0};
|
2020-07-20 15:33:08 +02:00
|
|
|
size_t actual_output_length;
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-07-20 15:33:08 +02:00
|
|
|
|
|
|
|
psa_set_key_type( &attributes,
|
|
|
|
PSA_KEY_TYPE_ECC_KEY_PAIR( PSA_ECC_CURVE_SECP_R1 ) );
|
|
|
|
psa_set_key_bits( &attributes, 256 );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN_HASH | PSA_KEY_USAGE_EXPORT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
|
2020-09-07 12:58:16 +02:00
|
|
|
if( fake_output->len > 0 )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
2020-10-23 11:45:43 +02:00
|
|
|
expected_output = test_driver_key_management_hooks.forced_output = fake_output->x;
|
|
|
|
expected_output_length = test_driver_key_management_hooks.forced_output_length =
|
2020-09-07 12:58:16 +02:00
|
|
|
fake_output->len;
|
2020-07-20 15:33:08 +02:00
|
|
|
}
|
|
|
|
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks.hits = 0;
|
|
|
|
test_driver_key_management_hooks.forced_status = force_status;
|
2020-07-20 15:33:08 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
actual_status = psa_generate_key( &attributes, &key );
|
2020-10-23 11:45:43 +02:00
|
|
|
TEST_EQUAL( test_driver_key_management_hooks.hits, 1 );
|
2020-07-20 15:33:08 +02:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
|
|
|
|
if( actual_status == PSA_SUCCESS )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_export_key( key, actual_output, sizeof(actual_output), &actual_output_length );
|
2020-07-20 15:33:08 +02:00
|
|
|
|
2020-09-07 12:58:16 +02:00
|
|
|
if( fake_output->len > 0 )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
|
|
|
ASSERT_COMPARE( actual_output, actual_output_length,
|
|
|
|
expected_output, expected_output_length );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t zeroes = 0;
|
|
|
|
for( size_t i = 0; i < sizeof(actual_output); i++ )
|
|
|
|
{
|
|
|
|
if( actual_output[i] == 0)
|
|
|
|
zeroes++;
|
|
|
|
}
|
|
|
|
TEST_ASSERT( zeroes != sizeof(actual_output) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-07-20 15:33:08 +02:00
|
|
|
PSA_DONE( );
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-07-20 15:33:08 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-10-13 17:43:44 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECP_DP_SECP256R1_ENABLED */
|
|
|
|
void validate_key( int force_status_arg,
|
|
|
|
int key_type_arg,
|
|
|
|
data_t *key_input,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_status_t force_status = force_status_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-10-13 17:43:44 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_status_t actual_status;
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-10-13 17:43:44 +02:00
|
|
|
|
|
|
|
psa_set_key_type( &attributes,
|
|
|
|
key_type );
|
|
|
|
psa_set_key_bits( &attributes, 0 );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_EXPORT );
|
|
|
|
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks.forced_status = force_status;
|
2020-10-13 17:43:44 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
actual_status = psa_import_key( &attributes, key_input->x, key_input->len, &key );
|
2020-10-23 11:45:43 +02:00
|
|
|
TEST_EQUAL( test_driver_key_management_hooks.hits, 1 );
|
2020-10-13 17:43:44 +02:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-10-13 17:43:44 +02:00
|
|
|
PSA_DONE( );
|
2020-10-23 11:45:43 +02:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-10-13 17:43:44 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2020-10-14 14:39:20 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECP_DP_SECP256R1_ENABLED */
|
|
|
|
void export_key( int force_status_arg,
|
|
|
|
data_t *fake_output,
|
|
|
|
int key_in_type_arg,
|
|
|
|
data_t *key_in,
|
|
|
|
int key_out_type_arg,
|
|
|
|
data_t *expected_output,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_status_t force_status = force_status_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
|
|
|
psa_key_handle_t handle = 0;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_type_t input_key_type = key_in_type_arg;
|
|
|
|
psa_key_type_t output_key_type = key_out_type_arg;
|
|
|
|
const uint8_t *expected_output_ptr = NULL;
|
|
|
|
size_t expected_output_length = 0;
|
|
|
|
psa_status_t actual_status;
|
|
|
|
uint8_t actual_output[PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(256)] = {0};
|
|
|
|
size_t actual_output_length;
|
2020-11-22 18:47:43 +01:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-10-14 14:39:20 +02:00
|
|
|
|
|
|
|
psa_set_key_type( &attributes, input_key_type );
|
|
|
|
psa_set_key_bits( &attributes, 256 );
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_EXPORT );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_in->x, key_in->len, &handle ) );
|
|
|
|
|
|
|
|
if( fake_output->len > 0 )
|
|
|
|
{
|
2020-11-22 18:47:43 +01:00
|
|
|
expected_output_ptr = test_driver_key_management_hooks.forced_output = fake_output->x;
|
|
|
|
expected_output_length = test_driver_key_management_hooks.forced_output_length =
|
2020-10-14 14:39:20 +02:00
|
|
|
fake_output->len;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
expected_output_ptr = expected_output->x;
|
|
|
|
expected_output_length = expected_output->len;
|
|
|
|
}
|
|
|
|
|
2020-11-22 18:47:43 +01:00
|
|
|
test_driver_key_management_hooks.hits = 0;
|
|
|
|
test_driver_key_management_hooks.forced_status = force_status;
|
2020-10-14 14:39:20 +02:00
|
|
|
|
|
|
|
if( PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY( output_key_type ) )
|
|
|
|
actual_status = psa_export_public_key( handle, actual_output, sizeof(actual_output), &actual_output_length );
|
|
|
|
else
|
|
|
|
actual_status = psa_export_key( handle, actual_output, sizeof(actual_output), &actual_output_length );
|
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
|
|
|
|
if( PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY( output_key_type ) &&
|
|
|
|
!PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY( input_key_type ) )
|
2020-11-22 18:47:43 +01:00
|
|
|
TEST_EQUAL( test_driver_key_management_hooks.hits, 1 );
|
2020-10-14 14:39:20 +02:00
|
|
|
|
|
|
|
if( actual_status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
ASSERT_COMPARE( actual_output, actual_output_length,
|
|
|
|
expected_output_ptr, expected_output_length );
|
|
|
|
}
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
PSA_DONE( );
|
2020-11-22 18:47:43 +01:00
|
|
|
test_driver_key_management_hooks = test_driver_key_management_hooks_init();
|
2020-10-14 14:39:20 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2020-09-03 15:31:04 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_encrypt( int alg_arg, int key_type_arg,
|
2020-08-04 14:58:35 +02:00
|
|
|
data_t *key_data, data_t *iv,
|
2020-09-03 15:31:04 +02:00
|
|
|
data_t *input, data_t *expected_output,
|
2020-09-10 18:07:57 +02:00
|
|
|
int mock_output_arg,
|
2020-09-10 14:32:26 +02:00
|
|
|
int force_status_arg,
|
2020-09-03 15:31:04 +02:00
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-09-03 15:31:04 +02:00
|
|
|
psa_status_t status;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2020-09-10 14:32:26 +02:00
|
|
|
psa_status_t force_status = force_status_arg;
|
2020-09-03 15:31:04 +02:00
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
|
|
|
size_t total_output_length = 0;
|
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-10 14:32:26 +02:00
|
|
|
test_driver_cipher_hooks.forced_status = force_status;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, key, alg ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 1 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
output_buffer_size = ( (size_t) input->len +
|
2020-12-18 14:23:51 +01:00
|
|
|
PSA_BLOCK_CIPHER_BLOCK_LENGTH( key_type ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
|
|
|
|
2020-09-10 18:07:57 +02:00
|
|
|
if( mock_output_arg )
|
|
|
|
{
|
|
|
|
test_driver_cipher_hooks.forced_output = expected_output->x;
|
|
|
|
test_driver_cipher_hooks.forced_output_length = expected_output->len;
|
|
|
|
}
|
|
|
|
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 1 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-09-10 18:07:57 +02:00
|
|
|
if( mock_output_arg )
|
|
|
|
{
|
|
|
|
test_driver_cipher_hooks.forced_output = NULL;
|
|
|
|
test_driver_cipher_hooks.forced_output_length = 0;
|
|
|
|
}
|
|
|
|
|
2020-09-03 15:31:04 +02:00
|
|
|
total_output_length += function_output_length;
|
|
|
|
status = psa_cipher_finish( &operation,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length );
|
2020-09-09 11:51:45 +02:00
|
|
|
/* Finish will have called abort as well, so expecting two hits here */
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 2 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
|
|
|
|
TEST_EQUAL( status, expected_status );
|
|
|
|
if( expected_status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
// driver function should've been called as part of the finish() core routine
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
mbedtls_free( output );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_DONE( );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_encrypt_multipart( int alg_arg, int key_type_arg,
|
2020-08-04 14:58:35 +02:00
|
|
|
data_t *key_data, data_t *iv,
|
2020-09-03 15:31:04 +02:00
|
|
|
data_t *input,
|
|
|
|
int first_part_size_arg,
|
|
|
|
int output1_length_arg, int output2_length_arg,
|
|
|
|
data_t *expected_output )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-09-03 15:31:04 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t first_part_size = first_part_size_arg;
|
|
|
|
size_t output1_length = output1_length_arg;
|
|
|
|
size_t output2_length = output2_length_arg;
|
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
|
|
|
size_t total_output_length = 0;
|
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, key, alg ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
output_buffer_size = ( (size_t) input->len +
|
2020-12-18 14:23:51 +01:00
|
|
|
PSA_BLOCK_CIPHER_BLOCK_LENGTH( key_type ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
|
|
|
|
|
|
|
TEST_ASSERT( first_part_size <= input->len );
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation, input->x, first_part_size,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( function_output_length == output1_length );
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x + first_part_size,
|
|
|
|
input->len - first_part_size,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
TEST_ASSERT( function_output_length == output2_length );
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length ) );
|
2020-09-09 11:51:45 +02:00
|
|
|
/* Finish will have called abort as well, so expecting two hits here */
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
test_driver_cipher_hooks.hits = 0 ;
|
2020-09-03 15:31:04 +02:00
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
mbedtls_free( output );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_DONE( );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_decrypt_multipart( int alg_arg, int key_type_arg,
|
2020-08-04 14:58:35 +02:00
|
|
|
data_t *key_data, data_t *iv,
|
2020-09-03 15:31:04 +02:00
|
|
|
data_t *input,
|
|
|
|
int first_part_size_arg,
|
|
|
|
int output1_length_arg, int output2_length_arg,
|
|
|
|
data_t *expected_output )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-09-03 15:31:04 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t first_part_size = first_part_size_arg;
|
|
|
|
size_t output1_length = output1_length_arg;
|
|
|
|
size_t output2_length = output2_length_arg;
|
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
|
|
|
size_t total_output_length = 0;
|
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
output_buffer_size = ( (size_t) input->len +
|
2020-12-18 14:23:51 +01:00
|
|
|
PSA_BLOCK_CIPHER_BLOCK_LENGTH( key_type ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
|
|
|
|
|
|
|
TEST_ASSERT( first_part_size <= input->len );
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, first_part_size,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( function_output_length == output1_length );
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x + first_part_size,
|
|
|
|
input->len - first_part_size,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( function_output_length == output2_length );
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length ) );
|
2020-09-09 11:51:45 +02:00
|
|
|
/* Finish will have called abort as well, so expecting two hits here */
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
total_output_length += function_output_length;
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
mbedtls_free( output );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_DONE( );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_decrypt( int alg_arg, int key_type_arg,
|
2020-08-04 14:58:35 +02:00
|
|
|
data_t *key_data, data_t *iv,
|
2020-09-03 15:31:04 +02:00
|
|
|
data_t *input, data_t *expected_output,
|
2020-09-10 18:07:57 +02:00
|
|
|
int mock_output_arg,
|
2020-09-10 14:32:26 +02:00
|
|
|
int force_status_arg,
|
2020-09-03 15:31:04 +02:00
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-09-03 15:31:04 +02:00
|
|
|
psa_status_t status;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2020-09-10 14:32:26 +02:00
|
|
|
psa_status_t force_status = force_status_arg;
|
2020-09-03 15:31:04 +02:00
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
|
|
|
size_t total_output_length = 0;
|
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-10 14:32:26 +02:00
|
|
|
test_driver_cipher_hooks.forced_status = force_status;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation, key, alg ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 1 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
output_buffer_size = ( (size_t) input->len +
|
2020-12-18 14:23:51 +01:00
|
|
|
PSA_BLOCK_CIPHER_BLOCK_LENGTH( key_type ) );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
|
|
|
|
2020-09-10 18:07:57 +02:00
|
|
|
if( mock_output_arg )
|
|
|
|
{
|
|
|
|
test_driver_cipher_hooks.forced_output = expected_output->x;
|
|
|
|
test_driver_cipher_hooks.forced_output_length = expected_output->len;
|
|
|
|
}
|
|
|
|
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 1 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
2020-09-10 18:07:57 +02:00
|
|
|
if( mock_output_arg )
|
|
|
|
{
|
|
|
|
test_driver_cipher_hooks.forced_output = NULL;
|
|
|
|
test_driver_cipher_hooks.forced_output_length = 0;
|
|
|
|
}
|
|
|
|
|
2020-09-03 15:31:04 +02:00
|
|
|
total_output_length += function_output_length;
|
|
|
|
status = psa_cipher_finish( &operation,
|
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
|
|
|
&function_output_length );
|
2020-09-09 11:51:45 +02:00
|
|
|
/* Finish will have called abort as well, so expecting two hits here */
|
2020-09-10 14:32:26 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, ( force_status == PSA_SUCCESS ? 2 : 0 ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-03 15:31:04 +02:00
|
|
|
|
|
|
|
total_output_length += function_output_length;
|
|
|
|
TEST_EQUAL( status, expected_status );
|
|
|
|
|
|
|
|
if( expected_status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2020-09-08 14:06:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-03 15:31:04 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
mbedtls_free( output );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-09-03 15:31:04 +02:00
|
|
|
PSA_DONE( );
|
2020-09-08 14:06:57 +02:00
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
2020-09-03 15:31:04 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_entry_points( int alg_arg, int key_type_arg,
|
2020-08-04 14:58:35 +02:00
|
|
|
data_t *key_data, data_t *iv,
|
2020-09-10 18:07:57 +02:00
|
|
|
data_t *input )
|
|
|
|
{
|
2020-08-04 14:58:35 +02:00
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
2020-09-10 18:07:57 +02:00
|
|
|
psa_status_t status;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
|
|
|
|
2020-09-11 11:44:50 +02:00
|
|
|
ASSERT_ALLOC( output, input->len + 16 );
|
|
|
|
output_buffer_size = input->len + 16;
|
|
|
|
|
2020-09-10 18:07:57 +02:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
2020-08-04 14:58:35 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test setup call, encrypt */
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_ERROR_GENERIC_ERROR;
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
/* When setup fails, it shouldn't call any further entry points */
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_set_iv( &operation, iv->x, iv->len );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test setup call failure, decrypt */
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_decrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
/* When setup fails, it shouldn't call any further entry points */
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_set_iv( &operation, iv->x, iv->len );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test IV setting failure */
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_SUCCESS;
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
status = psa_cipher_set_iv( &operation, iv->x, iv->len );
|
|
|
|
/* When setting the IV fails, it should call abort too */
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
2020-09-11 11:44:50 +02:00
|
|
|
/* Failure should prevent further operations from executing on the driver */
|
2020-09-10 18:07:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
|
|
|
psa_cipher_abort( &operation );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test IV generation failure */
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_SUCCESS;
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_ERROR_GENERIC_ERROR;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_generate_iv( &operation, output, 16, &function_output_length );
|
|
|
|
/* When generating the IV fails, it should call abort too */
|
2020-09-10 18:07:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
2020-09-11 11:44:50 +02:00
|
|
|
/* Failure should prevent further operations from executing on the driver */
|
2020-09-10 18:07:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
|
|
|
psa_cipher_abort( &operation );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test update failure */
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_SUCCESS;
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
status = psa_cipher_set_iv( &operation, iv->x, iv->len );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
/* When the update call fails, it should call abort too */
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
2020-09-11 11:44:50 +02:00
|
|
|
/* Failure should prevent further operations from executing on the driver */
|
2020-09-10 18:07:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
|
|
|
psa_cipher_abort( &operation );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
/* Test finish failure */
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_SUCCESS;
|
2020-08-04 14:58:35 +02:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, key, alg );
|
2020-09-10 18:07:57 +02:00
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
status = psa_cipher_set_iv( &operation, iv->x, iv->len );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
|
|
|
test_driver_cipher_hooks.hits = 0;
|
|
|
|
|
|
|
|
test_driver_cipher_hooks.forced_status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
status = psa_cipher_finish( &operation,
|
|
|
|
output + function_output_length,
|
|
|
|
output_buffer_size - function_output_length,
|
|
|
|
&function_output_length );
|
|
|
|
/* When the finish call fails, it should call abort too */
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 2 );
|
|
|
|
TEST_EQUAL( status, test_driver_cipher_hooks.forced_status );
|
2020-09-11 11:44:50 +02:00
|
|
|
/* Failure should prevent further operations from executing on the driver */
|
2020-09-10 18:07:57 +02:00
|
|
|
test_driver_cipher_hooks.hits = 0;
|
2020-09-11 11:44:50 +02:00
|
|
|
status = psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length );
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( test_driver_cipher_hooks.hits, 0 );
|
|
|
|
psa_cipher_abort( &operation );
|
2020-09-10 18:07:57 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
mbedtls_free( output );
|
2020-08-04 14:58:35 +02:00
|
|
|
psa_destroy_key( key );
|
2020-09-10 18:07:57 +02:00
|
|
|
PSA_DONE( );
|
|
|
|
test_driver_cipher_hooks = test_driver_cipher_hooks_init();
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2021-03-23 09:33:39 +01:00
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void aead_encrypt( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *nonce,
|
|
|
|
data_t *additional_data,
|
|
|
|
data_t *input_data,
|
|
|
|
data_t *expected_result,
|
|
|
|
int forced_status_arg )
|
|
|
|
{
|
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t forced_status = forced_status_arg;
|
|
|
|
unsigned char *output_data = NULL;
|
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
|
|
|
size_t tag_length = PSA_AEAD_TAG_LENGTH( alg );
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
test_driver_aead_hooks = test_driver_aead_hooks_init();
|
|
|
|
|
|
|
|
output_size = input_data->len + tag_length;
|
|
|
|
/* For all currently defined algorithms, PSA_AEAD_ENCRYPT_OUTPUT_SIZE
|
|
|
|
* should be exact. */
|
|
|
|
TEST_EQUAL( output_size,
|
|
|
|
PSA_AEAD_ENCRYPT_OUTPUT_SIZE( alg, input_data->len ) );
|
|
|
|
TEST_ASSERT( output_size <=
|
|
|
|
PSA_AEAD_ENCRYPT_OUTPUT_MAX_SIZE( input_data->len ) );
|
|
|
|
ASSERT_ALLOC( output_data, output_size );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
|
|
|
|
|
|
|
test_driver_aead_hooks.forced_status = forced_status;
|
|
|
|
status = psa_aead_encrypt( key, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x, additional_data->len,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
output_data, output_size,
|
|
|
|
&output_length );
|
|
|
|
TEST_EQUAL( test_driver_aead_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( test_driver_aead_hooks.driver_status, forced_status );
|
|
|
|
|
|
|
|
TEST_EQUAL( status, ( forced_status == PSA_ERROR_NOT_SUPPORTED ) ?
|
|
|
|
PSA_SUCCESS : forced_status );
|
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
ASSERT_COMPARE( expected_result->x, expected_result->len,
|
|
|
|
output_data, output_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_destroy_key( key );
|
|
|
|
mbedtls_free( output_data );
|
|
|
|
PSA_DONE( );
|
|
|
|
test_driver_aead_hooks = test_driver_aead_hooks_init();
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void aead_decrypt( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *nonce,
|
|
|
|
data_t *additional_data,
|
|
|
|
data_t *input_data,
|
|
|
|
data_t *expected_data,
|
|
|
|
int forced_status_arg )
|
|
|
|
{
|
|
|
|
mbedtls_svc_key_id_t key = MBEDTLS_SVC_KEY_ID_INIT;
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t forced_status = forced_status_arg;
|
|
|
|
unsigned char *output_data = NULL;
|
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
|
|
|
size_t tag_length = PSA_AEAD_TAG_LENGTH( alg );
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
test_driver_aead_hooks = test_driver_aead_hooks_init();
|
|
|
|
|
|
|
|
output_size = input_data->len - tag_length;
|
|
|
|
ASSERT_ALLOC( output_data, output_size );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&key ) );
|
|
|
|
|
|
|
|
test_driver_aead_hooks.forced_status = forced_status;
|
|
|
|
status = psa_aead_decrypt( key, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x,
|
|
|
|
additional_data->len,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
output_data, output_size,
|
|
|
|
&output_length );
|
|
|
|
TEST_EQUAL( test_driver_aead_hooks.hits, 1 );
|
|
|
|
TEST_EQUAL( test_driver_aead_hooks.driver_status, forced_status );
|
|
|
|
|
|
|
|
TEST_EQUAL( status, ( forced_status == PSA_ERROR_NOT_SUPPORTED ) ?
|
|
|
|
PSA_SUCCESS : forced_status );
|
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
{
|
|
|
|
ASSERT_COMPARE( expected_data->x, expected_data->len,
|
|
|
|
output_data, output_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_destroy_key( key );
|
|
|
|
mbedtls_free( output_data );
|
|
|
|
PSA_DONE( );
|
|
|
|
test_driver_aead_hooks = test_driver_aead_hooks_init();
|
|
|
|
}
|
|
|
|
/* END_CASE */
|