2018-01-27 23:32:46 +01:00
|
|
|
/* BEGIN_HEADER */
|
2018-06-12 16:06:52 +02:00
|
|
|
#include <stdint.h>
|
2018-07-03 12:16:15 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SPM)
|
|
|
|
#include "spm/psa_defs.h"
|
|
|
|
#endif
|
|
|
|
|
2018-08-11 01:22:42 +02:00
|
|
|
#include "mbedtls/asn1.h"
|
2018-06-28 00:16:11 +02:00
|
|
|
#include "mbedtls/asn1write.h"
|
2018-08-11 01:22:42 +02:00
|
|
|
#include "mbedtls/oid.h"
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
#include "psa/crypto.h"
|
2018-06-12 16:06:52 +02:00
|
|
|
|
2018-06-27 18:20:43 +02:00
|
|
|
/** An invalid export length that will never be set by psa_export_key(). */
|
|
|
|
static const size_t INVALID_EXPORT_LENGTH = ~0U;
|
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
/* A hash algorithm that is known to be supported.
|
|
|
|
*
|
|
|
|
* This is used in some smoke tests.
|
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_MD2_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_MD2
|
|
|
|
#elif defined(MBEDTLS_MD4_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_MD4
|
|
|
|
#elif defined(MBEDTLS_MD5_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_MD5
|
|
|
|
/* MBEDTLS_RIPEMD160_C omitted. This is necessary for the sake of
|
|
|
|
* exercise_signature_key() because Mbed TLS doesn't support RIPEMD160
|
|
|
|
* in RSA PKCS#1v1.5 signatures. A RIPEMD160-only configuration would be
|
|
|
|
* implausible anyway. */
|
|
|
|
#elif defined(MBEDTLS_SHA1_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_SHA_1
|
|
|
|
#elif defined(MBEDTLS_SHA256_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_SHA_256
|
|
|
|
#elif defined(MBEDTLS_SHA512_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_SHA_384
|
|
|
|
#elif defined(MBEDTLS_SHA3_C)
|
|
|
|
#define KNOWN_SUPPORTED_HASH_ALG PSA_ALG_SHA3_256
|
|
|
|
#else
|
|
|
|
#undef KNOWN_SUPPORTED_HASH_ALG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* A block cipher that is known to be supported.
|
|
|
|
*
|
|
|
|
* For simplicity's sake, stick to block ciphers with 16-byte blocks.
|
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_AES_C)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER PSA_KEY_TYPE_AES
|
|
|
|
#elif defined(MBEDTLS_ARIA_C)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER PSA_KEY_TYPE_ARIA
|
|
|
|
#elif defined(MBEDTLS_CAMELLIA_C)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER PSA_KEY_TYPE_CAMELLIA
|
|
|
|
#undef KNOWN_SUPPORTED_BLOCK_CIPHER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* A MAC mode that is known to be supported.
|
|
|
|
*
|
|
|
|
* It must either be HMAC with #KNOWN_SUPPORTED_HASH_ALG or
|
|
|
|
* a block cipher-based MAC with #KNOWN_SUPPORTED_BLOCK_CIPHER.
|
|
|
|
*
|
|
|
|
* This is used in some smoke tests.
|
|
|
|
*/
|
|
|
|
#if defined(KNOWN_SUPPORTED_HASH_ALG)
|
|
|
|
#define KNOWN_SUPPORTED_MAC_ALG ( PSA_ALG_HMAC( KNOWN_SUPPORTED_HASH_ALG ) )
|
|
|
|
#define KNOWN_SUPPORTED_MAC_KEY_TYPE PSA_KEY_TYPE_HMAC
|
|
|
|
#elif defined(KNOWN_SUPPORTED_BLOCK_CIPHER) && defined(MBEDTLS_CMAC_C)
|
|
|
|
#define KNOWN_SUPPORTED_MAC_ALG PSA_ALG_CMAC
|
|
|
|
#define KNOWN_SUPPORTED_MAC_KEY_TYPE KNOWN_SUPPORTED_BLOCK_CIPHER
|
|
|
|
#else
|
|
|
|
#undef KNOWN_SUPPORTED_MAC_ALG
|
|
|
|
#undef KNOWN_SUPPORTED_MAC_KEY_TYPE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* A cipher algorithm and key type that are known to be supported.
|
|
|
|
*
|
|
|
|
* This is used in some smoke tests.
|
|
|
|
*/
|
|
|
|
#if defined(KNOWN_SUPPORTED_BLOCK_CIPHER) && defined(MBEDTLS_CIPHER_MODE_CTR)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER_ALG PSA_ALG_CTR
|
|
|
|
#elif defined(KNOWN_SUPPORTED_BLOCK_CIPHER) && defined(MBEDTLS_CIPHER_MODE_CBC)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER_ALG PSA_ALG_CBC_NO_PADDING
|
|
|
|
#elif defined(KNOWN_SUPPORTED_BLOCK_CIPHER) && defined(MBEDTLS_CIPHER_MODE_CFB)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER_ALG PSA_ALG_CFB
|
|
|
|
#elif defined(KNOWN_SUPPORTED_BLOCK_CIPHER) && defined(MBEDTLS_CIPHER_MODE_OFB)
|
|
|
|
#define KNOWN_SUPPORTED_BLOCK_CIPHER_ALG PSA_ALG_OFB
|
|
|
|
#else
|
|
|
|
#undef KNOWN_SUPPORTED_BLOCK_CIPHER_ALG
|
|
|
|
#endif
|
|
|
|
#if defined(KNOWN_SUPPORTED_BLOCK_CIPHER_ALG)
|
|
|
|
#define KNOWN_SUPPORTED_CIPHER_ALG KNOWN_SUPPORTED_BLOCK_CIPHER_ALG
|
|
|
|
#define KNOWN_SUPPORTED_CIPHER_KEY_TYPE KNOWN_SUPPORTED_BLOCK_CIPHER
|
|
|
|
#elif defined(MBEDTLS_RC4_C)
|
|
|
|
#define KNOWN_SUPPORTED_CIPHER_ALG PSA_ALG_RC4
|
|
|
|
#define KNOWN_SUPPORTED_CIPHER_KEY_TYPE PSA_KEY_TYPE_RC4
|
|
|
|
#else
|
|
|
|
#undef KNOWN_SUPPORTED_CIPHER_ALG
|
|
|
|
#undef KNOWN_SUPPORTED_CIPHER_KEY_TYPE
|
|
|
|
#endif
|
|
|
|
|
2018-08-14 15:17:54 +02:00
|
|
|
/** Test if a buffer contains a constant byte value.
|
|
|
|
*
|
|
|
|
* `mem_is_char(buffer, c, size)` is true after `memset(buffer, c, size)`.
|
2018-06-20 00:11:45 +02:00
|
|
|
*
|
|
|
|
* \param buffer Pointer to the beginning of the buffer.
|
2018-08-14 15:17:54 +02:00
|
|
|
* \param c Expected value of every byte.
|
2018-06-20 00:11:45 +02:00
|
|
|
* \param size Size of the buffer in bytes.
|
|
|
|
*
|
2018-06-21 09:21:51 +02:00
|
|
|
* \return 1 if the buffer is all-bits-zero.
|
|
|
|
* \return 0 if there is at least one nonzero byte.
|
2018-06-20 00:11:45 +02:00
|
|
|
*/
|
2018-08-14 15:17:54 +02:00
|
|
|
static int mem_is_char( void *buffer, unsigned char c, size_t size )
|
2018-06-20 00:11:45 +02:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for( i = 0; i < size; i++ )
|
|
|
|
{
|
2018-08-14 15:17:54 +02:00
|
|
|
if( ( (unsigned char *) buffer )[i] != c )
|
2018-06-21 09:21:51 +02:00
|
|
|
return( 0 );
|
2018-06-20 00:11:45 +02:00
|
|
|
}
|
2018-06-21 09:21:51 +02:00
|
|
|
return( 1 );
|
2018-06-20 00:11:45 +02:00
|
|
|
}
|
2018-06-20 18:16:48 +02:00
|
|
|
|
2018-06-28 00:16:11 +02:00
|
|
|
/* Write the ASN.1 INTEGER with the value 2^(bits-1)+x backwards from *p. */
|
|
|
|
static int asn1_write_10x( unsigned char **p,
|
|
|
|
unsigned char *start,
|
|
|
|
size_t bits,
|
|
|
|
unsigned char x )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int len = bits / 8 + 1;
|
2018-06-28 19:04:07 +02:00
|
|
|
if( bits == 0 )
|
|
|
|
return( MBEDTLS_ERR_ASN1_INVALID_DATA );
|
|
|
|
if( bits <= 8 && x >= 1 << ( bits - 1 ) )
|
2018-06-28 00:16:11 +02:00
|
|
|
return( MBEDTLS_ERR_ASN1_INVALID_DATA );
|
2018-07-17 16:36:59 +02:00
|
|
|
if( *p < start || *p - start < (ptrdiff_t) len )
|
2018-06-28 00:16:11 +02:00
|
|
|
return( MBEDTLS_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
*p -= len;
|
|
|
|
( *p )[len-1] = x;
|
|
|
|
if( bits % 8 == 0 )
|
|
|
|
( *p )[1] |= 1;
|
|
|
|
else
|
|
|
|
( *p )[0] |= 1 << ( bits % 8 );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, mbedtls_asn1_write_len( p, start, len ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, mbedtls_asn1_write_tag( p, start,
|
|
|
|
MBEDTLS_ASN1_INTEGER ) );
|
|
|
|
return( len );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int construct_fake_rsa_key( unsigned char *buffer,
|
|
|
|
size_t buffer_size,
|
|
|
|
unsigned char **p,
|
|
|
|
size_t bits,
|
|
|
|
int keypair )
|
|
|
|
{
|
|
|
|
size_t half_bits = ( bits + 1 ) / 2;
|
|
|
|
int ret;
|
|
|
|
int len = 0;
|
|
|
|
/* Construct something that looks like a DER encoding of
|
|
|
|
* as defined by PKCS#1 v2.2 (RFC 8017) section A.1.2:
|
|
|
|
* RSAPrivateKey ::= SEQUENCE {
|
|
|
|
* version Version,
|
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER, -- e
|
|
|
|
* privateExponent INTEGER, -- d
|
|
|
|
* prime1 INTEGER, -- p
|
|
|
|
* prime2 INTEGER, -- q
|
|
|
|
* exponent1 INTEGER, -- d mod (p-1)
|
|
|
|
* exponent2 INTEGER, -- d mod (q-1)
|
|
|
|
* coefficient INTEGER, -- (inverse of q) mod p
|
|
|
|
* otherPrimeInfos OtherPrimeInfos OPTIONAL
|
|
|
|
* }
|
|
|
|
* Or, for a public key, the same structure with only
|
|
|
|
* version, modulus and publicExponent.
|
|
|
|
*/
|
|
|
|
*p = buffer + buffer_size;
|
|
|
|
if( keypair )
|
|
|
|
{
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* pq */
|
|
|
|
asn1_write_10x( p, buffer, half_bits, 1 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* dq */
|
|
|
|
asn1_write_10x( p, buffer, half_bits, 1 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* dp */
|
|
|
|
asn1_write_10x( p, buffer, half_bits, 1 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* q */
|
|
|
|
asn1_write_10x( p, buffer, half_bits, 1 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* p != q to pass mbedtls sanity checks */
|
|
|
|
asn1_write_10x( p, buffer, half_bits, 3 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* d */
|
|
|
|
asn1_write_10x( p, buffer, bits, 1 ) );
|
|
|
|
}
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* e = 65537 */
|
|
|
|
asn1_write_10x( p, buffer, 17, 1 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* n */
|
|
|
|
asn1_write_10x( p, buffer, bits, 1 ) );
|
|
|
|
if( keypair )
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, /* version = 0 */
|
|
|
|
mbedtls_asn1_write_int( p, buffer, 0 ) );
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, mbedtls_asn1_write_len( p, buffer, len ) );
|
|
|
|
{
|
|
|
|
const unsigned char tag =
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE;
|
|
|
|
MBEDTLS_ASN1_CHK_ADD( len, mbedtls_asn1_write_tag( p, buffer, tag ) );
|
|
|
|
}
|
|
|
|
return( len );
|
|
|
|
}
|
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
int exercise_mac_setup( psa_key_type_t key_type,
|
|
|
|
const unsigned char *key_bytes,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
psa_status_t *status )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-02-25 17:42:03 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_bytes, key_length,
|
|
|
|
&handle ) );
|
2019-02-25 17:42:03 +01:00
|
|
|
|
|
|
|
*status = psa_mac_sign_setup( operation, handle, alg );
|
2019-02-25 22:11:18 +01:00
|
|
|
/* Whether setup succeeded or failed, abort must succeed. */
|
|
|
|
PSA_ASSERT( psa_mac_abort( operation ) );
|
|
|
|
/* If setup failed, reproduce the failure, so that the caller can
|
|
|
|
* test the resulting state of the operation object. */
|
|
|
|
if( *status != PSA_SUCCESS )
|
2019-02-25 17:42:03 +01:00
|
|
|
{
|
2019-02-25 22:11:18 +01:00
|
|
|
TEST_EQUAL( psa_mac_sign_setup( operation, handle, alg ),
|
|
|
|
*status );
|
2019-02-25 17:42:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int exercise_cipher_setup( psa_key_type_t key_type,
|
|
|
|
const unsigned char *key_bytes,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
psa_cipher_operation_t *operation,
|
|
|
|
psa_status_t *status )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-02-25 17:42:03 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_bytes, key_length,
|
|
|
|
&handle ) );
|
2019-02-25 17:42:03 +01:00
|
|
|
|
|
|
|
*status = psa_cipher_encrypt_setup( operation, handle, alg );
|
2019-02-25 22:11:18 +01:00
|
|
|
/* Whether setup succeeded or failed, abort must succeed. */
|
|
|
|
PSA_ASSERT( psa_cipher_abort( operation ) );
|
|
|
|
/* If setup failed, reproduce the failure, so that the caller can
|
|
|
|
* test the resulting state of the operation object. */
|
|
|
|
if( *status != PSA_SUCCESS )
|
2019-02-25 17:42:03 +01:00
|
|
|
{
|
2019-02-25 22:11:18 +01:00
|
|
|
TEST_EQUAL( psa_cipher_encrypt_setup( operation, handle, alg ),
|
|
|
|
*status );
|
2019-02-25 17:42:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_mac_key( psa_key_handle_t handle,
|
2018-06-20 18:16:48 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2019-01-04 12:48:03 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
2018-06-20 18:16:48 +02:00
|
|
|
const unsigned char input[] = "foo";
|
2018-06-28 00:07:19 +02:00
|
|
|
unsigned char mac[PSA_MAC_MAX_SIZE] = {0};
|
2018-06-20 18:16:48 +02:00
|
|
|
size_t mac_length = sizeof( mac );
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_SIGN )
|
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation,
|
|
|
|
input, sizeof( input ) ) );
|
|
|
|
PSA_ASSERT( psa_mac_sign_finish( &operation,
|
|
|
|
mac, sizeof( mac ),
|
|
|
|
&mac_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_VERIFY )
|
|
|
|
{
|
|
|
|
psa_status_t verify_status =
|
|
|
|
( usage & PSA_KEY_USAGE_SIGN ?
|
|
|
|
PSA_SUCCESS :
|
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_mac_verify_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation,
|
|
|
|
input, sizeof( input ) ) );
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_mac_verify_finish( &operation, mac, mac_length ),
|
|
|
|
verify_status );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_mac_abort( &operation );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_cipher_key( psa_key_handle_t handle,
|
2018-06-20 18:16:48 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2018-06-20 18:16:48 +02:00
|
|
|
unsigned char iv[16] = {0};
|
|
|
|
size_t iv_length = sizeof( iv );
|
|
|
|
const unsigned char plaintext[16] = "Hello, world...";
|
|
|
|
unsigned char ciphertext[32] = "(wabblewebblewibblewobblewubble)";
|
|
|
|
size_t ciphertext_length = sizeof( ciphertext );
|
|
|
|
unsigned char decrypted[sizeof( ciphertext )];
|
|
|
|
size_t part_length;
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_ENCRYPT )
|
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_generate_iv( &operation,
|
|
|
|
iv, sizeof( iv ),
|
|
|
|
&iv_length ) );
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
plaintext, sizeof( plaintext ),
|
|
|
|
ciphertext, sizeof( ciphertext ),
|
|
|
|
&ciphertext_length ) );
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
|
|
|
ciphertext + ciphertext_length,
|
|
|
|
sizeof( ciphertext ) - ciphertext_length,
|
|
|
|
&part_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
ciphertext_length += part_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DECRYPT )
|
|
|
|
{
|
|
|
|
psa_status_t status;
|
2019-04-18 21:44:46 +02:00
|
|
|
int maybe_invalid_padding = 0;
|
2018-06-20 18:16:48 +02:00
|
|
|
if( ! ( usage & PSA_KEY_USAGE_ENCRYPT ) )
|
|
|
|
{
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
/* This should be PSA_CIPHER_GET_IV_SIZE but the API doesn't
|
|
|
|
* have this macro yet. */
|
|
|
|
iv_length = PSA_BLOCK_CIPHER_BLOCK_SIZE(
|
|
|
|
psa_get_key_type( &attributes ) );
|
|
|
|
maybe_invalid_padding = ! PSA_ALG_IS_STREAM_CIPHER( alg );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation,
|
|
|
|
iv, iv_length ) );
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
ciphertext, ciphertext_length,
|
|
|
|
decrypted, sizeof( decrypted ),
|
|
|
|
&part_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
status = psa_cipher_finish( &operation,
|
|
|
|
decrypted + part_length,
|
|
|
|
sizeof( decrypted ) - part_length,
|
|
|
|
&part_length );
|
|
|
|
/* For a stream cipher, all inputs are valid. For a block cipher,
|
|
|
|
* if the input is some aribtrary data rather than an actual
|
|
|
|
ciphertext, a padding error is likely. */
|
2019-04-18 21:44:46 +02:00
|
|
|
if( maybe_invalid_padding )
|
2018-06-20 18:16:48 +02:00
|
|
|
TEST_ASSERT( status == PSA_SUCCESS ||
|
|
|
|
status == PSA_ERROR_INVALID_PADDING );
|
2019-04-18 21:44:46 +02:00
|
|
|
else
|
|
|
|
PSA_ASSERT( status );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_aead_key( psa_key_handle_t handle,
|
2018-06-20 18:16:48 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
unsigned char nonce[16] = {0};
|
|
|
|
size_t nonce_length = sizeof( nonce );
|
|
|
|
unsigned char plaintext[16] = "Hello, world...";
|
|
|
|
unsigned char ciphertext[48] = "(wabblewebblewibblewobblewubble)";
|
|
|
|
size_t ciphertext_length = sizeof( ciphertext );
|
|
|
|
size_t plaintext_length = sizeof( ciphertext );
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_ENCRYPT )
|
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_aead_encrypt( handle, alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
NULL, 0,
|
|
|
|
plaintext, sizeof( plaintext ),
|
|
|
|
ciphertext, sizeof( ciphertext ),
|
|
|
|
&ciphertext_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DECRYPT )
|
|
|
|
{
|
|
|
|
psa_status_t verify_status =
|
|
|
|
( usage & PSA_KEY_USAGE_ENCRYPT ?
|
|
|
|
PSA_SUCCESS :
|
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_aead_decrypt( handle, alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
NULL, 0,
|
|
|
|
ciphertext, ciphertext_length,
|
|
|
|
plaintext, sizeof( plaintext ),
|
2018-12-18 00:33:25 +01:00
|
|
|
&plaintext_length ),
|
|
|
|
verify_status );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_signature_key( psa_key_handle_t handle,
|
2018-06-20 18:16:48 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2018-06-30 00:20:25 +02:00
|
|
|
unsigned char payload[PSA_HASH_MAX_SIZE] = {1};
|
|
|
|
size_t payload_length = 16;
|
2018-06-28 00:07:19 +02:00
|
|
|
unsigned char signature[PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE] = {0};
|
2018-06-20 18:16:48 +02:00
|
|
|
size_t signature_length = sizeof( signature );
|
2019-01-28 13:03:09 +01:00
|
|
|
psa_algorithm_t hash_alg = PSA_ALG_SIGN_GET_HASH( alg );
|
|
|
|
|
|
|
|
/* If the policy allows signing with any hash, just pick one. */
|
|
|
|
if( PSA_ALG_IS_HASH_AND_SIGN( alg ) && hash_alg == PSA_ALG_ANY_HASH )
|
|
|
|
{
|
2019-02-25 17:42:03 +01:00
|
|
|
#if defined(KNOWN_SUPPORTED_HASH_ALG)
|
|
|
|
hash_alg = KNOWN_SUPPORTED_HASH_ALG;
|
|
|
|
alg ^= PSA_ALG_ANY_HASH ^ hash_alg;
|
2019-01-28 13:03:09 +01:00
|
|
|
#else
|
|
|
|
test_fail( "No hash algorithm for hash-and-sign testing", __LINE__, __FILE__ );
|
2019-02-25 17:42:03 +01:00
|
|
|
return( 1 );
|
2019-01-28 13:03:09 +01:00
|
|
|
#endif
|
|
|
|
}
|
2018-06-20 18:16:48 +02:00
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_SIGN )
|
|
|
|
{
|
2018-06-30 00:20:25 +02:00
|
|
|
/* Some algorithms require the payload to have the size of
|
|
|
|
* the hash encoded in the algorithm. Use this input size
|
|
|
|
* even for algorithms that allow other input sizes. */
|
|
|
|
if( hash_alg != 0 )
|
|
|
|
payload_length = PSA_HASH_SIZE( hash_alg );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_sign( handle, alg,
|
|
|
|
payload, payload_length,
|
|
|
|
signature, sizeof( signature ),
|
|
|
|
&signature_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_VERIFY )
|
|
|
|
{
|
|
|
|
psa_status_t verify_status =
|
|
|
|
( usage & PSA_KEY_USAGE_SIGN ?
|
|
|
|
PSA_SUCCESS :
|
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_asymmetric_verify( handle, alg,
|
|
|
|
payload, payload_length,
|
|
|
|
signature, signature_length ),
|
|
|
|
verify_status );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_asymmetric_encryption_key( psa_key_handle_t handle,
|
2018-06-20 18:16:48 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
unsigned char plaintext[256] = "Hello, world...";
|
|
|
|
unsigned char ciphertext[256] = "(wabblewebblewibblewobblewubble)";
|
|
|
|
size_t ciphertext_length = sizeof( ciphertext );
|
|
|
|
size_t plaintext_length = 16;
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_ENCRYPT )
|
|
|
|
{
|
2018-12-18 00:33:25 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_encrypt( handle, alg,
|
|
|
|
plaintext, plaintext_length,
|
|
|
|
NULL, 0,
|
|
|
|
ciphertext, sizeof( ciphertext ),
|
|
|
|
&ciphertext_length ) );
|
2018-06-20 18:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DECRYPT )
|
|
|
|
{
|
|
|
|
psa_status_t status =
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_asymmetric_decrypt( handle, alg,
|
2018-06-20 18:16:48 +02:00
|
|
|
ciphertext, ciphertext_length,
|
|
|
|
NULL, 0,
|
|
|
|
plaintext, sizeof( plaintext ),
|
|
|
|
&plaintext_length );
|
|
|
|
TEST_ASSERT( status == PSA_SUCCESS ||
|
|
|
|
( ( usage & PSA_KEY_USAGE_ENCRYPT ) == 0 &&
|
|
|
|
( status == PSA_ERROR_INVALID_ARGUMENT ||
|
|
|
|
status == PSA_ERROR_INVALID_PADDING ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
2018-07-01 22:31:34 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_key_derivation_key( psa_key_handle_t handle,
|
2018-07-12 17:17:20 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-07-12 17:17:20 +02:00
|
|
|
unsigned char label[16] = "This is a label.";
|
|
|
|
size_t label_length = sizeof( label );
|
|
|
|
unsigned char seed[16] = "abcdefghijklmnop";
|
|
|
|
size_t seed_length = sizeof( seed );
|
|
|
|
unsigned char output[1];
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DERIVE )
|
|
|
|
{
|
2019-01-07 22:59:38 +01:00
|
|
|
if( PSA_ALG_IS_HKDF( alg ) )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SALT,
|
2019-01-07 22:59:38 +01:00
|
|
|
label,
|
|
|
|
label_length ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_key( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET,
|
2019-01-07 22:59:38 +01:00
|
|
|
handle ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-01-07 22:59:38 +01:00
|
|
|
seed,
|
|
|
|
seed_length ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// legacy
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation,
|
2019-01-07 22:59:38 +01:00
|
|
|
handle, alg,
|
|
|
|
label, label_length,
|
|
|
|
seed, seed_length,
|
|
|
|
sizeof( output ) ) );
|
|
|
|
}
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output,
|
|
|
|
sizeof( output ) ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-07-12 17:17:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-11-07 18:45:02 +01:00
|
|
|
/* We need two keys to exercise key agreement. Exercise the
|
|
|
|
* private key against its own public key. */
|
2019-05-16 17:53:40 +02:00
|
|
|
static psa_status_t key_agreement_with_self(
|
|
|
|
psa_key_derivation_operation_t *operation,
|
|
|
|
psa_key_handle_t handle )
|
2018-09-18 12:01:02 +02:00
|
|
|
{
|
2018-11-07 18:45:02 +01:00
|
|
|
psa_key_type_t private_key_type;
|
2018-09-18 12:01:02 +02:00
|
|
|
psa_key_type_t public_key_type;
|
|
|
|
size_t key_bits;
|
|
|
|
uint8_t *public_key = NULL;
|
|
|
|
size_t public_key_length;
|
2019-02-14 12:48:10 +01:00
|
|
|
/* Return GENERIC_ERROR if something other than the final call to
|
2019-05-16 17:53:40 +02:00
|
|
|
* psa_key_derivation_key_agreement fails. This isn't fully satisfactory,
|
|
|
|
* but it's good enough: callers will report it as a failed test anyway. */
|
2019-02-14 12:48:10 +01:00
|
|
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-11-07 18:45:02 +01:00
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
private_key_type = psa_get_key_type( &attributes );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-11-07 18:45:02 +01:00
|
|
|
public_key_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR( private_key_type );
|
|
|
|
public_key_length = PSA_KEY_EXPORT_MAX_SIZE( public_key_type, key_bits );
|
|
|
|
ASSERT_ALLOC( public_key, public_key_length );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_public_key( handle,
|
|
|
|
public_key, public_key_length,
|
|
|
|
&public_key_length ) );
|
2018-11-07 18:45:02 +01:00
|
|
|
|
2019-05-16 17:53:40 +02:00
|
|
|
status = psa_key_derivation_key_agreement(
|
|
|
|
operation, PSA_KEY_DERIVATION_INPUT_SECRET, handle,
|
|
|
|
public_key, public_key_length );
|
2018-11-07 18:45:02 +01:00
|
|
|
exit:
|
|
|
|
mbedtls_free( public_key );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-11-07 18:45:02 +01:00
|
|
|
return( status );
|
|
|
|
}
|
|
|
|
|
2019-04-11 21:24:55 +02:00
|
|
|
/* We need two keys to exercise key agreement. Exercise the
|
|
|
|
* private key against its own public key. */
|
|
|
|
static psa_status_t raw_key_agreement_with_self( psa_algorithm_t alg,
|
|
|
|
psa_key_handle_t handle )
|
|
|
|
{
|
|
|
|
psa_key_type_t private_key_type;
|
|
|
|
psa_key_type_t public_key_type;
|
|
|
|
size_t key_bits;
|
|
|
|
uint8_t *public_key = NULL;
|
|
|
|
size_t public_key_length;
|
|
|
|
uint8_t output[1024];
|
|
|
|
size_t output_length;
|
|
|
|
/* Return GENERIC_ERROR if something other than the final call to
|
2019-05-16 17:53:40 +02:00
|
|
|
* psa_key_derivation_key_agreement fails. This isn't fully satisfactory,
|
|
|
|
* but it's good enough: callers will report it as a failed test anyway. */
|
2019-04-11 21:24:55 +02:00
|
|
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-11 21:24:55 +02:00
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
private_key_type = psa_get_key_type( &attributes );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2019-04-11 21:24:55 +02:00
|
|
|
public_key_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR( private_key_type );
|
|
|
|
public_key_length = PSA_KEY_EXPORT_MAX_SIZE( public_key_type, key_bits );
|
|
|
|
ASSERT_ALLOC( public_key, public_key_length );
|
|
|
|
PSA_ASSERT( psa_export_public_key( handle,
|
|
|
|
public_key, public_key_length,
|
|
|
|
&public_key_length ) );
|
|
|
|
|
2019-05-16 18:00:41 +02:00
|
|
|
status = psa_raw_key_agreement( alg, handle,
|
|
|
|
public_key, public_key_length,
|
|
|
|
output, sizeof( output ), &output_length );
|
2019-04-11 21:24:55 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_free( public_key );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2019-04-11 21:24:55 +02:00
|
|
|
return( status );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int exercise_raw_key_agreement_key( psa_key_handle_t handle,
|
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DERIVE )
|
|
|
|
{
|
|
|
|
/* We need two keys to exercise key agreement. Exercise the
|
|
|
|
* private key against its own public key. */
|
|
|
|
PSA_ASSERT( raw_key_agreement_with_self( alg, handle ) );
|
|
|
|
}
|
|
|
|
ok = 1;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_key_agreement_key( psa_key_handle_t handle,
|
2018-11-07 18:45:02 +01:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-09-18 12:01:02 +02:00
|
|
|
unsigned char output[1];
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if( usage & PSA_KEY_USAGE_DERIVE )
|
|
|
|
{
|
|
|
|
/* We need two keys to exercise key agreement. Exercise the
|
|
|
|
* private key against its own public key. */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( key_agreement_with_self( &operation, handle ) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output,
|
|
|
|
sizeof( output ) ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-09-18 12:01:02 +02:00
|
|
|
}
|
|
|
|
ok = 1;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2018-08-11 01:22:42 +02:00
|
|
|
static int is_oid_of_key_type( psa_key_type_t type,
|
|
|
|
const uint8_t *oid, size_t oid_length )
|
|
|
|
{
|
2018-08-13 14:14:22 +02:00
|
|
|
const uint8_t *expected_oid = NULL;
|
|
|
|
size_t expected_oid_length = 0;
|
2018-08-11 01:22:42 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2018-08-13 14:14:22 +02:00
|
|
|
if( PSA_KEY_TYPE_IS_RSA( type ) )
|
|
|
|
{
|
|
|
|
expected_oid = (uint8_t *) MBEDTLS_OID_PKCS1_RSA;
|
|
|
|
expected_oid_length = sizeof( MBEDTLS_OID_PKCS1_RSA ) - 1;
|
|
|
|
}
|
|
|
|
else
|
2018-08-11 01:22:42 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2018-08-13 14:14:22 +02:00
|
|
|
if( PSA_KEY_TYPE_IS_ECC( type ) )
|
|
|
|
{
|
|
|
|
expected_oid = (uint8_t *) MBEDTLS_OID_EC_ALG_UNRESTRICTED;
|
|
|
|
expected_oid_length = sizeof( MBEDTLS_OID_EC_ALG_UNRESTRICTED ) - 1;
|
|
|
|
}
|
|
|
|
else
|
2018-08-11 01:22:42 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|
|
|
|
{
|
|
|
|
char message[40];
|
|
|
|
mbedtls_snprintf( message, sizeof( message ),
|
|
|
|
"OID not known for key type=0x%08lx",
|
|
|
|
(unsigned long) type );
|
|
|
|
test_fail( message, __LINE__, __FILE__ );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_oid, expected_oid_length, oid, oid_length );
|
2018-08-11 01:22:42 +02:00
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int asn1_skip_integer( unsigned char **p, const unsigned char *end,
|
|
|
|
size_t min_bits, size_t max_bits,
|
|
|
|
int must_be_odd )
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
size_t actual_bits;
|
|
|
|
unsigned char msb;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( mbedtls_asn1_get_tag( p, end, &len,
|
2018-12-18 00:33:25 +01:00
|
|
|
MBEDTLS_ASN1_INTEGER ),
|
|
|
|
0 );
|
2018-08-11 01:22:42 +02:00
|
|
|
/* Tolerate a slight departure from DER encoding:
|
|
|
|
* - 0 may be represented by an empty string or a 1-byte string.
|
|
|
|
* - The sign bit may be used as a value bit. */
|
|
|
|
if( ( len == 1 && ( *p )[0] == 0 ) ||
|
|
|
|
( len > 1 && ( *p )[0] == 0 && ( ( *p )[1] & 0x80 ) != 0 ) )
|
|
|
|
{
|
|
|
|
++( *p );
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
if( min_bits == 0 && len == 0 )
|
|
|
|
return( 1 );
|
|
|
|
msb = ( *p )[0];
|
|
|
|
TEST_ASSERT( msb != 0 );
|
|
|
|
actual_bits = 8 * ( len - 1 );
|
|
|
|
while( msb != 0 )
|
|
|
|
{
|
|
|
|
msb >>= 1;
|
|
|
|
++actual_bits;
|
|
|
|
}
|
|
|
|
TEST_ASSERT( actual_bits >= min_bits );
|
|
|
|
TEST_ASSERT( actual_bits <= max_bits );
|
|
|
|
if( must_be_odd )
|
|
|
|
TEST_ASSERT( ( ( *p )[len-1] & 1 ) != 0 );
|
|
|
|
*p += len;
|
|
|
|
return( 1 );
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int asn1_get_implicit_tag( unsigned char **p, const unsigned char *end,
|
|
|
|
size_t *len,
|
|
|
|
unsigned char n, unsigned char tag )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = mbedtls_asn1_get_tag( p, end, len,
|
|
|
|
MBEDTLS_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | ( n ) );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
end = *p + *len;
|
|
|
|
ret = mbedtls_asn1_get_tag( p, end, len, tag );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
if( *p + *len != end )
|
|
|
|
return( MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int exported_key_sanity_check( psa_key_type_t type, size_t bits,
|
|
|
|
uint8_t *exported, size_t exported_length )
|
2018-08-10 19:07:32 +02:00
|
|
|
{
|
2018-08-11 01:22:42 +02:00
|
|
|
if( PSA_KEY_TYPE_IS_UNSTRUCTURED( type ) )
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( exported_length, ( bits + 7 ) / 8 );
|
2018-08-11 01:22:42 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( exported_length <= PSA_KEY_EXPORT_MAX_SIZE( type, bits ) );
|
2018-08-10 19:07:32 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_DES_C)
|
|
|
|
if( type == PSA_KEY_TYPE_DES )
|
|
|
|
{
|
|
|
|
/* Check the parity bits. */
|
|
|
|
unsigned i;
|
|
|
|
for( i = 0; i < bits / 8; i++ )
|
|
|
|
{
|
|
|
|
unsigned bit_count = 0;
|
|
|
|
unsigned m;
|
|
|
|
for( m = 1; m <= 0x100; m <<= 1 )
|
|
|
|
{
|
|
|
|
if( exported[i] & m )
|
|
|
|
++bit_count;
|
|
|
|
}
|
|
|
|
TEST_ASSERT( bit_count % 2 != 0 );
|
|
|
|
}
|
|
|
|
}
|
2018-08-11 01:22:42 +02:00
|
|
|
else
|
2018-08-10 19:07:32 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_PK_PARSE_C)
|
|
|
|
if( type == PSA_KEY_TYPE_RSA_KEYPAIR )
|
|
|
|
{
|
2018-08-11 01:22:42 +02:00
|
|
|
uint8_t *p = exported;
|
|
|
|
uint8_t *end = exported + exported_length;
|
|
|
|
size_t len;
|
|
|
|
/* RSAPrivateKey ::= SEQUENCE {
|
2018-08-21 16:12:54 +02:00
|
|
|
* version INTEGER, -- must be 0
|
2018-08-11 01:22:42 +02:00
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER, -- e
|
|
|
|
* privateExponent INTEGER, -- d
|
|
|
|
* prime1 INTEGER, -- p
|
|
|
|
* prime2 INTEGER, -- q
|
|
|
|
* exponent1 INTEGER, -- d mod (p-1)
|
|
|
|
* exponent2 INTEGER, -- d mod (q-1)
|
|
|
|
* coefficient INTEGER, -- (inverse of q) mod p
|
|
|
|
* }
|
|
|
|
*/
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( mbedtls_asn1_get_tag( &p, end, &len,
|
|
|
|
MBEDTLS_ASN1_SEQUENCE |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED ), 0 );
|
|
|
|
TEST_EQUAL( p + len, end );
|
2018-08-11 01:22:42 +02:00
|
|
|
if( ! asn1_skip_integer( &p, end, 0, 0, 0 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, bits, bits, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, 2, bits, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
/* Require d to be at least half the size of n. */
|
|
|
|
if( ! asn1_skip_integer( &p, end, bits / 2, bits, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
/* Require p and q to be at most half the size of n, rounded up. */
|
|
|
|
if( ! asn1_skip_integer( &p, end, bits / 2, bits / 2 + 1, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, bits / 2, bits / 2 + 1, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, 1, bits / 2 + 1, 0 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, 1, bits / 2 + 1, 0 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, 1, bits / 2 + 1, 0 ) )
|
|
|
|
goto exit;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( p, end );
|
2018-12-17 23:35:42 +01:00
|
|
|
}
|
2018-08-11 01:22:42 +02:00
|
|
|
else
|
2018-08-10 19:07:32 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
if( PSA_KEY_TYPE_IS_ECC_KEYPAIR( type ) )
|
|
|
|
{
|
2018-10-29 19:21:41 +01:00
|
|
|
/* Just the secret value */
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( exported_length, PSA_BITS_TO_BYTES( bits ) );
|
2018-10-29 19:21:41 +01:00
|
|
|
}
|
2018-08-11 01:22:42 +02:00
|
|
|
else
|
2018-08-10 19:07:32 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|
|
|
|
|
2018-08-11 01:22:42 +02:00
|
|
|
if( PSA_KEY_TYPE_IS_PUBLIC_KEY( type ) )
|
|
|
|
{
|
|
|
|
uint8_t *p = exported;
|
|
|
|
uint8_t *end = exported + exported_length;
|
|
|
|
size_t len;
|
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
if( type == PSA_KEY_TYPE_RSA_PUBLIC_KEY )
|
|
|
|
{
|
|
|
|
/* RSAPublicKey ::= SEQUENCE {
|
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER } -- e
|
|
|
|
*/
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( mbedtls_asn1_get_tag( &p, end, &len,
|
|
|
|
MBEDTLS_ASN1_SEQUENCE |
|
2018-12-18 00:33:25 +01:00
|
|
|
MBEDTLS_ASN1_CONSTRUCTED ),
|
|
|
|
0 );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( p + len, end );
|
2018-08-11 01:22:42 +02:00
|
|
|
if( ! asn1_skip_integer( &p, end, bits, bits, 1 ) )
|
|
|
|
goto exit;
|
|
|
|
if( ! asn1_skip_integer( &p, end, 2, bits, 1 ) )
|
|
|
|
goto exit;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( p, end );
|
2018-08-11 01:22:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
if( PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY( type ) )
|
|
|
|
{
|
2019-01-10 12:42:27 +01:00
|
|
|
/* The representation of an ECC public key is:
|
|
|
|
* - The byte 0x04;
|
|
|
|
* - `x_P` as a `ceiling(m/8)`-byte string, big-endian;
|
|
|
|
* - `y_P` as a `ceiling(m/8)`-byte string, big-endian;
|
|
|
|
* - where m is the bit size associated with the curve.
|
2019-01-10 11:23:21 +01:00
|
|
|
*/
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( p + 1 + 2 * PSA_BITS_TO_BYTES( bits ), end );
|
|
|
|
TEST_EQUAL( p[0], 4 );
|
2018-08-11 01:22:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBEDTLS_ECP_C */
|
|
|
|
{
|
2018-10-26 18:07:22 +02:00
|
|
|
char message[47];
|
2018-08-11 01:22:42 +02:00
|
|
|
mbedtls_snprintf( message, sizeof( message ),
|
|
|
|
"No sanity check for public key type=0x%08lx",
|
|
|
|
(unsigned long) type );
|
|
|
|
test_fail( message, __LINE__, __FILE__ );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
/* No sanity checks for other types */
|
|
|
|
}
|
2018-08-10 19:07:32 +02:00
|
|
|
|
|
|
|
return( 1 );
|
2018-08-11 01:22:42 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return( 0 );
|
2018-08-10 19:07:32 +02:00
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_export_key( psa_key_handle_t handle,
|
2018-08-10 19:07:32 +02:00
|
|
|
psa_key_usage_t usage )
|
|
|
|
{
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-08-10 19:07:32 +02:00
|
|
|
uint8_t *exported = NULL;
|
|
|
|
size_t exported_size = 0;
|
|
|
|
size_t exported_length = 0;
|
|
|
|
int ok = 0;
|
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
2018-09-13 20:34:11 +02:00
|
|
|
|
|
|
|
if( ( usage & PSA_KEY_USAGE_EXPORT ) == 0 &&
|
2019-04-18 21:44:46 +02:00
|
|
|
! PSA_KEY_TYPE_IS_PUBLIC_KEY( psa_get_key_type( &attributes ) ) )
|
2018-08-10 19:07:32 +02:00
|
|
|
{
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_export_key( handle, NULL, 0, &exported_length ),
|
|
|
|
PSA_ERROR_NOT_PERMITTED );
|
2019-04-26 16:03:33 +02:00
|
|
|
ok = 1;
|
|
|
|
goto exit;
|
2018-08-10 19:07:32 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
exported_size = PSA_KEY_EXPORT_MAX_SIZE( psa_get_key_type( &attributes ),
|
|
|
|
psa_get_key_bits( &attributes ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( exported, exported_size );
|
2018-08-10 19:07:32 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_key( handle,
|
|
|
|
exported, exported_size,
|
|
|
|
&exported_length ) );
|
2019-04-18 21:44:46 +02:00
|
|
|
ok = exported_key_sanity_check( psa_get_key_type( &attributes ),
|
|
|
|
psa_get_key_bits( &attributes ),
|
|
|
|
exported, exported_length );
|
2018-08-10 19:07:32 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( exported );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-08-10 19:07:32 +02:00
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_export_public_key( psa_key_handle_t handle )
|
2018-08-10 19:07:32 +02:00
|
|
|
{
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-08-10 19:07:32 +02:00
|
|
|
psa_key_type_t public_type;
|
|
|
|
uint8_t *exported = NULL;
|
|
|
|
size_t exported_size = 0;
|
|
|
|
size_t exported_length = 0;
|
|
|
|
int ok = 0;
|
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
if( ! PSA_KEY_TYPE_IS_ASYMMETRIC( psa_get_key_type( &attributes ) ) )
|
2018-08-10 19:07:32 +02:00
|
|
|
{
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_export_public_key( handle, NULL, 0, &exported_length ),
|
2018-12-18 00:24:04 +01:00
|
|
|
PSA_ERROR_INVALID_ARGUMENT );
|
2018-08-10 19:07:32 +02:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
public_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(
|
|
|
|
psa_get_key_type( &attributes ) );
|
|
|
|
exported_size = PSA_KEY_EXPORT_MAX_SIZE( public_type,
|
|
|
|
psa_get_key_bits( &attributes ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( exported, exported_size );
|
2018-08-10 19:07:32 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_public_key( handle,
|
|
|
|
exported, exported_size,
|
|
|
|
&exported_length ) );
|
2019-04-18 21:44:46 +02:00
|
|
|
ok = exported_key_sanity_check( public_type,
|
|
|
|
psa_get_key_bits( &attributes ),
|
2018-08-10 19:07:32 +02:00
|
|
|
exported, exported_length );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( exported );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-08-10 19:07:32 +02:00
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2019-02-05 20:32:06 +01:00
|
|
|
/** Do smoke tests on a key.
|
|
|
|
*
|
|
|
|
* Perform one of each operation indicated by \p alg (decrypt/encrypt,
|
|
|
|
* sign/verify, or derivation) that is permitted according to \p usage.
|
|
|
|
* \p usage and \p alg should correspond to the expected policy on the
|
|
|
|
* key.
|
|
|
|
*
|
|
|
|
* Export the key if permitted by \p usage, and check that the output
|
|
|
|
* looks sensible. If \p usage forbids export, check that
|
|
|
|
* \p psa_export_key correctly rejects the attempt. If the key is
|
|
|
|
* asymmetric, also check \p psa_export_public_key.
|
|
|
|
*
|
|
|
|
* If the key fails the tests, this function calls the test framework's
|
|
|
|
* `test_fail` function and returns false. Otherwise this function returns
|
|
|
|
* true. Therefore it should be used as follows:
|
|
|
|
* ```
|
|
|
|
* if( ! exercise_key( ... ) ) goto exit;
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* \param handle The key to exercise. It should be capable of performing
|
|
|
|
* \p alg.
|
|
|
|
* \param usage The usage flags to assume.
|
|
|
|
* \param alg The algorithm to exercise.
|
|
|
|
*
|
|
|
|
* \retval 0 The key failed the smoke tests.
|
|
|
|
* \retval 1 The key passed the smoke tests.
|
|
|
|
*/
|
2018-12-03 15:36:32 +01:00
|
|
|
static int exercise_key( psa_key_handle_t handle,
|
2018-07-01 22:31:34 +02:00
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
int ok;
|
|
|
|
if( alg == 0 )
|
|
|
|
ok = 1; /* If no algorihm, do nothing (used for raw data "keys"). */
|
|
|
|
else if( PSA_ALG_IS_MAC( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_mac_key( handle, usage, alg );
|
2018-07-01 22:31:34 +02:00
|
|
|
else if( PSA_ALG_IS_CIPHER( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_cipher_key( handle, usage, alg );
|
2018-07-01 22:31:34 +02:00
|
|
|
else if( PSA_ALG_IS_AEAD( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_aead_key( handle, usage, alg );
|
2018-07-01 22:31:34 +02:00
|
|
|
else if( PSA_ALG_IS_SIGN( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_signature_key( handle, usage, alg );
|
2018-07-01 22:31:34 +02:00
|
|
|
else if( PSA_ALG_IS_ASYMMETRIC_ENCRYPTION( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_asymmetric_encryption_key( handle, usage, alg );
|
2018-07-12 17:17:20 +02:00
|
|
|
else if( PSA_ALG_IS_KEY_DERIVATION( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_key_derivation_key( handle, usage, alg );
|
2019-04-11 21:24:55 +02:00
|
|
|
else if( PSA_ALG_IS_RAW_KEY_AGREEMENT( alg ) )
|
|
|
|
ok = exercise_raw_key_agreement_key( handle, usage, alg );
|
2018-09-18 12:01:02 +02:00
|
|
|
else if( PSA_ALG_IS_KEY_AGREEMENT( alg ) )
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = exercise_key_agreement_key( handle, usage, alg );
|
2018-07-01 22:31:34 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
char message[40];
|
|
|
|
mbedtls_snprintf( message, sizeof( message ),
|
|
|
|
"No code to exercise alg=0x%08lx",
|
|
|
|
(unsigned long) alg );
|
|
|
|
test_fail( message, __LINE__, __FILE__ );
|
|
|
|
ok = 0;
|
|
|
|
}
|
2018-08-10 19:07:32 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
ok = ok && exercise_export_key( handle, usage );
|
|
|
|
ok = ok && exercise_export_public_key( handle );
|
2018-08-10 19:07:32 +02:00
|
|
|
|
2018-07-01 22:31:34 +02:00
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2018-10-25 22:35:43 +02:00
|
|
|
static psa_key_usage_t usage_to_exercise( psa_key_type_t type,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
if( PSA_ALG_IS_MAC( alg ) || PSA_ALG_IS_SIGN( alg ) )
|
|
|
|
{
|
|
|
|
return( PSA_KEY_TYPE_IS_PUBLIC_KEY( type ) ?
|
|
|
|
PSA_KEY_USAGE_VERIFY :
|
|
|
|
PSA_KEY_USAGE_SIGN | PSA_KEY_USAGE_VERIFY );
|
|
|
|
}
|
|
|
|
else if( PSA_ALG_IS_CIPHER( alg ) || PSA_ALG_IS_AEAD( alg ) ||
|
|
|
|
PSA_ALG_IS_ASYMMETRIC_ENCRYPTION( alg ) )
|
|
|
|
{
|
|
|
|
return( PSA_KEY_TYPE_IS_PUBLIC_KEY( type ) ?
|
|
|
|
PSA_KEY_USAGE_ENCRYPT :
|
|
|
|
PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT );
|
|
|
|
}
|
|
|
|
else if( PSA_ALG_IS_KEY_DERIVATION( alg ) ||
|
|
|
|
PSA_ALG_IS_KEY_AGREEMENT( alg ) )
|
|
|
|
{
|
|
|
|
return( PSA_KEY_USAGE_DERIVE );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-11-07 17:05:30 +01:00
|
|
|
|
2019-04-18 22:28:52 +02:00
|
|
|
static int test_operations_on_invalid_handle( psa_key_handle_t handle )
|
|
|
|
{
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
uint8_t buffer[1];
|
|
|
|
size_t length;
|
|
|
|
int ok = 0;
|
|
|
|
|
2019-05-15 16:12:22 +02:00
|
|
|
psa_set_key_id( &attributes, 0x6964 );
|
2019-04-18 22:28:52 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, PSA_ALG_CTR );
|
|
|
|
psa_set_key_type( &attributes, PSA_KEY_TYPE_AES );
|
|
|
|
TEST_EQUAL( psa_get_key_attributes( handle, &attributes ),
|
|
|
|
PSA_ERROR_INVALID_HANDLE );
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), 0 );
|
2019-04-19 14:06:53 +02:00
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ), 0 );
|
2019-04-18 22:28:52 +02:00
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), 0 );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_export_key( handle,
|
|
|
|
buffer, sizeof( buffer ), &length ),
|
|
|
|
PSA_ERROR_INVALID_HANDLE );
|
|
|
|
TEST_EQUAL( psa_export_public_key( handle,
|
|
|
|
buffer, sizeof( buffer ), &length ),
|
|
|
|
PSA_ERROR_INVALID_HANDLE );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_close_key( handle ), PSA_ERROR_INVALID_HANDLE );
|
|
|
|
TEST_EQUAL( psa_destroy_key( handle ), PSA_ERROR_INVALID_HANDLE );
|
|
|
|
|
|
|
|
ok = 1;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
|
|
|
return( ok );
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
/* An overapproximation of the amount of storage needed for a key of the
|
|
|
|
* given type and with the given content. The API doesn't make it easy
|
|
|
|
* to find a good value for the size. The current implementation doesn't
|
|
|
|
* care about the value anyway. */
|
|
|
|
#define KEY_BITS_FROM_DATA( type, data ) \
|
|
|
|
( data )->len
|
|
|
|
|
2018-11-07 17:05:30 +01:00
|
|
|
typedef enum {
|
|
|
|
IMPORT_KEY = 0,
|
|
|
|
GENERATE_KEY = 1,
|
|
|
|
DERIVE_KEY = 2
|
|
|
|
} generate_method;
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
|
|
|
* depends_on:MBEDTLS_PSA_CRYPTO_C
|
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
2018-08-21 14:54:54 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void static_checks( )
|
|
|
|
{
|
|
|
|
size_t max_truncated_mac_size =
|
|
|
|
PSA_ALG_MAC_TRUNCATION_MASK >> PSA_MAC_TRUNCATION_OFFSET;
|
|
|
|
|
|
|
|
/* Check that the length for a truncated MAC always fits in the algorithm
|
|
|
|
* encoding. The shifted mask is the maximum truncated value. The
|
|
|
|
* untruncated algorithm may be one byte larger. */
|
|
|
|
TEST_ASSERT( PSA_MAC_MAX_SIZE <= 1 + max_truncated_mac_size );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/* BEGIN_CASE */
|
2019-04-18 21:44:46 +02:00
|
|
|
void attributes_set_get( int id_arg, int lifetime_arg,
|
|
|
|
int usage_flags_arg, int alg_arg,
|
2019-04-26 13:49:28 +02:00
|
|
|
int type_arg, int bits_arg )
|
2019-04-18 21:44:46 +02:00
|
|
|
{
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_id_t id = id_arg;
|
|
|
|
psa_key_lifetime_t lifetime = lifetime_arg;
|
|
|
|
psa_key_usage_t usage_flags = usage_flags_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t type = type_arg;
|
2019-04-26 13:49:28 +02:00
|
|
|
size_t bits = bits_arg;
|
2019-04-18 21:44:46 +02:00
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), 0 );
|
2019-04-26 13:49:28 +02:00
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), 0 );
|
2019-04-18 21:44:46 +02:00
|
|
|
|
2019-05-15 16:12:22 +02:00
|
|
|
psa_set_key_id( &attributes, id );
|
|
|
|
psa_set_key_lifetime( &attributes, lifetime );
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage_flags );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &attributes, bits );
|
2019-04-18 21:44:46 +02:00
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), id );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ), lifetime );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), usage_flags );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), alg );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), type );
|
2019-04-26 13:49:28 +02:00
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), bits );
|
2019-04-18 21:44:46 +02:00
|
|
|
|
|
|
|
psa_reset_key_attributes( &attributes );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), 0 );
|
2019-04-26 13:49:28 +02:00
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), 0 );
|
2019-04-18 21:44:46 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-05-15 16:14:57 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void persistence_attributes( int id1_arg, int lifetime_arg, int id2_arg,
|
|
|
|
int expected_id_arg, int expected_lifetime_arg )
|
|
|
|
{
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_id_t id1 = id1_arg;
|
|
|
|
psa_key_lifetime_t lifetime = lifetime_arg;
|
|
|
|
psa_key_id_t id2 = id2_arg;
|
|
|
|
psa_key_id_t expected_id = expected_id_arg;
|
|
|
|
psa_key_lifetime_t expected_lifetime = expected_lifetime_arg;
|
|
|
|
|
|
|
|
if( id1_arg != -1 )
|
|
|
|
psa_set_key_id( &attributes, id1 );
|
|
|
|
if( lifetime_arg != -1 )
|
|
|
|
psa_set_key_lifetime( &attributes, lifetime );
|
|
|
|
if( id2_arg != -1 )
|
|
|
|
psa_set_key_id( &attributes, id2 );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), expected_id );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ), expected_lifetime );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
/* BEGIN_CASE */
|
2019-05-03 16:59:21 +02:00
|
|
|
void import( data_t *data, int type_arg,
|
|
|
|
int attr_bits_arg,
|
|
|
|
int expected_status_arg )
|
2018-01-28 13:16:24 +01:00
|
|
|
{
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_type_t type = type_arg;
|
2019-05-03 16:59:21 +02:00
|
|
|
size_t attr_bits = attr_bits_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2018-01-28 13:16:24 +01:00
|
|
|
psa_status_t status;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_set_key_type( &attributes, type );
|
2019-05-03 16:59:21 +02:00
|
|
|
psa_set_key_bits( &attributes, attr_bits );
|
2019-05-15 20:15:10 +02:00
|
|
|
status = psa_import_key( &attributes, data->x, data->len, &handle );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2019-04-18 21:44:46 +02:00
|
|
|
if( status != PSA_SUCCESS )
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &got_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &got_attributes ), type );
|
2019-05-03 16:59:21 +02:00
|
|
|
if( attr_bits != 0 )
|
|
|
|
TEST_EQUAL( attr_bits, got_attributes.bits );
|
2019-04-18 21:44:46 +02:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_destroy_key( handle ) );
|
2019-04-18 22:28:52 +02:00
|
|
|
test_operations_on_invalid_handle( handle );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
|
|
|
exit:
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_destroy_key( handle );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &got_attributes );
|
2018-01-28 13:16:24 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-28 00:16:11 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void import_rsa_made_up( int bits_arg, int keypair, int expected_status_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-28 00:16:11 +02:00
|
|
|
size_t bits = bits_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
|
|
|
psa_status_t status;
|
|
|
|
psa_key_type_t type =
|
|
|
|
keypair ? PSA_KEY_TYPE_RSA_KEYPAIR : PSA_KEY_TYPE_RSA_PUBLIC_KEY;
|
|
|
|
size_t buffer_size = /* Slight overapproximations */
|
|
|
|
keypair ? bits * 9 / 16 + 80 : bits / 8 + 20;
|
2018-09-27 13:54:18 +02:00
|
|
|
unsigned char *buffer = NULL;
|
2018-06-28 00:16:11 +02:00
|
|
|
unsigned char *p;
|
|
|
|
int ret;
|
|
|
|
size_t length;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-28 00:16:11 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( buffer, buffer_size );
|
2018-06-28 00:16:11 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( ( ret = construct_fake_rsa_key( buffer, buffer_size, &p,
|
|
|
|
bits, keypair ) ) >= 0 );
|
|
|
|
length = ret;
|
|
|
|
|
|
|
|
/* Try importing the key */
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_type( &attributes, type );
|
2019-05-15 20:15:10 +02:00
|
|
|
status = psa_import_key( &attributes, p, length, &handle );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-28 00:16:11 +02:00
|
|
|
if( status == PSA_SUCCESS )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_destroy_key( handle ) );
|
2018-06-28 00:16:11 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( buffer );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void import_export( data_t *data,
|
2018-06-04 17:42:36 +02:00
|
|
|
int type_arg,
|
|
|
|
int alg_arg,
|
|
|
|
int usage_arg,
|
2018-01-28 13:16:24 +01:00
|
|
|
int expected_bits,
|
|
|
|
int export_size_delta,
|
2018-06-21 09:25:10 +02:00
|
|
|
int expected_export_status_arg,
|
2018-01-28 13:16:24 +01:00
|
|
|
int canonical_input )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-01-28 13:16:24 +01:00
|
|
|
psa_key_type_t type = type_arg;
|
2018-06-18 16:35:34 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_export_status = expected_export_status_arg;
|
2018-01-28 13:16:24 +01:00
|
|
|
psa_status_t status;
|
|
|
|
unsigned char *exported = NULL;
|
|
|
|
unsigned char *reexported = NULL;
|
|
|
|
size_t export_size;
|
2018-06-27 18:20:43 +02:00
|
|
|
size_t exported_length = INVALID_EXPORT_LENGTH;
|
2018-01-28 13:16:24 +01:00
|
|
|
size_t reexported_length;
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2018-07-17 16:36:59 +02:00
|
|
|
export_size = (ptrdiff_t) data->len + export_size_delta;
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( exported, export_size );
|
2018-01-28 13:16:24 +01:00
|
|
|
if( ! canonical_input )
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( reexported, export_size );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage_arg );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/* Import the key */
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, data->x, data->len, &handle ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
|
|
|
/* Test the key information */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &got_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &got_attributes ), type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &got_attributes ), (size_t) expected_bits );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
|
|
|
/* Export the key */
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_export_key( handle,
|
2018-01-28 13:16:24 +01:00
|
|
|
exported, export_size,
|
|
|
|
&exported_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_export_status );
|
2018-06-27 18:20:43 +02:00
|
|
|
|
|
|
|
/* The exported length must be set by psa_export_key() to a value between 0
|
|
|
|
* and export_size. On errors, the exported length must be 0. */
|
|
|
|
TEST_ASSERT( exported_length != INVALID_EXPORT_LENGTH );
|
|
|
|
TEST_ASSERT( status == PSA_SUCCESS || exported_length == 0 );
|
|
|
|
TEST_ASSERT( exported_length <= export_size );
|
|
|
|
|
2018-08-14 15:17:54 +02:00
|
|
|
TEST_ASSERT( mem_is_char( exported + exported_length, 0,
|
2018-06-21 09:21:51 +02:00
|
|
|
export_size - exported_length ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
if( status != PSA_SUCCESS )
|
2018-06-20 00:11:45 +02:00
|
|
|
{
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( exported_length, 0 );
|
2018-01-28 13:16:24 +01:00
|
|
|
goto destroy;
|
2018-06-20 00:11:45 +02:00
|
|
|
}
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
if( ! exercise_export_key( handle, usage_arg ) )
|
2018-08-11 01:24:55 +02:00
|
|
|
goto exit;
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
if( canonical_input )
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( data->x, data->len, exported, exported_length );
|
2018-01-28 13:16:24 +01:00
|
|
|
else
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle2;
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, exported, exported_length,
|
|
|
|
&handle2 ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_key( handle2,
|
|
|
|
reexported,
|
|
|
|
export_size,
|
|
|
|
&reexported_length ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( exported, exported_length,
|
|
|
|
reexported, reexported_length );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_close_key( handle2 ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
}
|
2019-04-18 21:44:46 +02:00
|
|
|
TEST_ASSERT( exported_length <= PSA_KEY_EXPORT_MAX_SIZE( type, psa_get_key_bits( &got_attributes ) ) );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
|
|
|
destroy:
|
|
|
|
/* Destroy the key */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_destroy_key( handle ) );
|
2019-04-18 22:28:52 +02:00
|
|
|
test_operations_on_invalid_handle( handle );
|
2018-01-28 13:16:24 +01:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( exported );
|
|
|
|
mbedtls_free( reexported );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &got_attributes );
|
2018-01-28 13:16:24 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-11-07 15:18:24 +01:00
|
|
|
/* BEGIN_CASE */
|
2019-04-18 22:28:52 +02:00
|
|
|
void invalid_handle( int handle )
|
2018-11-07 15:18:24 +01:00
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2019-04-18 22:28:52 +02:00
|
|
|
test_operations_on_invalid_handle( handle );
|
2018-11-07 15:18:24 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-06 16:26:04 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void import_export_public_key( data_t *data,
|
2018-06-18 15:41:12 +02:00
|
|
|
int type_arg,
|
|
|
|
int alg_arg,
|
2018-10-29 15:15:31 +01:00
|
|
|
int export_size_delta,
|
|
|
|
int expected_export_status_arg,
|
|
|
|
data_t *expected_public_key )
|
2018-06-06 16:26:04 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 16:26:04 +02:00
|
|
|
psa_key_type_t type = type_arg;
|
2018-06-18 16:35:34 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_export_status = expected_export_status_arg;
|
2018-06-06 16:26:04 +02:00
|
|
|
psa_status_t status;
|
|
|
|
unsigned char *exported = NULL;
|
2018-10-29 15:15:31 +01:00
|
|
|
size_t export_size = expected_public_key->len + export_size_delta;
|
2018-06-27 18:47:40 +02:00
|
|
|
size_t exported_length = INVALID_EXPORT_LENGTH;
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-06 16:26:04 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-06 16:26:04 +02:00
|
|
|
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_EXPORT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2018-06-06 16:26:04 +02:00
|
|
|
|
|
|
|
/* Import the key */
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, data->x, data->len, &handle ) );
|
2018-06-06 16:26:04 +02:00
|
|
|
|
2018-10-29 15:15:31 +01:00
|
|
|
/* Export the public key */
|
|
|
|
ASSERT_ALLOC( exported, export_size );
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_export_public_key( handle,
|
2018-06-18 15:41:12 +02:00
|
|
|
exported, export_size,
|
|
|
|
&exported_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_export_status );
|
2018-10-29 15:15:31 +01:00
|
|
|
if( status == PSA_SUCCESS )
|
2018-10-29 15:18:41 +01:00
|
|
|
{
|
|
|
|
psa_key_type_t public_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR( type );
|
|
|
|
size_t bits;
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
bits = psa_get_key_bits( &attributes );
|
2018-10-29 15:18:41 +01:00
|
|
|
TEST_ASSERT( expected_public_key->len <=
|
|
|
|
PSA_KEY_EXPORT_MAX_SIZE( public_type, bits ) );
|
2018-10-29 15:15:31 +01:00
|
|
|
ASSERT_COMPARE( expected_public_key->x, expected_public_key->len,
|
|
|
|
exported, exported_length );
|
2018-10-29 15:18:41 +01:00
|
|
|
}
|
2018-06-06 16:26:04 +02:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( exported );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-06-06 16:26:04 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-26 16:12:43 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void import_and_exercise_key( data_t *data,
|
|
|
|
int type_arg,
|
|
|
|
int bits_arg,
|
|
|
|
int alg_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-26 16:12:43 +02:00
|
|
|
psa_key_type_t type = type_arg;
|
|
|
|
size_t bits = bits_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-10-25 22:35:43 +02:00
|
|
|
psa_key_usage_t usage = usage_to_exercise( type, alg );
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-26 16:12:43 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-26 16:12:43 +02:00
|
|
|
|
2019-04-17 15:05:45 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2018-06-26 16:12:43 +02:00
|
|
|
|
|
|
|
/* Import the key */
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, data->x, data->len, &handle ) );
|
2018-06-26 16:12:43 +02:00
|
|
|
|
|
|
|
/* Test the key information */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &got_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &got_attributes ), type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &got_attributes ), bits );
|
2018-06-26 16:12:43 +02:00
|
|
|
|
|
|
|
/* Do something with the key according to its type and permitted usage. */
|
2018-12-03 15:36:32 +01:00
|
|
|
if( ! exercise_key( handle, usage, alg ) )
|
2018-07-01 22:31:34 +02:00
|
|
|
goto exit;
|
2018-06-26 16:12:43 +02:00
|
|
|
|
2019-04-18 22:28:52 +02:00
|
|
|
PSA_ASSERT( psa_destroy_key( handle ) );
|
|
|
|
test_operations_on_invalid_handle( handle );
|
|
|
|
|
2018-06-26 16:12:43 +02:00
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &got_attributes );
|
2018-06-26 16:12:43 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-18 22:20:03 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void key_policy( int usage_arg, int alg_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-18 22:20:03 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_usage_t usage = usage_arg;
|
|
|
|
psa_key_type_t key_type = PSA_KEY_TYPE_AES;
|
|
|
|
unsigned char key[32] = {0};
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-18 22:20:03 +02:00
|
|
|
|
|
|
|
memset( key, 0x2a, sizeof( key ) );
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key, sizeof( key ), &handle ) );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), key_type );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), usage );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), alg );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-06-18 22:20:03 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-04 12:47:20 +01:00
|
|
|
/* BEGIN_CASE */
|
2019-04-19 19:58:20 +02:00
|
|
|
void key_attributes_init( )
|
2019-01-04 12:47:20 +01:00
|
|
|
{
|
|
|
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
|
|
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
|
|
|
* though it's OK by the C standard. We could test for this, but we'd need
|
|
|
|
* to supress the Clang warning for the test. */
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t func = psa_key_attributes_init( );
|
|
|
|
psa_key_attributes_t init = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_attributes_t zero;
|
2019-01-04 12:47:20 +01:00
|
|
|
|
|
|
|
memset( &zero, 0, sizeof( zero ) );
|
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &func ), PSA_KEY_LIFETIME_VOLATILE );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &init ), PSA_KEY_LIFETIME_VOLATILE );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &zero ), PSA_KEY_LIFETIME_VOLATILE );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_type( &func ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &init ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &zero ), 0 );
|
2019-02-07 17:33:37 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
TEST_EQUAL( psa_get_key_bits( &func ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &init ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &zero ), 0 );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &func ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &init ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &zero ), 0 );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &func ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &init ), 0 );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &zero ), 0 );
|
2019-01-04 12:47:20 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-18 22:20:03 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-07-06 16:53:09 +02:00
|
|
|
void mac_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
2018-06-18 22:20:03 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-01-04 12:48:03 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_status_t status;
|
|
|
|
unsigned char mac[PSA_MAC_MAX_SIZE];
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_mac_sign_setup( &operation, handle, exercise_alg );
|
2018-07-06 16:53:09 +02:00
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_SIGN ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_mac_abort( &operation );
|
|
|
|
|
|
|
|
memset( mac, 0, sizeof( mac ) );
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_mac_verify_setup( &operation, handle, exercise_alg );
|
2018-07-06 16:53:09 +02:00
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_VERIFY ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_mac_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-06 16:53:09 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_status_t status;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_cipher_encrypt_setup( &operation, handle, exercise_alg );
|
2018-07-06 16:53:09 +02:00
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_ENCRYPT ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_cipher_abort( &operation );
|
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_cipher_decrypt_setup( &operation, handle, exercise_alg );
|
2018-07-06 16:53:09 +02:00
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DECRYPT ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_cipher_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-06 16:53:09 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void aead_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
|
|
|
int nonce_length_arg,
|
|
|
|
int tag_length_arg,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_status_t status;
|
|
|
|
unsigned char nonce[16] = {0};
|
|
|
|
size_t nonce_length = nonce_length_arg;
|
|
|
|
unsigned char tag[16];
|
|
|
|
size_t tag_length = tag_length_arg;
|
|
|
|
size_t output_length;
|
|
|
|
|
|
|
|
TEST_ASSERT( nonce_length <= sizeof( nonce ) );
|
|
|
|
TEST_ASSERT( tag_length <= sizeof( tag ) );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_aead_encrypt( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
nonce, nonce_length,
|
|
|
|
NULL, 0,
|
|
|
|
NULL, 0,
|
|
|
|
tag, tag_length,
|
|
|
|
&output_length );
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_ENCRYPT ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
memset( tag, 0, sizeof( tag ) );
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_aead_decrypt( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
nonce, nonce_length,
|
|
|
|
NULL, 0,
|
|
|
|
tag, tag_length,
|
|
|
|
NULL, 0,
|
|
|
|
&output_length );
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DECRYPT ) != 0 )
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_INVALID_SIGNATURE );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-06 16:53:09 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void asymmetric_encryption_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_status_t status;
|
|
|
|
size_t key_bits;
|
|
|
|
size_t buffer_length;
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
size_t output_length;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-07-06 16:53:09 +02:00
|
|
|
buffer_length = PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE( key_type, key_bits,
|
|
|
|
exercise_alg );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( buffer, buffer_length );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_asymmetric_encrypt( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
NULL, 0,
|
|
|
|
NULL, 0,
|
|
|
|
buffer, buffer_length,
|
|
|
|
&output_length );
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_ENCRYPT ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2018-09-26 18:19:24 +02:00
|
|
|
if( buffer_length != 0 )
|
|
|
|
memset( buffer, 0, buffer_length );
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_asymmetric_decrypt( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
buffer, buffer_length,
|
|
|
|
NULL, 0,
|
|
|
|
buffer, buffer_length,
|
|
|
|
&output_length );
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DECRYPT ) != 0 )
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_INVALID_PADDING );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-07-06 16:53:09 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
mbedtls_free( buffer );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void asymmetric_signature_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
2019-01-14 16:06:39 +01:00
|
|
|
int exercise_alg,
|
|
|
|
int payload_length_arg )
|
2018-07-06 16:53:09 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-06 16:53:09 +02:00
|
|
|
psa_status_t status;
|
2019-01-14 16:06:39 +01:00
|
|
|
unsigned char payload[PSA_HASH_MAX_SIZE] = {1};
|
|
|
|
/* If `payload_length_arg > 0`, `exercise_alg` is supposed to be
|
|
|
|
* compatible with the policy and `payload_length_arg` is supposed to be
|
|
|
|
* a valid input length to sign. If `payload_length_arg <= 0`,
|
|
|
|
* `exercise_alg` is supposed to be forbidden by the policy. */
|
|
|
|
int compatible_alg = payload_length_arg > 0;
|
|
|
|
size_t payload_length = compatible_alg ? payload_length_arg : 0;
|
2018-07-06 16:53:09 +02:00
|
|
|
unsigned char signature[PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE] = {0};
|
|
|
|
size_t signature_length;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_asymmetric_sign( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
payload, payload_length,
|
|
|
|
signature, sizeof( signature ),
|
|
|
|
&signature_length );
|
2019-01-14 16:06:39 +01:00
|
|
|
if( compatible_alg && ( policy_usage & PSA_KEY_USAGE_SIGN ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-06 16:53:09 +02:00
|
|
|
|
|
|
|
memset( signature, 0, sizeof( signature ) );
|
2018-12-03 15:36:32 +01:00
|
|
|
status = psa_asymmetric_verify( handle, exercise_alg,
|
2018-07-06 16:53:09 +02:00
|
|
|
payload, payload_length,
|
|
|
|
signature, sizeof( signature ) );
|
2019-01-14 16:06:39 +01:00
|
|
|
if( compatible_alg && ( policy_usage & PSA_KEY_USAGE_VERIFY ) != 0 )
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_INVALID_SIGNATURE );
|
2018-07-06 16:53:09 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-06-18 22:20:03 +02:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-18 22:20:03 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-07-12 17:17:20 +02:00
|
|
|
psa_status_t status;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
status = psa_key_derivation( &operation, handle,
|
2018-07-12 17:17:20 +02:00
|
|
|
exercise_alg,
|
|
|
|
NULL, 0,
|
|
|
|
NULL, 0,
|
|
|
|
1 );
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DERIVE ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-12 17:17:20 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-12 17:17:20 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-09-18 12:01:02 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void agreement_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-09-18 12:01:02 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-09-18 12:01:02 +02:00
|
|
|
psa_status_t status;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, exercise_alg ) );
|
|
|
|
status = key_agreement_with_self( &operation, handle );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DERIVE ) != 0 )
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-09-18 12:01:02 +02:00
|
|
|
else
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-09-18 12:01:02 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-04-11 21:25:46 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void raw_agreement_key_policy( int policy_usage,
|
|
|
|
int policy_alg,
|
|
|
|
int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int exercise_alg )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-11 21:25:46 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-11 21:25:46 +02:00
|
|
|
psa_status_t status;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, policy_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, policy_alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2019-04-11 21:25:46 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2019-04-11 21:25:46 +02:00
|
|
|
|
|
|
|
status = raw_key_agreement_with_self( exercise_alg, handle );
|
|
|
|
|
|
|
|
if( policy_alg == exercise_alg &&
|
|
|
|
( policy_usage & PSA_KEY_USAGE_DERIVE ) != 0 )
|
|
|
|
PSA_ASSERT( status );
|
|
|
|
else
|
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2019-04-11 21:25:46 +02:00
|
|
|
psa_destroy_key( handle );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-28 13:03:09 +01:00
|
|
|
/* BEGIN_CASE */
|
2019-05-03 17:14:08 +02:00
|
|
|
void copy_success( int source_usage_arg, int source_alg_arg,
|
|
|
|
int type_arg, data_t *material,
|
|
|
|
int copy_attributes,
|
|
|
|
int target_usage_arg, int target_alg_arg,
|
|
|
|
int expected_usage_arg, int expected_alg_arg )
|
2019-01-28 13:03:09 +01:00
|
|
|
{
|
2019-04-19 11:43:08 +02:00
|
|
|
psa_key_attributes_t source_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_attributes_t target_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-01-28 13:03:09 +01:00
|
|
|
psa_key_usage_t expected_usage = expected_usage_arg;
|
|
|
|
psa_algorithm_t expected_alg = expected_alg_arg;
|
2019-04-19 11:43:08 +02:00
|
|
|
psa_key_handle_t source_handle = 0;
|
|
|
|
psa_key_handle_t target_handle = 0;
|
2019-01-28 13:03:09 +01:00
|
|
|
uint8_t *export_buffer = NULL;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
2019-04-19 11:43:08 +02:00
|
|
|
/* Prepare the source key. */
|
|
|
|
psa_set_key_usage_flags( &source_attributes, source_usage_arg );
|
|
|
|
psa_set_key_algorithm( &source_attributes, source_alg_arg );
|
|
|
|
psa_set_key_type( &source_attributes, type_arg );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &source_attributes,
|
|
|
|
material->x, material->len,
|
|
|
|
&source_handle ) );
|
2019-04-19 11:43:08 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( source_handle, &source_attributes ) );
|
2019-01-28 13:03:09 +01:00
|
|
|
|
2019-04-19 11:43:08 +02:00
|
|
|
/* Prepare the target attributes. */
|
|
|
|
if( copy_attributes )
|
|
|
|
target_attributes = source_attributes;
|
|
|
|
if( target_usage_arg != -1 )
|
|
|
|
psa_set_key_usage_flags( &target_attributes, target_usage_arg );
|
|
|
|
if( target_alg_arg != -1 )
|
|
|
|
psa_set_key_algorithm( &target_attributes, target_alg_arg );
|
2019-01-28 13:03:09 +01:00
|
|
|
|
|
|
|
/* Copy the key. */
|
2019-05-03 17:14:08 +02:00
|
|
|
PSA_ASSERT( psa_copy_key( source_handle,
|
|
|
|
&target_attributes, &target_handle ) );
|
2019-01-28 13:03:09 +01:00
|
|
|
|
|
|
|
/* Destroy the source to ensure that this doesn't affect the target. */
|
|
|
|
PSA_ASSERT( psa_destroy_key( source_handle ) );
|
|
|
|
|
|
|
|
/* Test that the target slot has the expected content and policy. */
|
2019-04-19 11:43:08 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( target_handle, &target_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &source_attributes ),
|
|
|
|
psa_get_key_type( &target_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &source_attributes ),
|
|
|
|
psa_get_key_bits( &target_attributes ) );
|
|
|
|
TEST_EQUAL( expected_usage, psa_get_key_usage_flags( &target_attributes ) );
|
|
|
|
TEST_EQUAL( expected_alg, psa_get_key_algorithm( &target_attributes ) );
|
2019-01-28 13:03:09 +01:00
|
|
|
if( expected_usage & PSA_KEY_USAGE_EXPORT )
|
|
|
|
{
|
|
|
|
size_t length;
|
|
|
|
ASSERT_ALLOC( export_buffer, material->len );
|
|
|
|
PSA_ASSERT( psa_export_key( target_handle, export_buffer,
|
|
|
|
material->len, &length ) );
|
|
|
|
ASSERT_COMPARE( material->x, material->len,
|
|
|
|
export_buffer, length );
|
|
|
|
}
|
|
|
|
if( ! exercise_key( target_handle, expected_usage, expected_alg ) )
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_close_key( target_handle ) );
|
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &source_attributes );
|
|
|
|
psa_reset_key_attributes( &target_attributes );
|
2019-01-28 13:03:09 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
mbedtls_free( export_buffer );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-05-03 17:14:08 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void copy_fail( int source_usage_arg, int source_alg_arg,
|
|
|
|
int type_arg, data_t *material,
|
|
|
|
int target_type_arg, int target_bits_arg,
|
|
|
|
int target_usage_arg, int target_alg_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_key_attributes_t source_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_attributes_t target_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_handle_t source_handle = 0;
|
|
|
|
psa_key_handle_t target_handle = 0;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
/* Prepare the source key. */
|
|
|
|
psa_set_key_usage_flags( &source_attributes, source_usage_arg );
|
|
|
|
psa_set_key_algorithm( &source_attributes, source_alg_arg );
|
|
|
|
psa_set_key_type( &source_attributes, type_arg );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &source_attributes,
|
|
|
|
material->x, material->len,
|
|
|
|
&source_handle ) );
|
2019-05-03 17:14:08 +02:00
|
|
|
|
|
|
|
/* Prepare the target attributes. */
|
|
|
|
psa_set_key_type( &target_attributes, target_type_arg );
|
|
|
|
psa_set_key_bits( &target_attributes, target_bits_arg );
|
|
|
|
psa_set_key_usage_flags( &target_attributes, target_usage_arg );
|
|
|
|
psa_set_key_algorithm( &target_attributes, target_alg_arg );
|
|
|
|
|
|
|
|
/* Try to copy the key. */
|
|
|
|
TEST_EQUAL( psa_copy_key( source_handle,
|
|
|
|
&target_attributes, &target_handle ),
|
|
|
|
expected_status_arg );
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &source_attributes );
|
|
|
|
psa_reset_key_attributes( &target_attributes );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-04 12:47:44 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void hash_operation_init( )
|
|
|
|
{
|
2019-02-15 14:52:25 +01:00
|
|
|
const uint8_t input[1] = { 0 };
|
2019-01-04 12:47:44 +01:00
|
|
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
|
|
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
|
|
|
* though it's OK by the C standard. We could test for this, but we'd need
|
|
|
|
* to supress the Clang warning for the test. */
|
|
|
|
psa_hash_operation_t func = psa_hash_operation_init( );
|
|
|
|
psa_hash_operation_t init = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t zero;
|
|
|
|
|
|
|
|
memset( &zero, 0, sizeof( zero ) );
|
|
|
|
|
2019-02-19 12:44:55 +01:00
|
|
|
/* A freshly-initialized hash operation should not be usable. */
|
2019-02-15 14:52:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_update( &func, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_hash_update( &init, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_hash_update( &zero, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
|
2019-02-07 17:33:37 +01:00
|
|
|
/* A default hash operation should be abortable without error. */
|
|
|
|
PSA_ASSERT( psa_hash_abort( &func ) );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &init ) );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &zero ) );
|
2019-01-04 12:47:44 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void hash_setup( int alg_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-01-04 12:47:44 +01:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-06-20 16:05:20 +02:00
|
|
|
psa_status_t status;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2018-07-08 19:46:38 +02:00
|
|
|
status = psa_hash_setup( &operation, alg );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-25 22:11:18 +01:00
|
|
|
/* Whether setup succeeded or failed, abort must succeed. */
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
|
|
|
/* If setup failed, reproduce the failure, so as to
|
|
|
|
* test the resulting state of the operation object. */
|
|
|
|
if( status != PSA_SUCCESS )
|
|
|
|
TEST_EQUAL( psa_hash_setup( &operation, alg ), status );
|
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
/* Now the operation object should be reusable. */
|
|
|
|
#if defined(KNOWN_SUPPORTED_HASH_ALG)
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, KNOWN_SUPPORTED_HASH_ALG ) );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
#endif
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-11-01 09:44:32 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void hash_bad_order( )
|
|
|
|
{
|
2019-02-19 12:44:55 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
2018-11-01 09:44:32 +01:00
|
|
|
unsigned char input[] = "";
|
|
|
|
/* SHA-256 hash of an empty string */
|
2019-02-19 12:44:55 +01:00
|
|
|
const unsigned char valid_hash[] = {
|
2018-11-01 09:44:32 +01:00
|
|
|
0xe3, 0xb0, 0xc4, 0x42, 0x98, 0xfc, 0x1c, 0x14, 0x9a, 0xfb, 0xf4, 0xc8,
|
|
|
|
0x99, 0x6f, 0xb9, 0x24, 0x27, 0xae, 0x41, 0xe4, 0x64, 0x9b, 0x93, 0x4c,
|
|
|
|
0xa4, 0x95, 0x99, 0x1b, 0x78, 0x52, 0xb8, 0x55 };
|
2019-02-19 12:44:55 +01:00
|
|
|
unsigned char hash[sizeof(valid_hash)] = { 0 };
|
2018-11-01 09:44:32 +01:00
|
|
|
size_t hash_len;
|
2019-01-04 12:47:44 +01:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-11-01 09:44:32 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-11-01 09:44:32 +01:00
|
|
|
|
2019-02-19 10:25:10 +01:00
|
|
|
/* Call setup twice in a row. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
TEST_EQUAL( psa_hash_setup( &operation, alg ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
2019-02-19 12:44:55 +01:00
|
|
|
/* Call update without calling setup beforehand. */
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
|
2019-02-19 12:44:55 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
2018-11-01 09:44:32 +01:00
|
|
|
|
2019-02-19 12:44:55 +01:00
|
|
|
/* Call update after finish. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
|
2019-02-15 14:52:25 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
2019-02-19 12:44:55 +01:00
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
2018-11-01 09:44:32 +01:00
|
|
|
|
2019-02-19 12:44:55 +01:00
|
|
|
/* Call verify without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_hash_verify( &operation,
|
|
|
|
valid_hash, sizeof( valid_hash ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call verify after finish. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
TEST_EQUAL( psa_hash_verify( &operation,
|
|
|
|
valid_hash, sizeof( valid_hash ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call verify twice in a row. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_verify( &operation,
|
|
|
|
valid_hash, sizeof( valid_hash ) ) );
|
|
|
|
TEST_EQUAL( psa_hash_verify( &operation,
|
|
|
|
valid_hash, sizeof( valid_hash ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call finish without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call finish twice in a row. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ),
|
2019-02-15 14:52:25 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
2019-02-19 12:44:55 +01:00
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
2018-11-01 09:44:32 +01:00
|
|
|
|
2019-02-19 12:44:55 +01:00
|
|
|
/* Call finish after calling verify. */
|
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_verify( &operation,
|
|
|
|
valid_hash, sizeof( valid_hash ) ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_hash_finish( &operation,
|
|
|
|
hash, sizeof( hash ), &hash_len ),
|
2019-02-15 14:52:25 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
2019-02-19 12:44:55 +01:00
|
|
|
PSA_ASSERT( psa_hash_abort( &operation ) );
|
2018-11-01 09:44:32 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-11-01 13:26:34 +01:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
|
|
|
|
void hash_verify_bad_args( )
|
2018-10-18 17:01:10 +02:00
|
|
|
{
|
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
2018-11-01 13:26:34 +01:00
|
|
|
/* SHA-256 hash of an empty string with 2 extra bytes (0xaa and 0xbb)
|
|
|
|
* appended to it */
|
|
|
|
unsigned char hash[] = {
|
|
|
|
0xe3, 0xb0, 0xc4, 0x42, 0x98, 0xfc, 0x1c, 0x14, 0x9a, 0xfb, 0xf4, 0xc8,
|
|
|
|
0x99, 0x6f, 0xb9, 0x24, 0x27, 0xae, 0x41, 0xe4, 0x64, 0x9b, 0x93, 0x4c,
|
|
|
|
0xa4, 0x95, 0x99, 0x1b, 0x78, 0x52, 0xb8, 0x55, 0xaa, 0xbb };
|
2018-10-18 17:01:10 +02:00
|
|
|
size_t expected_size = PSA_HASH_SIZE( alg );
|
2019-01-04 12:47:44 +01:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-10-18 17:01:10 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-10-18 17:01:10 +02:00
|
|
|
|
2018-11-01 13:26:34 +01:00
|
|
|
/* psa_hash_verify with a smaller hash than expected */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_verify( &operation, hash, expected_size - 1 ),
|
2018-12-18 00:24:04 +01:00
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-10-18 17:01:10 +02:00
|
|
|
|
2018-11-01 13:26:34 +01:00
|
|
|
/* psa_hash_verify with a non-matching hash */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_verify( &operation, hash + 1, expected_size ),
|
2018-12-18 00:24:04 +01:00
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-10-18 17:01:10 +02:00
|
|
|
|
2018-11-01 13:26:34 +01:00
|
|
|
/* psa_hash_verify with a hash longer than expected */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_hash_verify( &operation, hash, sizeof( hash ) ),
|
2018-12-18 00:24:04 +01:00
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-10-24 17:16:19 +02:00
|
|
|
|
2018-10-18 17:01:10 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-11-01 10:58:59 +01:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
|
|
|
|
void hash_finish_bad_args( )
|
2018-10-25 09:22:01 +02:00
|
|
|
{
|
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
2018-11-01 10:58:59 +01:00
|
|
|
unsigned char hash[PSA_HASH_MAX_SIZE];
|
2018-10-25 09:22:01 +02:00
|
|
|
size_t expected_size = PSA_HASH_SIZE( alg );
|
2019-01-04 12:47:44 +01:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-10-25 09:22:01 +02:00
|
|
|
size_t hash_len;
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-10-25 09:22:01 +02:00
|
|
|
|
|
|
|
/* psa_hash_finish with a smaller hash buffer than expected */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_hash_setup( &operation, alg ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_hash_finish( &operation,
|
2018-12-18 00:33:25 +01:00
|
|
|
hash, expected_size - 1, &hash_len ),
|
|
|
|
PSA_ERROR_BUFFER_TOO_SMALL );
|
2018-10-25 09:22:01 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-19 12:03:41 +01:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
|
|
|
|
void hash_clone_source_state( )
|
|
|
|
{
|
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
|
|
|
unsigned char hash[PSA_HASH_MAX_SIZE];
|
|
|
|
psa_hash_operation_t op_source = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_init = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_setup = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_finished = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_aborted = PSA_HASH_OPERATION_INIT;
|
|
|
|
size_t hash_len;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_source, alg ) );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_setup, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_finished, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_finished,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_aborted, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &op_aborted ) );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_hash_clone( &op_source, &op_setup ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_hash_clone( &op_source, &op_init ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_init,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
PSA_ASSERT( psa_hash_clone( &op_source, &op_finished ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_finished,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
PSA_ASSERT( psa_hash_clone( &op_source, &op_aborted ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_aborted,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_hash_abort( &op_source );
|
|
|
|
psa_hash_abort( &op_init );
|
|
|
|
psa_hash_abort( &op_setup );
|
|
|
|
psa_hash_abort( &op_finished );
|
|
|
|
psa_hash_abort( &op_aborted );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
|
|
|
|
void hash_clone_target_state( )
|
|
|
|
{
|
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
|
|
|
unsigned char hash[PSA_HASH_MAX_SIZE];
|
|
|
|
psa_hash_operation_t op_init = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_setup = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_finished = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_aborted = PSA_HASH_OPERATION_INIT;
|
|
|
|
psa_hash_operation_t op_target = PSA_HASH_OPERATION_INIT;
|
|
|
|
size_t hash_len;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_setup, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_finished, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_finished,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
PSA_ASSERT( psa_hash_setup( &op_aborted, alg ) );
|
|
|
|
PSA_ASSERT( psa_hash_abort( &op_aborted ) );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_hash_clone( &op_setup, &op_target ) );
|
|
|
|
PSA_ASSERT( psa_hash_finish( &op_target,
|
|
|
|
hash, sizeof( hash ), &hash_len ) );
|
|
|
|
|
|
|
|
TEST_EQUAL( psa_hash_clone( &op_init, &op_target ), PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_hash_clone( &op_finished, &op_target ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_hash_clone( &op_aborted, &op_target ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_hash_abort( &op_target );
|
|
|
|
psa_hash_abort( &op_init );
|
|
|
|
psa_hash_abort( &op_setup );
|
|
|
|
psa_hash_abort( &op_finished );
|
|
|
|
psa_hash_abort( &op_aborted );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-04 12:48:03 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mac_operation_init( )
|
|
|
|
{
|
2019-02-15 15:05:35 +01:00
|
|
|
const uint8_t input[1] = { 0 };
|
|
|
|
|
2019-01-04 12:48:03 +01:00
|
|
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
|
|
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
|
|
|
* though it's OK by the C standard. We could test for this, but we'd need
|
|
|
|
* to supress the Clang warning for the test. */
|
|
|
|
psa_mac_operation_t func = psa_mac_operation_init( );
|
|
|
|
psa_mac_operation_t init = PSA_MAC_OPERATION_INIT;
|
|
|
|
psa_mac_operation_t zero;
|
|
|
|
|
|
|
|
memset( &zero, 0, sizeof( zero ) );
|
|
|
|
|
2019-02-15 15:05:35 +01:00
|
|
|
/* A freshly-initialized MAC operation should not be usable. */
|
|
|
|
TEST_EQUAL( psa_mac_update( &func,
|
|
|
|
input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_mac_update( &init,
|
|
|
|
input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_mac_update( &zero,
|
|
|
|
input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
|
2019-02-07 17:33:37 +01:00
|
|
|
/* A default MAC operation should be abortable without error. */
|
|
|
|
PSA_ASSERT( psa_mac_abort( &func ) );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &init ) );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &zero ) );
|
2019-01-04 12:48:03 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mac_setup( int key_type_arg,
|
|
|
|
data_t *key,
|
|
|
|
int alg_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-01-04 12:48:03 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
2019-02-25 17:42:03 +01:00
|
|
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
|
|
|
#if defined(KNOWN_SUPPORTED_MAC_ALG)
|
|
|
|
const uint8_t smoke_test_key_data[16] = "kkkkkkkkkkkkkkkk";
|
|
|
|
#endif
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
if( ! exercise_mac_setup( key_type, key->x, key->len, alg,
|
|
|
|
&operation, &status ) )
|
|
|
|
goto exit;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
/* The operation object should be reusable. */
|
|
|
|
#if defined(KNOWN_SUPPORTED_MAC_ALG)
|
|
|
|
if( ! exercise_mac_setup( KNOWN_SUPPORTED_MAC_KEY_TYPE,
|
|
|
|
smoke_test_key_data,
|
|
|
|
sizeof( smoke_test_key_data ),
|
|
|
|
KNOWN_SUPPORTED_MAC_ALG,
|
|
|
|
&operation, &status ) )
|
|
|
|
goto exit;
|
|
|
|
TEST_EQUAL( status, PSA_SUCCESS );
|
|
|
|
#endif
|
|
|
|
|
2018-08-14 15:17:54 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-02-15 15:05:35 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mac_bad_order( )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
|
|
|
psa_key_type_t key_type = PSA_KEY_TYPE_HMAC;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_HMAC(PSA_ALG_SHA_256);
|
|
|
|
const uint8_t key[] = {
|
|
|
|
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
|
|
|
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
|
|
|
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa };
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-02-15 15:05:35 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
|
|
|
uint8_t sign_mac[PSA_MAC_MAX_SIZE + 10] = { 0 };
|
|
|
|
size_t sign_mac_length = 0;
|
|
|
|
const uint8_t input[] = { 0xbb, 0xbb, 0xbb, 0xbb };
|
|
|
|
const uint8_t verify_mac[] = {
|
|
|
|
0x74, 0x65, 0x93, 0x8c, 0xeb, 0x1d, 0xb3, 0x76, 0x5a, 0x38, 0xe7, 0xdd,
|
|
|
|
0x85, 0xc5, 0xad, 0x4f, 0x07, 0xe7, 0xd5, 0xb2, 0x64, 0xf0, 0x1a, 0x1a,
|
|
|
|
0x2c, 0xf9, 0x18, 0xca, 0x59, 0x7e, 0x5d, 0xf6 };
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN | PSA_KEY_USAGE_VERIFY );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key, sizeof( key ), &handle ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-15 15:05:35 +01:00
|
|
|
/* Call update without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_mac_update( &operation, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call sign finish without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_mac_sign_finish( &operation, sign_mac, sizeof( sign_mac ),
|
|
|
|
&sign_mac_length),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call verify finish without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_mac_verify_finish( &operation,
|
|
|
|
verify_mac, sizeof( verify_mac ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
2019-02-19 10:25:10 +01:00
|
|
|
/* Call setup twice in a row. */
|
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
TEST_EQUAL( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
2019-02-15 15:05:35 +01:00
|
|
|
/* Call update after sign finish. */
|
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
PSA_ASSERT( psa_mac_sign_finish( &operation,
|
|
|
|
sign_mac, sizeof( sign_mac ),
|
|
|
|
&sign_mac_length ) );
|
|
|
|
TEST_EQUAL( psa_mac_update( &operation, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call update after verify finish. */
|
|
|
|
PSA_ASSERT( psa_mac_verify_setup( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
handle, alg ) );
|
2019-02-15 15:05:35 +01:00
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
PSA_ASSERT( psa_mac_verify_finish( &operation,
|
|
|
|
verify_mac, sizeof( verify_mac ) ) );
|
|
|
|
TEST_EQUAL( psa_mac_update( &operation, input, sizeof( input ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call sign finish twice in a row. */
|
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
PSA_ASSERT( psa_mac_sign_finish( &operation,
|
|
|
|
sign_mac, sizeof( sign_mac ),
|
|
|
|
&sign_mac_length ) );
|
|
|
|
TEST_EQUAL( psa_mac_sign_finish( &operation,
|
|
|
|
sign_mac, sizeof( sign_mac ),
|
|
|
|
&sign_mac_length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call verify finish twice in a row. */
|
|
|
|
PSA_ASSERT( psa_mac_verify_setup( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
handle, alg ) );
|
2019-02-15 15:05:35 +01:00
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
PSA_ASSERT( psa_mac_verify_finish( &operation,
|
|
|
|
verify_mac, sizeof( verify_mac ) ) );
|
|
|
|
TEST_EQUAL( psa_mac_verify_finish( &operation,
|
|
|
|
verify_mac, sizeof( verify_mac ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Setup sign but try verify. */
|
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
TEST_EQUAL( psa_mac_verify_finish( &operation,
|
|
|
|
verify_mac, sizeof( verify_mac ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Setup verify but try sign. */
|
|
|
|
PSA_ASSERT( psa_mac_verify_setup( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
handle, alg ) );
|
2019-02-15 15:05:35 +01:00
|
|
|
PSA_ASSERT( psa_mac_update( &operation, input, sizeof( input ) ) );
|
|
|
|
TEST_EQUAL( psa_mac_sign_finish( &operation,
|
|
|
|
sign_mac, sizeof( sign_mac ),
|
|
|
|
&sign_mac_length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_mac_abort( &operation ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2018-08-14 15:17:54 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mac_sign( int key_type_arg,
|
|
|
|
data_t *key,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input,
|
|
|
|
data_t *expected_mac )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-08-14 15:17:54 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-01-04 12:48:03 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-08-14 15:17:54 +02:00
|
|
|
/* Leave a little extra room in the output buffer. At the end of the
|
|
|
|
* test, we'll check that the implementation didn't overwrite onto
|
|
|
|
* this extra room. */
|
|
|
|
uint8_t actual_mac[PSA_MAC_MAX_SIZE + 10];
|
|
|
|
size_t mac_buffer_size =
|
|
|
|
PSA_MAC_FINAL_SIZE( key_type, PSA_BYTES_TO_BITS( key->len ), alg );
|
|
|
|
size_t mac_length = 0;
|
|
|
|
|
|
|
|
memset( actual_mac, '+', sizeof( actual_mac ) );
|
|
|
|
TEST_ASSERT( mac_buffer_size <= PSA_MAC_MAX_SIZE );
|
|
|
|
TEST_ASSERT( expected_mac->len <= mac_buffer_size );
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-08-14 15:17:54 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-08-14 15:17:54 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-08-14 15:17:54 +02:00
|
|
|
|
|
|
|
/* Calculate the MAC. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_mac_sign_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation,
|
|
|
|
input->x, input->len ) );
|
|
|
|
PSA_ASSERT( psa_mac_sign_finish( &operation,
|
|
|
|
actual_mac, mac_buffer_size,
|
|
|
|
&mac_length ) );
|
2018-08-14 15:17:54 +02:00
|
|
|
|
|
|
|
/* Compare with the expected value. */
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( expected_mac->x, expected_mac->len,
|
|
|
|
actual_mac, mac_length );
|
2018-08-14 15:17:54 +02:00
|
|
|
|
|
|
|
/* Verify that the end of the buffer is untouched. */
|
|
|
|
TEST_ASSERT( mem_is_char( actual_mac + mac_length, '+',
|
|
|
|
sizeof( actual_mac ) - mac_length ) );
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-20 16:05:20 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-02-08 10:02:12 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-18 17:03:37 +02:00
|
|
|
void mac_verify( int key_type_arg,
|
|
|
|
data_t *key,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input,
|
|
|
|
data_t *expected_mac )
|
2018-02-08 10:02:12 +01:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-02-08 10:02:12 +01:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-01-04 12:48:03 +01:00
|
|
|
psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2018-06-28 00:07:19 +02:00
|
|
|
TEST_ASSERT( expected_mac->len <= PSA_MAC_MAX_SIZE );
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_VERIFY );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-04-02 17:34:15 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-06-18 17:03:37 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_mac_verify_setup( &operation,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_destroy_key( handle ) );
|
|
|
|
PSA_ASSERT( psa_mac_update( &operation,
|
|
|
|
input->x, input->len ) );
|
|
|
|
PSA_ASSERT( psa_mac_verify_finish( &operation,
|
|
|
|
expected_mac->x,
|
|
|
|
expected_mac->len ) );
|
2018-02-08 10:02:12 +01:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-02-08 10:02:12 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-01-04 12:48:27 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_operation_init( )
|
|
|
|
{
|
2019-02-15 15:12:05 +01:00
|
|
|
const uint8_t input[1] = { 0 };
|
|
|
|
unsigned char output[1] = { 0 };
|
|
|
|
size_t output_length;
|
2019-01-04 12:48:27 +01:00
|
|
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
|
|
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
|
|
|
* though it's OK by the C standard. We could test for this, but we'd need
|
|
|
|
* to supress the Clang warning for the test. */
|
|
|
|
psa_cipher_operation_t func = psa_cipher_operation_init( );
|
|
|
|
psa_cipher_operation_t init = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_cipher_operation_t zero;
|
|
|
|
|
|
|
|
memset( &zero, 0, sizeof( zero ) );
|
|
|
|
|
2019-02-15 15:12:05 +01:00
|
|
|
/* A freshly-initialized cipher operation should not be usable. */
|
|
|
|
TEST_EQUAL( psa_cipher_update( &func,
|
|
|
|
input, sizeof( input ),
|
|
|
|
output, sizeof( output ),
|
|
|
|
&output_length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_cipher_update( &init,
|
|
|
|
input, sizeof( input ),
|
|
|
|
output, sizeof( output ),
|
|
|
|
&output_length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
TEST_EQUAL( psa_cipher_update( &zero,
|
|
|
|
input, sizeof( input ),
|
|
|
|
output, sizeof( output ),
|
|
|
|
&output_length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
|
2019-02-07 17:33:37 +01:00
|
|
|
/* A default cipher operation should be abortable without error. */
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &func ) );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &init ) );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &zero ) );
|
2019-01-04 12:48:27 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_setup( int key_type_arg,
|
|
|
|
data_t *key,
|
|
|
|
int alg_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2018-06-20 16:05:20 +02:00
|
|
|
psa_status_t status;
|
2019-02-25 17:42:03 +01:00
|
|
|
#if defined(KNOWN_SUPPORTED_MAC_ALG)
|
|
|
|
const uint8_t smoke_test_key_data[16] = "kkkkkkkkkkkkkkkk";
|
|
|
|
#endif
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
if( ! exercise_cipher_setup( key_type, key->x, key->len, alg,
|
|
|
|
&operation, &status ) )
|
|
|
|
goto exit;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-25 17:42:03 +01:00
|
|
|
/* The operation object should be reusable. */
|
|
|
|
#if defined(KNOWN_SUPPORTED_CIPHER_ALG)
|
|
|
|
if( ! exercise_cipher_setup( KNOWN_SUPPORTED_CIPHER_KEY_TYPE,
|
|
|
|
smoke_test_key_data,
|
|
|
|
sizeof( smoke_test_key_data ),
|
|
|
|
KNOWN_SUPPORTED_CIPHER_ALG,
|
|
|
|
&operation, &status ) )
|
|
|
|
goto exit;
|
|
|
|
TEST_EQUAL( status, PSA_SUCCESS );
|
|
|
|
#endif
|
|
|
|
|
2018-06-20 16:05:20 +02:00
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-02-15 15:12:05 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void cipher_bad_order( )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
|
|
|
psa_key_type_t key_type = PSA_KEY_TYPE_AES;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_CBC_PKCS7;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-02-15 15:12:05 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
unsigned char iv[PSA_BLOCK_CIPHER_BLOCK_SIZE(PSA_KEY_TYPE_AES)] = { 0 };
|
|
|
|
const uint8_t key[] = {
|
|
|
|
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
|
|
|
0xaa, 0xaa, 0xaa, 0xaa };
|
|
|
|
const uint8_t text[] = {
|
|
|
|
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
|
|
|
|
0xbb, 0xbb, 0xbb, 0xbb };
|
|
|
|
uint8_t buffer[PSA_BLOCK_CIPHER_BLOCK_SIZE(PSA_KEY_TYPE_AES)] = { 0 };
|
|
|
|
size_t length = 0;
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2019-04-19 19:58:20 +02:00
|
|
|
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 );
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key, sizeof( key ), &handle ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
2019-02-15 15:12:05 +01:00
|
|
|
|
2019-02-19 10:25:10 +01:00
|
|
|
/* Call encrypt setup twice in a row. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
TEST_EQUAL( psa_cipher_encrypt_setup( &operation, handle, alg ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call decrypt setup twice in a row. */
|
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation, handle, alg ) );
|
|
|
|
TEST_EQUAL( psa_cipher_decrypt_setup( &operation, handle, alg ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
2019-02-15 15:12:05 +01:00
|
|
|
/* Generate an IV without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_cipher_generate_iv( &operation,
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Generate an IV twice in a row. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_generate_iv( &operation,
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ) );
|
|
|
|
TEST_EQUAL( psa_cipher_generate_iv( &operation,
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Generate an IV after it's already set. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ) );
|
|
|
|
TEST_EQUAL( psa_cipher_generate_iv( &operation,
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Set an IV without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Set an IV after it's already set. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ) );
|
|
|
|
TEST_EQUAL( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Set an IV after it's already generated. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_generate_iv( &operation,
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ) );
|
|
|
|
TEST_EQUAL( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call update without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_cipher_update( &operation,
|
|
|
|
text, sizeof( text ),
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call update without an IV where an IV is required. */
|
|
|
|
TEST_EQUAL( psa_cipher_update( &operation,
|
|
|
|
text, sizeof( text ),
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call update after finish. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ) );
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
|
|
|
buffer, sizeof( buffer ), &length ) );
|
|
|
|
TEST_EQUAL( psa_cipher_update( &operation,
|
|
|
|
text, sizeof( text ),
|
|
|
|
buffer, sizeof( buffer ),
|
|
|
|
&length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call finish without calling setup beforehand. */
|
|
|
|
TEST_EQUAL( psa_cipher_finish( &operation,
|
|
|
|
buffer, sizeof( buffer ), &length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call finish without an IV where an IV is required. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
/* Not calling update means we are encrypting an empty buffer, which is OK
|
|
|
|
* for cipher modes with padding. */
|
|
|
|
TEST_EQUAL( psa_cipher_finish( &operation,
|
|
|
|
buffer, sizeof( buffer ), &length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
|
|
|
|
|
|
|
/* Call finish twice in a row. */
|
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation,
|
|
|
|
iv, sizeof( iv ) ) );
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
|
|
|
buffer, sizeof( buffer ), &length ) );
|
|
|
|
TEST_EQUAL( psa_cipher_finish( &operation,
|
|
|
|
buffer, sizeof( buffer ), &length ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2018-06-20 16:05:20 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-02-03 23:57:22 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_encrypt( int alg_arg, int key_type_arg,
|
2019-05-06 15:22:57 +02:00
|
|
|
data_t *key, data_t *iv,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *input, data_t *expected_output,
|
2018-06-21 09:25:10 +02:00
|
|
|
int expected_status_arg )
|
2018-02-03 22:44:14 +01:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
psa_status_t status;
|
2018-02-03 22:44:14 +01:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
2018-06-08 14:40:59 +02:00
|
|
|
size_t total_output_length = 0;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2019-05-06 15:22:57 +02:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2018-12-17 23:34:57 +01:00
|
|
|
output_buffer_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
2018-02-03 23:57:22 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-06-08 14:20:49 +02:00
|
|
|
status = psa_cipher_finish( &operation,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-06-08 14:20:49 +02:00
|
|
|
&function_output_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
|
|
|
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-06 15:36:50 +02:00
|
|
|
if( expected_status == PSA_SUCCESS )
|
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
2018-06-06 15:36:50 +02:00
|
|
|
}
|
2018-06-08 14:40:59 +02:00
|
|
|
|
2018-06-06 15:36:50 +02:00
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-06 15:36:50 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_encrypt_multipart( int alg_arg, int key_type_arg,
|
2019-05-06 15:22:57 +02:00
|
|
|
data_t *key, data_t *iv,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *input,
|
2019-02-19 19:44:00 +01:00
|
|
|
int first_part_size_arg,
|
|
|
|
int output1_length_arg, int output2_length_arg,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *expected_output )
|
2018-06-06 15:36:50 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-02-19 19:44:00 +01:00
|
|
|
size_t first_part_size = first_part_size_arg;
|
|
|
|
size_t output1_length = output1_length_arg;
|
|
|
|
size_t output2_length = output2_length_arg;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
2018-06-08 14:40:59 +02:00
|
|
|
size_t total_output_length = 0;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2019-05-06 15:22:57 +02:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2018-12-17 23:34:57 +01:00
|
|
|
output_buffer_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( first_part_size <= input->len );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation, input->x, first_part_size,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( function_output_length == output1_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x + first_part_size,
|
|
|
|
input->len - first_part_size,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( function_output_length == output2_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-02-03 22:44:14 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_decrypt_multipart( int alg_arg, int key_type_arg,
|
2019-05-06 15:22:57 +02:00
|
|
|
data_t *key, data_t *iv,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *input,
|
2019-02-19 19:44:00 +01:00
|
|
|
int first_part_size_arg,
|
|
|
|
int output1_length_arg, int output2_length_arg,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *expected_output )
|
2018-02-03 22:44:14 +01:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 18:44:09 +02:00
|
|
|
|
2018-02-03 22:44:14 +01:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-02-19 19:44:00 +01:00
|
|
|
size_t first_part_size = first_part_size_arg;
|
|
|
|
size_t output1_length = output1_length_arg;
|
|
|
|
size_t output2_length = output2_length_arg;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
2018-06-08 14:40:59 +02:00
|
|
|
size_t total_output_length = 0;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2019-05-06 15:22:57 +02:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2018-12-17 23:34:57 +01:00
|
|
|
output_buffer_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( first_part_size <= input->len );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, first_part_size,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( function_output_length == output1_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x + first_part_size,
|
|
|
|
input->len - first_part_size,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( function_output_length == output2_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-02-03 22:44:14 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-03-28 00:21:33 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_decrypt( int alg_arg, int key_type_arg,
|
2019-05-06 15:22:57 +02:00
|
|
|
data_t *key, data_t *iv,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *input, data_t *expected_output,
|
2018-06-21 09:25:10 +02:00
|
|
|
int expected_status_arg )
|
2018-03-28 00:21:33 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
psa_status_t status;
|
2018-06-06 15:19:24 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-21 09:25:10 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
size_t function_output_length = 0;
|
2018-06-08 14:40:59 +02:00
|
|
|
size_t total_output_length = 0;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-04-30 17:06:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-03-28 00:21:33 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-03-28 00:21:33 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation,
|
|
|
|
handle, alg ) );
|
2018-03-28 00:21:33 +02:00
|
|
|
|
2019-05-06 15:22:57 +02:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
|
2018-03-28 00:21:33 +02:00
|
|
|
|
2018-12-17 23:34:57 +01:00
|
|
|
output_buffer_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_buffer_size );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation,
|
|
|
|
input->x, input->len,
|
|
|
|
output, output_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-06-08 14:20:49 +02:00
|
|
|
status = psa_cipher_finish( &operation,
|
2019-02-19 19:05:33 +01:00
|
|
|
output + total_output_length,
|
|
|
|
output_buffer_size - total_output_length,
|
2018-06-08 14:20:49 +02:00
|
|
|
&function_output_length );
|
2018-06-08 14:40:59 +02:00
|
|
|
total_output_length += function_output_length;
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-06-06 15:36:50 +02:00
|
|
|
if( expected_status == PSA_SUCCESS )
|
|
|
|
{
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_output->x, expected_output->len,
|
|
|
|
output, total_output_length );
|
2018-06-06 15:36:50 +02:00
|
|
|
}
|
2018-04-30 17:06:50 +02:00
|
|
|
|
2018-03-28 00:21:33 +02:00
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-03-28 00:21:33 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-03-28 14:14:59 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_verify_output( int alg_arg, int key_type_arg,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *key,
|
|
|
|
data_t *input )
|
2018-03-28 14:14:59 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 15:19:24 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char iv[16] = {0};
|
|
|
|
size_t iv_size = 16;
|
|
|
|
size_t iv_length = 0;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output1 = NULL;
|
2018-06-06 15:19:24 +02:00
|
|
|
size_t output1_size = 0;
|
|
|
|
size_t output1_length = 0;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output2 = NULL;
|
2018-06-06 15:19:24 +02:00
|
|
|
size_t output2_size = 0;
|
|
|
|
size_t output2_length = 0;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t function_output_length = 0;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation1 = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_cipher_operation_t operation2 = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-03-28 14:14:59 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
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 );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation1,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation2,
|
|
|
|
handle, alg ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_generate_iv( &operation1,
|
|
|
|
iv, iv_size,
|
|
|
|
&iv_length ) );
|
2018-12-17 23:34:57 +01:00
|
|
|
output1_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output1, output1_size );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation1, input->x, input->len,
|
|
|
|
output1, output1_size,
|
|
|
|
&output1_length ) );
|
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation1,
|
2019-02-19 19:05:33 +01:00
|
|
|
output1 + output1_length,
|
|
|
|
output1_size - output1_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2018-06-06 18:44:09 +02:00
|
|
|
|
2018-06-08 14:20:49 +02:00
|
|
|
output1_length += function_output_length;
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation1 ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
|
|
|
output2_size = output1_length;
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output2, output2_size );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation2,
|
|
|
|
iv, iv_length ) );
|
|
|
|
PSA_ASSERT( psa_cipher_update( &operation2, output1, output1_length,
|
|
|
|
output2, output2_size,
|
|
|
|
&output2_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
function_output_length = 0;
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation2,
|
|
|
|
output2 + output2_length,
|
2019-02-19 19:05:33 +01:00
|
|
|
output2_size - output2_length,
|
2018-12-18 00:18:46 +01:00
|
|
|
&function_output_length ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-06-08 14:20:49 +02:00
|
|
|
output2_length += function_output_length;
|
2018-06-06 18:44:09 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation2 ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( input->x, input->len, output2, output2_length );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output1 );
|
|
|
|
mbedtls_free( output2 );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-06 15:36:50 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-08 14:28:46 +02:00
|
|
|
void cipher_verify_output_multipart( int alg_arg,
|
|
|
|
int key_type_arg,
|
2018-06-12 16:06:52 +02:00
|
|
|
data_t *key,
|
|
|
|
data_t *input,
|
2019-02-19 19:44:00 +01:00
|
|
|
int first_part_size_arg )
|
2018-06-06 15:36:50 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-02-19 19:44:00 +01:00
|
|
|
size_t first_part_size = first_part_size_arg;
|
2018-06-06 15:36:50 +02:00
|
|
|
unsigned char iv[16] = {0};
|
|
|
|
size_t iv_size = 16;
|
|
|
|
size_t iv_length = 0;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output1 = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output1_buffer_size = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
size_t output1_length = 0;
|
2018-06-12 16:06:52 +02:00
|
|
|
unsigned char *output2 = NULL;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t output2_buffer_size = 0;
|
2018-06-06 15:36:50 +02:00
|
|
|
size_t output2_length = 0;
|
2018-06-08 14:20:49 +02:00
|
|
|
size_t function_output_length;
|
2019-01-04 12:48:27 +01:00
|
|
|
psa_cipher_operation_t operation1 = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
psa_cipher_operation_t operation2 = PSA_CIPHER_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
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 );
|
2018-07-05 14:22:45 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key->x, key->len, &handle ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_encrypt_setup( &operation1,
|
|
|
|
handle, alg ) );
|
|
|
|
PSA_ASSERT( psa_cipher_decrypt_setup( &operation2,
|
|
|
|
handle, alg ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_generate_iv( &operation1,
|
|
|
|
iv, iv_size,
|
|
|
|
&iv_length ) );
|
2018-12-17 23:34:57 +01:00
|
|
|
output1_buffer_size = ( (size_t) input->len +
|
|
|
|
PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output1, output1_buffer_size );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2019-02-19 19:44:00 +01:00
|
|
|
TEST_ASSERT( first_part_size <= input->len );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation1, input->x, first_part_size,
|
|
|
|
output1, output1_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output1_length += function_output_length;
|
2018-06-06 18:44:09 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation1,
|
|
|
|
input->x + first_part_size,
|
|
|
|
input->len - first_part_size,
|
|
|
|
output1, output1_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output1_length += function_output_length;
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation1,
|
|
|
|
output1 + output1_length,
|
|
|
|
output1_buffer_size - output1_length,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output1_length += function_output_length;
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation1 ) );
|
2018-06-06 15:19:24 +02:00
|
|
|
|
2018-06-08 14:20:49 +02:00
|
|
|
output2_buffer_size = output1_length;
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output2, output2_buffer_size );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_set_iv( &operation2,
|
|
|
|
iv, iv_length ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation2, output1, first_part_size,
|
|
|
|
output2, output2_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output2_length += function_output_length;
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_update( &operation2,
|
|
|
|
output1 + first_part_size,
|
|
|
|
output1_length - first_part_size,
|
|
|
|
output2, output2_buffer_size,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output2_length += function_output_length;
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_finish( &operation2,
|
|
|
|
output2 + output2_length,
|
|
|
|
output2_buffer_size - output2_length,
|
|
|
|
&function_output_length ) );
|
2018-06-08 14:20:49 +02:00
|
|
|
output2_length += function_output_length;
|
2018-06-06 18:44:09 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_cipher_abort( &operation2 ) );
|
2018-06-06 15:36:50 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( input->x, input->len, output2, output2_length );
|
2018-03-28 14:14:59 +02:00
|
|
|
|
|
|
|
exit:
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output1 );
|
|
|
|
mbedtls_free( output2 );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-03-28 14:14:59 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-04-30 17:06:50 +02:00
|
|
|
|
2018-06-11 19:33:02 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-08-17 18:45:42 +02:00
|
|
|
void aead_encrypt_decrypt( int key_type_arg, data_t *key_data,
|
2018-06-18 16:04:39 +02:00
|
|
|
int alg_arg,
|
2018-08-17 18:45:42 +02:00
|
|
|
data_t *nonce,
|
|
|
|
data_t *additional_data,
|
|
|
|
data_t *input_data,
|
2018-06-18 16:04:39 +02:00
|
|
|
int expected_result_arg )
|
2018-06-11 19:33:02 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-11 19:33:02 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output_data = NULL;
|
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
|
|
|
unsigned char *output_data2 = NULL;
|
|
|
|
size_t output_length2 = 0;
|
2019-05-14 16:09:40 +02:00
|
|
|
size_t tag_length = PSA_AEAD_TAG_LENGTH( alg );
|
2018-06-18 16:35:34 +02:00
|
|
|
psa_status_t expected_result = expected_result_arg;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-06-18 16:35:34 +02:00
|
|
|
output_size = input_data->len + tag_length;
|
2019-05-14 16:09:40 +02:00
|
|
|
/* For all currently defined algorithms, PSA_AEAD_ENCRYPT_OUTPUT_SIZE
|
|
|
|
* should be exact. */
|
|
|
|
if( expected_result != PSA_ERROR_INVALID_ARGUMENT )
|
|
|
|
TEST_EQUAL( output_size,
|
|
|
|
PSA_AEAD_ENCRYPT_OUTPUT_SIZE( alg, input_data->len ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_data, output_size );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
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 );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_aead_encrypt( handle, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x,
|
|
|
|
additional_data->len,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
output_data, output_size,
|
2018-12-18 00:33:25 +01:00
|
|
|
&output_length ),
|
|
|
|
expected_result );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
|
|
|
if( PSA_SUCCESS == expected_result )
|
|
|
|
{
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_data2, output_length );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-05-14 16:09:40 +02:00
|
|
|
/* For all currently defined algorithms, PSA_AEAD_DECRYPT_OUTPUT_SIZE
|
|
|
|
* should be exact. */
|
|
|
|
TEST_EQUAL( input_data->len,
|
|
|
|
PSA_AEAD_DECRYPT_OUTPUT_SIZE( alg, output_length ) );
|
|
|
|
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_aead_decrypt( handle, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x,
|
|
|
|
additional_data->len,
|
|
|
|
output_data, output_length,
|
|
|
|
output_data2, output_length,
|
2018-12-18 00:33:25 +01:00
|
|
|
&output_length2 ),
|
|
|
|
expected_result );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( input_data->x, input_data->len,
|
|
|
|
output_data2, output_length2 );
|
2018-06-11 19:33:02 +02:00
|
|
|
}
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-06-11 19:33:02 +02:00
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-11 19:33:02 +02:00
|
|
|
mbedtls_free( output_data );
|
|
|
|
mbedtls_free( output_data2 );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-08-17 18:45:42 +02:00
|
|
|
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 )
|
2018-06-11 19:33:02 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-11 19:33:02 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output_data = NULL;
|
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
2019-05-14 16:09:40 +02:00
|
|
|
size_t tag_length = PSA_AEAD_TAG_LENGTH( alg );
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-06-18 16:35:34 +02:00
|
|
|
output_size = input_data->len + tag_length;
|
2019-05-14 16:09:40 +02:00
|
|
|
/* 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 ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_data, output_size );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_aead_encrypt( handle, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x, additional_data->len,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
output_data, output_size,
|
|
|
|
&output_length ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_result->x, expected_result->len,
|
|
|
|
output_data, output_length );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-06-11 19:33:02 +02:00
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-11 19:33:02 +02:00
|
|
|
mbedtls_free( output_data );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-08-17 18:45:42 +02:00
|
|
|
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 expected_result_arg )
|
2018-06-11 19:33:02 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-11 19:33:02 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output_data = NULL;
|
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
2019-05-14 16:09:40 +02:00
|
|
|
size_t tag_length = PSA_AEAD_TAG_LENGTH( alg );
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-18 16:35:34 +02:00
|
|
|
psa_status_t expected_result = expected_result_arg;
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-05-14 16:09:40 +02:00
|
|
|
output_size = input_data->len - tag_length;
|
|
|
|
/* For all currently defined algorithms, PSA_AEAD_DECRYPT_OUTPUT_SIZE
|
|
|
|
* should be exact. */
|
|
|
|
if( expected_result != PSA_ERROR_INVALID_ARGUMENT )
|
|
|
|
TEST_EQUAL( output_size,
|
|
|
|
PSA_AEAD_DECRYPT_OUTPUT_SIZE( alg, input_data->len ) );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_data, output_size );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( psa_aead_decrypt( handle, alg,
|
|
|
|
nonce->x, nonce->len,
|
|
|
|
additional_data->x,
|
|
|
|
additional_data->len,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
output_data, output_size,
|
2018-12-18 00:33:25 +01:00
|
|
|
&output_length ),
|
|
|
|
expected_result );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
2018-06-18 15:41:12 +02:00
|
|
|
if( expected_result == PSA_SUCCESS )
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_data->x, expected_data->len,
|
|
|
|
output_data, output_length );
|
2018-06-11 19:33:02 +02:00
|
|
|
|
|
|
|
exit:
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-11 19:33:02 +02:00
|
|
|
mbedtls_free( output_data );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-02-03 23:57:22 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-18 16:04:39 +02:00
|
|
|
void signature_size( int type_arg,
|
|
|
|
int bits,
|
|
|
|
int alg_arg,
|
|
|
|
int expected_size_arg )
|
2018-02-03 23:57:22 +01:00
|
|
|
{
|
|
|
|
psa_key_type_t type = type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-18 15:41:12 +02:00
|
|
|
size_t actual_size = PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE( type, bits, alg );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_size, (size_t) expected_size_arg );
|
2018-02-03 23:57:22 +01:00
|
|
|
exit:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-02-03 22:44:14 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void sign_deterministic( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg, data_t *input_data,
|
|
|
|
data_t *output_data )
|
2018-02-03 22:44:14 +01:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-02-03 22:44:14 +01:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-02-03 23:57:22 +01:00
|
|
|
size_t key_bits;
|
|
|
|
unsigned char *signature = NULL;
|
|
|
|
size_t signature_size;
|
2018-02-03 23:58:03 +01:00
|
|
|
size_t signature_length = 0xdeadbeef;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-02-03 23:57:22 +01:00
|
|
|
|
2018-06-28 12:23:00 +02:00
|
|
|
/* Allocate a buffer which has the size advertized by the
|
|
|
|
* library. */
|
2018-06-18 16:04:39 +02:00
|
|
|
signature_size = PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE( key_type,
|
|
|
|
key_bits, alg );
|
2018-02-03 23:57:22 +01:00
|
|
|
TEST_ASSERT( signature_size != 0 );
|
2018-06-28 00:07:19 +02:00
|
|
|
TEST_ASSERT( signature_size <= PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( signature, signature_size );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-06-28 12:23:00 +02:00
|
|
|
/* Perform the signature. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_sign( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
signature, signature_size,
|
|
|
|
&signature_length ) );
|
2018-06-29 17:30:48 +02:00
|
|
|
/* Verify that the signature is what is expected. */
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( output_data->x, output_data->len,
|
|
|
|
signature, signature_length );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-02-03 23:57:22 +01:00
|
|
|
mbedtls_free( signature );
|
2018-02-03 22:44:14 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void sign_fail( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg, data_t *input_data,
|
2018-06-28 12:23:00 +02:00
|
|
|
int signature_size_arg, int expected_status_arg )
|
2018-02-03 22:44:14 +01:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-02-03 22:44:14 +01:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-28 12:23:00 +02:00
|
|
|
size_t signature_size = signature_size_arg;
|
2018-02-03 22:44:14 +01:00
|
|
|
psa_status_t actual_status;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2018-03-07 16:43:36 +01:00
|
|
|
unsigned char *signature = NULL;
|
2018-02-03 23:58:03 +01:00
|
|
|
size_t signature_length = 0xdeadbeef;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( signature, signature_size );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-03-28 12:46:26 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_sign( handle, alg,
|
2018-06-18 16:35:34 +02:00
|
|
|
input_data->x, input_data->len,
|
2018-02-03 22:44:14 +01:00
|
|
|
signature, signature_size,
|
|
|
|
&signature_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
2018-06-28 12:23:00 +02:00
|
|
|
/* The value of *signature_length is unspecified on error, but
|
|
|
|
* whatever it is, it should be less than signature_size, so that
|
|
|
|
* if the caller tries to read *signature_length bytes without
|
|
|
|
* checking the error code then they don't overflow a buffer. */
|
|
|
|
TEST_ASSERT( signature_length <= signature_size );
|
2018-02-03 22:44:14 +01:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-02-03 22:44:14 +01:00
|
|
|
mbedtls_free( signature );
|
|
|
|
mbedtls_psa_crypto_free( );
|
2018-06-29 17:30:48 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void sign_verify( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg, data_t *input_data )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-29 17:30:48 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t key_bits;
|
|
|
|
unsigned char *signature = NULL;
|
|
|
|
size_t signature_size;
|
|
|
|
size_t signature_length = 0xdeadbeef;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-29 17:30:48 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-29 17:30:48 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN | PSA_KEY_USAGE_VERIFY );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-29 17:30:48 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-06-29 17:30:48 +02:00
|
|
|
|
|
|
|
/* Allocate a buffer which has the size advertized by the
|
|
|
|
* library. */
|
|
|
|
signature_size = PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE( key_type,
|
|
|
|
key_bits, alg );
|
|
|
|
TEST_ASSERT( signature_size != 0 );
|
|
|
|
TEST_ASSERT( signature_size <= PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( signature, signature_size );
|
2018-06-29 17:30:48 +02:00
|
|
|
|
|
|
|
/* Perform the signature. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_sign( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
signature, signature_size,
|
|
|
|
&signature_length ) );
|
2018-06-29 17:30:48 +02:00
|
|
|
/* Check that the signature length looks sensible. */
|
|
|
|
TEST_ASSERT( signature_length <= signature_size );
|
|
|
|
TEST_ASSERT( signature_length > 0 );
|
|
|
|
|
|
|
|
/* Use the library to verify that the signature is correct. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_verify(
|
|
|
|
handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
signature, signature_length ) );
|
2018-06-29 17:30:48 +02:00
|
|
|
|
|
|
|
if( input_data->len != 0 )
|
|
|
|
{
|
|
|
|
/* Flip a bit in the input and verify that the signature is now
|
|
|
|
* detected as invalid. Flip a bit at the beginning, not at the end,
|
|
|
|
* because ECDSA may ignore the last few bits of the input. */
|
|
|
|
input_data->x[0] ^= 1;
|
2018-12-18 00:33:25 +01:00
|
|
|
TEST_EQUAL( psa_asymmetric_verify( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
signature, signature_length ),
|
|
|
|
PSA_ERROR_INVALID_SIGNATURE );
|
2018-06-29 17:30:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-29 17:30:48 +02:00
|
|
|
mbedtls_free( signature );
|
|
|
|
mbedtls_psa_crypto_free( );
|
2018-02-03 22:44:14 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-03-28 00:21:33 +02:00
|
|
|
|
2018-05-08 10:18:38 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void asymmetric_verify( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg, data_t *hash_data,
|
|
|
|
data_t *signature_data )
|
2018-05-08 10:18:38 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-05-08 10:18:38 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-05-08 10:18:38 +02:00
|
|
|
|
2018-06-28 00:07:19 +02:00
|
|
|
TEST_ASSERT( signature_data->len <= PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE );
|
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-05-08 10:18:38 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_VERIFY );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-05-08 10:18:38 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-05-08 10:18:38 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_verify( handle, alg,
|
|
|
|
hash_data->x, hash_data->len,
|
|
|
|
signature_data->x,
|
|
|
|
signature_data->len ) );
|
2018-05-08 10:18:38 +02:00
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-05-08 10:18:38 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-05-02 22:16:26 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-12 16:06:52 +02:00
|
|
|
void asymmetric_verify_fail( int key_type_arg, data_t *key_data,
|
|
|
|
int alg_arg, data_t *hash_data,
|
|
|
|
data_t *signature_data,
|
|
|
|
int expected_status_arg )
|
2018-05-02 22:16:26 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-05-02 22:16:26 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t actual_status;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_VERIFY );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-04 15:45:27 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_verify( handle, alg,
|
2018-06-18 16:35:34 +02:00
|
|
|
hash_data->x, hash_data->len,
|
2018-06-18 15:41:12 +02:00
|
|
|
signature_data->x,
|
2018-06-18 16:35:34 +02:00
|
|
|
signature_data->len );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-05-02 22:16:26 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-29 19:12:28 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void asymmetric_encrypt( int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input_data,
|
2018-06-30 18:42:41 +02:00
|
|
|
data_t *label,
|
2018-06-29 19:12:28 +02:00
|
|
|
int expected_output_length_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-29 19:12:28 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t expected_output_length = expected_output_length_arg;
|
|
|
|
size_t key_bits;
|
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_size;
|
|
|
|
size_t output_length = ~0;
|
|
|
|
psa_status_t actual_status;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-29 19:12:28 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-12-03 15:36:32 +01:00
|
|
|
|
2018-06-29 19:12:28 +02:00
|
|
|
/* Import the key */
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_ENCRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-29 19:12:28 +02:00
|
|
|
|
|
|
|
/* Determine the maximum output length */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-06-29 19:12:28 +02:00
|
|
|
output_size = PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE( key_type, key_bits, alg );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_size );
|
2018-06-29 19:12:28 +02:00
|
|
|
|
|
|
|
/* Encrypt the input */
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_encrypt( handle, alg,
|
2018-06-29 19:12:28 +02:00
|
|
|
input_data->x, input_data->len,
|
2018-06-30 18:42:41 +02:00
|
|
|
label->x, label->len,
|
2018-06-29 19:12:28 +02:00
|
|
|
output, output_size,
|
|
|
|
&output_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
TEST_EQUAL( output_length, expected_output_length );
|
2018-06-29 19:12:28 +02:00
|
|
|
|
2018-06-30 18:42:41 +02:00
|
|
|
/* If the label is empty, the test framework puts a non-null pointer
|
|
|
|
* in label->x. Test that a null pointer works as well. */
|
|
|
|
if( label->len == 0 )
|
|
|
|
{
|
|
|
|
output_length = ~0;
|
2018-09-26 18:19:24 +02:00
|
|
|
if( output_size != 0 )
|
|
|
|
memset( output, 0, output_size );
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_encrypt( handle, alg,
|
2018-06-30 18:42:41 +02:00
|
|
|
input_data->x, input_data->len,
|
|
|
|
NULL, label->len,
|
|
|
|
output, output_size,
|
|
|
|
&output_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
|
|
|
TEST_EQUAL( output_length, expected_output_length );
|
2018-06-30 18:42:41 +02:00
|
|
|
}
|
|
|
|
|
2018-06-29 19:12:28 +02:00
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-29 19:12:28 +02:00
|
|
|
mbedtls_free( output );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-05-02 22:16:26 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-30 18:42:41 +02:00
|
|
|
void asymmetric_encrypt_decrypt( int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input_data,
|
|
|
|
data_t *label )
|
2018-05-02 22:16:26 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-05-02 22:16:26 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2018-06-30 18:54:48 +02:00
|
|
|
size_t key_bits;
|
2018-05-02 22:16:26 +02:00
|
|
|
unsigned char *output = NULL;
|
2018-06-30 18:54:48 +02:00
|
|
|
size_t output_size;
|
|
|
|
size_t output_length = ~0;
|
2018-05-02 22:56:12 +02:00
|
|
|
unsigned char *output2 = NULL;
|
2018-06-30 18:54:48 +02:00
|
|
|
size_t output2_size;
|
|
|
|
size_t output2_length = ~0;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
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 );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-30 18:54:48 +02:00
|
|
|
|
|
|
|
/* Determine the maximum ciphertext length */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
key_bits = psa_get_key_bits( &attributes );
|
2018-06-30 18:54:48 +02:00
|
|
|
output_size = PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE( key_type, key_bits, alg );
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_size );
|
2018-06-30 18:54:48 +02:00
|
|
|
output2_size = input_data->len;
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output2, output2_size );
|
2018-06-30 18:54:48 +02:00
|
|
|
|
2018-06-08 18:11:54 +02:00
|
|
|
/* We test encryption by checking that encrypt-then-decrypt gives back
|
|
|
|
* the original plaintext because of the non-optional random
|
|
|
|
* part of encryption process which prevents using fixed vectors. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_encrypt( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
label->x, label->len,
|
|
|
|
output, output_size,
|
|
|
|
&output_length ) );
|
2018-06-30 18:54:48 +02:00
|
|
|
/* We don't know what ciphertext length to expect, but check that
|
|
|
|
* it looks sensible. */
|
|
|
|
TEST_ASSERT( output_length <= output_size );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_decrypt( handle, alg,
|
|
|
|
output, output_length,
|
|
|
|
label->x, label->len,
|
|
|
|
output2, output2_size,
|
|
|
|
&output2_length ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( input_data->x, input_data->len,
|
|
|
|
output2, output2_length );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
|
|
|
mbedtls_free( output2 );
|
2018-05-02 22:16:26 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-30 18:42:41 +02:00
|
|
|
void asymmetric_decrypt( int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input_data,
|
|
|
|
data_t *label,
|
2018-06-29 21:54:10 +02:00
|
|
|
data_t *expected_data )
|
2018-05-02 22:16:26 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-05-02 22:16:26 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output = NULL;
|
2018-06-04 15:31:13 +02:00
|
|
|
size_t output_size = 0;
|
2018-06-30 18:54:48 +02:00
|
|
|
size_t output_length = ~0;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-02-06 13:57:46 +01:00
|
|
|
output_size = expected_data->len;
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_size );
|
2018-05-31 13:25:48 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-12-18 00:18:46 +01:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
|
|
|
|
PSA_ASSERT( psa_asymmetric_decrypt( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
label->x, label->len,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
&output_length ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_data->x, expected_data->len,
|
|
|
|
output, output_length );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-06-30 18:42:41 +02:00
|
|
|
/* If the label is empty, the test framework puts a non-null pointer
|
|
|
|
* in label->x. Test that a null pointer works as well. */
|
|
|
|
if( label->len == 0 )
|
|
|
|
{
|
|
|
|
output_length = ~0;
|
2018-09-26 18:19:24 +02:00
|
|
|
if( output_size != 0 )
|
|
|
|
memset( output, 0, output_size );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_asymmetric_decrypt( handle, alg,
|
|
|
|
input_data->x, input_data->len,
|
|
|
|
NULL, label->len,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
&output_length ) );
|
2018-09-27 13:57:19 +02:00
|
|
|
ASSERT_COMPARE( expected_data->x, expected_data->len,
|
|
|
|
output, output_length );
|
2018-06-30 18:42:41 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 22:16:26 +02:00
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-12 16:06:52 +02:00
|
|
|
mbedtls_free( output );
|
2018-05-02 22:16:26 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2018-06-30 18:42:41 +02:00
|
|
|
void asymmetric_decrypt_fail( int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *input_data,
|
|
|
|
data_t *label,
|
2019-02-06 13:57:46 +01:00
|
|
|
int output_size_arg,
|
2018-06-18 15:41:12 +02:00
|
|
|
int expected_status_arg )
|
2018-05-02 22:16:26 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-05-02 22:16:26 +02:00
|
|
|
psa_key_type_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
unsigned char *output = NULL;
|
2019-02-06 13:57:46 +01:00
|
|
|
size_t output_size = output_size_arg;
|
2018-06-30 18:54:48 +02:00
|
|
|
size_t output_length = ~0;
|
2018-05-02 22:16:26 +02:00
|
|
|
psa_status_t actual_status;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, output_size );
|
2018-05-31 13:25:48 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DECRYPT );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-06-04 15:45:27 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-06-18 15:41:12 +02:00
|
|
|
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_decrypt( handle, alg,
|
2018-06-18 16:35:34 +02:00
|
|
|
input_data->x, input_data->len,
|
2018-06-30 18:42:41 +02:00
|
|
|
label->x, label->len,
|
2018-06-18 16:35:34 +02:00
|
|
|
output, output_size,
|
2018-06-18 15:41:12 +02:00
|
|
|
&output_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
2018-06-30 18:54:48 +02:00
|
|
|
TEST_ASSERT( output_length <= output_size );
|
2018-05-02 22:16:26 +02:00
|
|
|
|
2018-06-30 18:42:41 +02:00
|
|
|
/* If the label is empty, the test framework puts a non-null pointer
|
|
|
|
* in label->x. Test that a null pointer works as well. */
|
|
|
|
if( label->len == 0 )
|
|
|
|
{
|
|
|
|
output_length = ~0;
|
2018-09-26 18:19:24 +02:00
|
|
|
if( output_size != 0 )
|
|
|
|
memset( output, 0, output_size );
|
2018-12-03 15:36:32 +01:00
|
|
|
actual_status = psa_asymmetric_decrypt( handle, alg,
|
2018-06-30 18:42:41 +02:00
|
|
|
input_data->x, input_data->len,
|
|
|
|
NULL, label->len,
|
|
|
|
output, output_size,
|
|
|
|
&output_length );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_status, expected_status );
|
2018-06-30 18:54:48 +02:00
|
|
|
TEST_ASSERT( output_length <= output_size );
|
2018-06-30 18:42:41 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 22:16:26 +02:00
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-18 15:41:12 +02:00
|
|
|
mbedtls_free( output );
|
2018-05-02 22:16:26 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
2018-05-31 13:25:48 +02:00
|
|
|
/* END_CASE */
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2019-01-04 15:11:48 +01:00
|
|
|
/* BEGIN_CASE */
|
2019-05-16 16:59:18 +02:00
|
|
|
void key_derivation_init( )
|
2019-01-04 15:11:48 +01:00
|
|
|
{
|
|
|
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
|
|
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
|
|
|
* though it's OK by the C standard. We could test for this, but we'd need
|
|
|
|
* to supress the Clang warning for the test. */
|
2019-02-07 17:33:37 +01:00
|
|
|
size_t capacity;
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
psa_key_derivation_operation_t func = psa_key_derivation_operation_init( );
|
|
|
|
psa_key_derivation_operation_t init = PSA_KEY_DERIVATION_OPERATION_INIT;
|
|
|
|
psa_key_derivation_operation_t zero;
|
2019-01-04 15:11:48 +01:00
|
|
|
|
|
|
|
memset( &zero, 0, sizeof( zero ) );
|
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
/* A default operation should not be able to report its capacity. */
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_get_capacity( &func, &capacity ),
|
2019-02-15 14:05:49 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_get_capacity( &init, &capacity ),
|
2019-02-15 14:05:49 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_get_capacity( &zero, &capacity ),
|
2019-02-15 14:05:49 +01:00
|
|
|
PSA_ERROR_BAD_STATE );
|
2019-02-07 17:33:37 +01:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
/* A default operation should be abortable without error. */
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort(&func) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_abort(&init) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_abort(&zero) );
|
2019-01-04 15:11:48 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_setup( int key_type_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
int alg_arg,
|
|
|
|
data_t *salt,
|
|
|
|
data_t *label,
|
|
|
|
int requested_capacity_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-07-12 17:17:20 +02:00
|
|
|
size_t key_type = key_type_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t requested_capacity = requested_capacity_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation( &operation, handle, alg,
|
2018-12-18 00:24:04 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
2018-12-18 00:33:25 +01:00
|
|
|
requested_capacity ),
|
|
|
|
expected_status );
|
2018-07-12 17:17:20 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-12 17:17:20 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-10-22 16:24:55 +02:00
|
|
|
/* BEGIN_CASE */
|
2019-05-16 16:59:18 +02:00
|
|
|
void test_derive_invalid_key_derivation_state( )
|
2018-10-22 16:24:55 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-10-31 11:15:58 +01:00
|
|
|
size_t key_type = PSA_KEY_TYPE_DERIVE;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-11-01 11:27:20 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_HKDF( PSA_ALG_SHA_256 );
|
2018-10-25 13:46:09 +02:00
|
|
|
uint8_t buffer[42];
|
2018-11-01 11:27:20 +01:00
|
|
|
size_t capacity = sizeof( buffer );
|
2018-11-01 11:24:23 +01:00
|
|
|
const uint8_t key_data[22] = { 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
|
|
|
|
0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
|
|
|
|
0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b};
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-04-19 19:58:20 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, key_type );
|
2018-10-22 16:24:55 +02:00
|
|
|
|
2019-05-15 20:15:10 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes,
|
|
|
|
key_data, sizeof( key_data ),
|
|
|
|
&handle ) );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
|
|
|
/* valid key derivation */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, handle, alg,
|
2018-12-18 00:18:46 +01:00
|
|
|
NULL, 0,
|
|
|
|
NULL, 0,
|
|
|
|
capacity ) );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
/* state of operation shouldn't allow additional generation */
|
|
|
|
TEST_EQUAL( psa_key_derivation( &operation, handle, alg,
|
2018-12-18 00:24:04 +01:00
|
|
|
NULL, 0,
|
|
|
|
NULL, 0,
|
2018-12-18 00:33:25 +01:00
|
|
|
capacity ),
|
|
|
|
PSA_ERROR_BAD_STATE );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation, buffer, capacity ) );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_output_bytes( &operation, buffer, capacity ),
|
2019-02-14 12:48:10 +01:00
|
|
|
PSA_ERROR_INSUFFICIENT_DATA );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-10-25 13:46:09 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2019-05-16 16:59:18 +02:00
|
|
|
void test_derive_invalid_key_derivation_tests( )
|
2018-10-25 13:46:09 +02:00
|
|
|
{
|
|
|
|
uint8_t output_buffer[16];
|
|
|
|
size_t buffer_size = 16;
|
|
|
|
size_t capacity = 0;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:53:40 +02:00
|
|
|
TEST_ASSERT( psa_key_derivation_output_bytes( &operation,
|
|
|
|
output_buffer, buffer_size )
|
2019-02-15 14:05:49 +01:00
|
|
|
== PSA_ERROR_BAD_STATE );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
TEST_ASSERT( psa_key_derivation_get_capacity( &operation, &capacity )
|
2019-02-15 14:05:49 +01:00
|
|
|
== PSA_ERROR_BAD_STATE );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:53:40 +02:00
|
|
|
TEST_ASSERT( psa_key_derivation_output_bytes( &operation,
|
|
|
|
output_buffer, buffer_size )
|
2019-02-15 14:05:49 +01:00
|
|
|
== PSA_ERROR_BAD_STATE );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
TEST_ASSERT( psa_key_derivation_get_capacity( &operation, &capacity )
|
2019-02-15 14:05:49 +01:00
|
|
|
== PSA_ERROR_BAD_STATE );
|
2018-10-25 13:46:09 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-10-22 16:24:55 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-07-12 17:24:54 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_output( int alg_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
data_t *salt,
|
|
|
|
data_t *label,
|
|
|
|
int requested_capacity_arg,
|
|
|
|
data_t *expected_output1,
|
|
|
|
data_t *expected_output2 )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-07-12 17:24:54 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t requested_capacity = requested_capacity_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-07-12 17:24:54 +02:00
|
|
|
uint8_t *expected_outputs[2] =
|
|
|
|
{expected_output1->x, expected_output2->x};
|
|
|
|
size_t output_sizes[2] =
|
|
|
|
{expected_output1->len, expected_output2->len};
|
|
|
|
size_t output_buffer_size = 0;
|
|
|
|
uint8_t *output_buffer = NULL;
|
|
|
|
size_t expected_capacity;
|
|
|
|
size_t current_capacity;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-12 17:24:54 +02:00
|
|
|
psa_status_t status;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for( i = 0; i < ARRAY_LENGTH( expected_outputs ); i++ )
|
|
|
|
{
|
|
|
|
if( output_sizes[i] > output_buffer_size )
|
|
|
|
output_buffer_size = output_sizes[i];
|
|
|
|
if( output_sizes[i] == 0 )
|
|
|
|
expected_outputs[i] = NULL;
|
|
|
|
}
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_buffer, output_buffer_size );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-12 17:24:54 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, PSA_KEY_TYPE_DERIVE );
|
2018-07-12 17:24:54 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-12 17:24:54 +02:00
|
|
|
|
|
|
|
/* Extraction phase. */
|
2019-01-07 22:59:38 +01:00
|
|
|
if( PSA_ALG_IS_HKDF( alg ) )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_set_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
requested_capacity ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SALT,
|
2019-01-07 22:59:38 +01:00
|
|
|
salt->x, salt->len ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_key( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET,
|
2019-01-07 22:59:38 +01:00
|
|
|
handle ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-01-07 22:59:38 +01:00
|
|
|
label->x, label->len ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// legacy
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, handle, alg,
|
2019-01-07 22:59:38 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
|
|
|
requested_capacity ) );
|
|
|
|
}
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_get_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
¤t_capacity ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( current_capacity, requested_capacity );
|
2018-07-12 17:24:54 +02:00
|
|
|
expected_capacity = requested_capacity;
|
|
|
|
|
|
|
|
/* Expansion phase. */
|
|
|
|
for( i = 0; i < ARRAY_LENGTH( expected_outputs ); i++ )
|
|
|
|
{
|
|
|
|
/* Read some bytes. */
|
2019-05-16 17:31:03 +02:00
|
|
|
status = psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output_buffer, output_sizes[i] );
|
2018-07-12 17:24:54 +02:00
|
|
|
if( expected_capacity == 0 && output_sizes[i] == 0 )
|
|
|
|
{
|
|
|
|
/* Reading 0 bytes when 0 bytes are available can go either way. */
|
|
|
|
TEST_ASSERT( status == PSA_SUCCESS ||
|
2019-02-14 12:48:10 +01:00
|
|
|
status == PSA_ERROR_INSUFFICIENT_DATA );
|
2018-07-12 17:24:54 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if( expected_capacity == 0 ||
|
|
|
|
output_sizes[i] > expected_capacity )
|
|
|
|
{
|
|
|
|
/* Capacity exceeded. */
|
2019-02-14 12:48:10 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_INSUFFICIENT_DATA );
|
2018-07-12 17:24:54 +02:00
|
|
|
expected_capacity = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Success. Check the read data. */
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-07-12 17:24:54 +02:00
|
|
|
if( output_sizes[i] != 0 )
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( output_buffer, output_sizes[i],
|
|
|
|
expected_outputs[i], output_sizes[i] );
|
2019-05-16 17:31:03 +02:00
|
|
|
/* Check the operation status. */
|
2018-07-12 17:24:54 +02:00
|
|
|
expected_capacity -= output_sizes[i];
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_get_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
¤t_capacity ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( expected_capacity, current_capacity );
|
2018-07-12 17:24:54 +02:00
|
|
|
}
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-07-12 17:24:54 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( output_buffer );
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-12 17:24:54 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-07-17 21:06:59 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_full( int alg_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
data_t *salt,
|
|
|
|
data_t *label,
|
|
|
|
int requested_capacity_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-07-17 21:06:59 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t requested_capacity = requested_capacity_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-07-17 21:06:59 +02:00
|
|
|
unsigned char output_buffer[16];
|
|
|
|
size_t expected_capacity = requested_capacity;
|
|
|
|
size_t current_capacity;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-17 21:06:59 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, PSA_KEY_TYPE_DERIVE );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&handle ) );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
|
|
|
/* Extraction phase. */
|
2019-01-07 22:59:38 +01:00
|
|
|
if( PSA_ALG_IS_HKDF( alg ) )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
|
|
|
PSA_ASSERT( psa_key_derivation_set_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
requested_capacity ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SALT,
|
2019-01-07 22:59:38 +01:00
|
|
|
salt->x, salt->len ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_key( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET,
|
2019-01-07 22:59:38 +01:00
|
|
|
handle ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-01-07 22:59:38 +01:00
|
|
|
label->x, label->len ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// legacy
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, handle, alg,
|
2019-01-07 22:59:38 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
|
|
|
requested_capacity ) );
|
|
|
|
}
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_get_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
¤t_capacity ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( current_capacity, expected_capacity );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
|
|
|
/* Expansion phase. */
|
|
|
|
while( current_capacity > 0 )
|
|
|
|
{
|
|
|
|
size_t read_size = sizeof( output_buffer );
|
|
|
|
if( read_size > current_capacity )
|
|
|
|
read_size = current_capacity;
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output_buffer,
|
|
|
|
read_size ) );
|
2018-07-17 21:06:59 +02:00
|
|
|
expected_capacity -= read_size;
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_get_capacity( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
¤t_capacity ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( current_capacity, expected_capacity );
|
2018-07-17 21:06:59 +02:00
|
|
|
}
|
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
/* Check that the operation refuses to go over capacity. */
|
|
|
|
TEST_EQUAL( psa_key_derivation_output_bytes( &operation, output_buffer, 1 ),
|
2019-02-14 12:48:10 +01:00
|
|
|
PSA_ERROR_INSUFFICIENT_DATA );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-07-17 21:06:59 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-07-17 21:06:59 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-07-12 17:29:22 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_key_exercise( int alg_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
data_t *salt,
|
|
|
|
data_t *label,
|
|
|
|
int derived_type_arg,
|
|
|
|
int derived_bits_arg,
|
|
|
|
int derived_usage_arg,
|
|
|
|
int derived_alg_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t base_handle = 0;
|
|
|
|
psa_key_handle_t derived_handle = 0;
|
2018-07-12 17:29:22 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t derived_type = derived_type_arg;
|
|
|
|
size_t derived_bits = derived_bits_arg;
|
|
|
|
psa_key_usage_t derived_usage = derived_usage_arg;
|
|
|
|
psa_algorithm_t derived_alg = derived_alg_arg;
|
|
|
|
size_t capacity = PSA_BITS_TO_BYTES( derived_bits );
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-12 17:29:22 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, PSA_KEY_TYPE_DERIVE );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, key_data->x, key_data->len,
|
|
|
|
&base_handle ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Derive a key. */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, base_handle, alg,
|
2018-12-18 00:18:46 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
|
|
|
capacity ) );
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, derived_usage );
|
|
|
|
psa_set_key_algorithm( &attributes, derived_alg );
|
|
|
|
psa_set_key_type( &attributes, derived_type );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &attributes, derived_bits );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_key( &attributes, &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
&derived_handle ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Test the key information */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( derived_handle, &got_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &got_attributes ), derived_type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &got_attributes ), derived_bits );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Exercise the derived key. */
|
2018-12-03 15:36:32 +01:00
|
|
|
if( ! exercise_key( derived_handle, derived_usage, derived_alg ) )
|
2018-07-12 17:29:22 +02:00
|
|
|
goto exit;
|
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &got_attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( base_handle );
|
|
|
|
psa_destroy_key( derived_handle );
|
2018-07-12 17:29:22 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void derive_key_export( int alg_arg,
|
|
|
|
data_t *key_data,
|
|
|
|
data_t *salt,
|
|
|
|
data_t *label,
|
|
|
|
int bytes1_arg,
|
|
|
|
int bytes2_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t base_handle = 0;
|
|
|
|
psa_key_handle_t derived_handle = 0;
|
2018-07-12 17:29:22 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
size_t bytes1 = bytes1_arg;
|
|
|
|
size_t bytes2 = bytes2_arg;
|
|
|
|
size_t capacity = bytes1 + bytes2;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-09-27 13:54:18 +02:00
|
|
|
uint8_t *output_buffer = NULL;
|
|
|
|
uint8_t *export_buffer = NULL;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t base_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_attributes_t derived_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-07-12 17:29:22 +02:00
|
|
|
size_t length;
|
|
|
|
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output_buffer, capacity );
|
|
|
|
ASSERT_ALLOC( export_buffer, capacity );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &base_attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &base_attributes, alg );
|
|
|
|
psa_set_key_type( &base_attributes, PSA_KEY_TYPE_DERIVE );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &base_attributes, key_data->x, key_data->len,
|
|
|
|
&base_handle ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Derive some material and output it. */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, base_handle, alg,
|
2018-12-18 00:18:46 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
|
|
|
capacity ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output_buffer,
|
|
|
|
capacity ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Derive the same output again, but this time store it in key objects. */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation( &operation, base_handle, alg,
|
2018-12-18 00:18:46 +01:00
|
|
|
salt->x, salt->len,
|
|
|
|
label->x, label->len,
|
|
|
|
capacity ) );
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &derived_attributes, PSA_KEY_USAGE_EXPORT );
|
|
|
|
psa_set_key_algorithm( &derived_attributes, 0 );
|
|
|
|
psa_set_key_type( &derived_attributes, PSA_KEY_TYPE_RAW_DATA );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &derived_attributes, PSA_BYTES_TO_BITS( bytes1 ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_key( &derived_attributes, &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
&derived_handle ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_key( derived_handle,
|
|
|
|
export_buffer, bytes1,
|
|
|
|
&length ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( length, bytes1 );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_destroy_key( derived_handle ) );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &derived_attributes, PSA_BYTES_TO_BITS( bytes2 ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_key( &derived_attributes, &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
&derived_handle ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_export_key( derived_handle,
|
|
|
|
export_buffer + bytes1, bytes2,
|
|
|
|
&length ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( length, bytes2 );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
/* Compare the outputs from the two runs. */
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( output_buffer, bytes1 + bytes2,
|
|
|
|
export_buffer, capacity );
|
2018-07-12 17:29:22 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( output_buffer );
|
|
|
|
mbedtls_free( export_buffer );
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( base_handle );
|
|
|
|
psa_destroy_key( derived_handle );
|
2018-07-12 17:29:22 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-09-18 12:01:02 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void key_agreement_setup( int alg_arg,
|
|
|
|
int our_key_type_arg, data_t *our_key_data,
|
|
|
|
data_t *peer_key_data,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t our_key = 0;
|
2018-09-18 12:01:02 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t our_key_type = our_key_type_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-11 21:27:06 +02:00
|
|
|
psa_status_t expected_status = expected_status_arg;
|
|
|
|
psa_status_t status;
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, our_key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes,
|
|
|
|
our_key_data->x, our_key_data->len,
|
|
|
|
&our_key ) );
|
2018-09-18 12:01:02 +02:00
|
|
|
|
2019-04-11 21:27:06 +02:00
|
|
|
/* The tests currently include inputs that should fail at either step.
|
|
|
|
* Test cases that fail at the setup step should be changed to call
|
|
|
|
* key_derivation_setup instead, and this function should be renamed
|
|
|
|
* to key_agreement_fail. */
|
2019-05-16 17:31:03 +02:00
|
|
|
status = psa_key_derivation_setup( &operation, alg );
|
2019-04-11 21:27:06 +02:00
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
{
|
2019-05-16 17:53:40 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_key_agreement(
|
|
|
|
&operation, PSA_KEY_DERIVATION_INPUT_SECRET,
|
|
|
|
our_key,
|
|
|
|
peer_key_data->x, peer_key_data->len ),
|
2019-04-11 21:27:06 +02:00
|
|
|
expected_status );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TEST_ASSERT( status == expected_status );
|
|
|
|
}
|
2018-09-18 12:01:02 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-09-18 12:01:02 +02:00
|
|
|
psa_destroy_key( our_key );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2019-04-11 22:12:38 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void raw_key_agreement( int alg_arg,
|
|
|
|
int our_key_type_arg, data_t *our_key_data,
|
|
|
|
data_t *peer_key_data,
|
|
|
|
data_t *expected_output )
|
|
|
|
{
|
|
|
|
psa_key_handle_t our_key = 0;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t our_key_type = our_key_type_arg;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-11 22:12:38 +02:00
|
|
|
unsigned char *output = NULL;
|
|
|
|
size_t output_length = ~0;
|
|
|
|
|
|
|
|
ASSERT_ALLOC( output, expected_output->len );
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, our_key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes,
|
|
|
|
our_key_data->x, our_key_data->len,
|
|
|
|
&our_key ) );
|
2019-04-11 22:12:38 +02:00
|
|
|
|
2019-05-16 18:00:41 +02:00
|
|
|
PSA_ASSERT( psa_raw_key_agreement( alg, our_key,
|
|
|
|
peer_key_data->x, peer_key_data->len,
|
|
|
|
output, expected_output->len,
|
|
|
|
&output_length ) );
|
2019-04-11 22:12:38 +02:00
|
|
|
ASSERT_COMPARE( output, output_length,
|
|
|
|
expected_output->x, expected_output->len );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_free( output );
|
|
|
|
psa_destroy_key( our_key );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-09-18 12:11:34 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void key_agreement_capacity( int alg_arg,
|
|
|
|
int our_key_type_arg, data_t *our_key_data,
|
|
|
|
data_t *peer_key_data,
|
|
|
|
int expected_capacity_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t our_key = 0;
|
2018-09-18 12:11:34 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t our_key_type = our_key_type_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-09-18 12:11:34 +02:00
|
|
|
size_t actual_capacity;
|
2018-10-25 22:36:12 +02:00
|
|
|
unsigned char output[16];
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, our_key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes,
|
|
|
|
our_key_data->x, our_key_data->len,
|
|
|
|
&our_key ) );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
2019-05-16 17:53:40 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_key_agreement(
|
|
|
|
&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET, our_key,
|
|
|
|
peer_key_data->x, peer_key_data->len ) );
|
2019-04-11 22:13:20 +02:00
|
|
|
if( PSA_ALG_IS_HKDF( PSA_ALG_KEY_AGREEMENT_GET_KDF( alg ) ) )
|
|
|
|
{
|
|
|
|
/* The test data is for info="" */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-04-11 22:13:20 +02:00
|
|
|
NULL, 0 ) );
|
|
|
|
}
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2018-10-25 22:36:12 +02:00
|
|
|
/* Test the advertized capacity. */
|
Rename generator functions to psa_key_derivation_xxx
Generators are mostly about key derivation (currently: only about key
derivation). "Generator" is not a commonly used term in cryptography.
So favor "derivation" as terminology. Call a generator a key
derivation operation structure, since it behaves like other multipart
operation structures. Furthermore, the function names are not fully
consistent.
In this commit, I rename the functions to consistently have the prefix
"psa_key_derivation_". I used the following command:
perl -i -pe '%t = (
psa_crypto_generator_t => "psa_key_derivation_operation_t",
psa_crypto_generator_init => "psa_key_derivation_init",
psa_key_derivation_setup => "psa_key_derivation_setup",
psa_key_derivation_input_key => "psa_key_derivation_input_key",
psa_key_derivation_input_bytes => "psa_key_derivation_input_bytes",
psa_key_agreement => "psa_key_derivation_key_agreement",
psa_set_generator_capacity => "psa_key_derivation_set_capacity",
psa_get_generator_capacity => "psa_key_derivation_get_capacity",
psa_generator_read => "psa_key_derivation_output_bytes",
psa_generate_derived_key => "psa_key_derivation_output_key",
psa_generator_abort => "psa_key_derivation_abort",
PSA_CRYPTO_GENERATOR_INIT => "PSA_KEY_DERIVATION_OPERATION_INIT",
PSA_GENERATOR_UNBRIDLED_CAPACITY => "PSA_KEY_DERIVATION_UNLIMITED_CAPACITY",
); s/\b(@{[join("|", keys %t)]})\b/$t{$1}/ge' $(git ls-files)
2019-05-16 15:28:51 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_get_capacity(
|
2019-05-16 17:31:03 +02:00
|
|
|
&operation, &actual_capacity ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( actual_capacity, (size_t) expected_capacity_arg );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2018-10-25 22:36:12 +02:00
|
|
|
/* Test the actual capacity by reading the output. */
|
|
|
|
while( actual_capacity > sizeof( output ) )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output, sizeof( output ) ) );
|
2018-10-25 22:36:12 +02:00
|
|
|
actual_capacity -= sizeof( output );
|
|
|
|
}
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
output, actual_capacity ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
TEST_EQUAL( psa_key_derivation_output_bytes( &operation, output, 1 ),
|
2019-02-14 12:48:10 +01:00
|
|
|
PSA_ERROR_INSUFFICIENT_DATA );
|
2018-10-25 22:36:12 +02:00
|
|
|
|
2018-09-18 12:11:34 +02:00
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-09-18 12:11:34 +02:00
|
|
|
psa_destroy_key( our_key );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void key_agreement_output( int alg_arg,
|
|
|
|
int our_key_type_arg, data_t *our_key_data,
|
|
|
|
data_t *peer_key_data,
|
2018-10-25 22:37:15 +02:00
|
|
|
data_t *expected_output1, data_t *expected_output2 )
|
2018-09-18 12:11:34 +02:00
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t our_key = 0;
|
2018-09-18 12:11:34 +02:00
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_key_type_t our_key_type = our_key_type_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-10-25 22:37:15 +02:00
|
|
|
uint8_t *actual_output = NULL;
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2018-10-25 22:37:15 +02:00
|
|
|
ASSERT_ALLOC( actual_output, MAX( expected_output1->len,
|
|
|
|
expected_output2->len ) );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, our_key_type );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes,
|
|
|
|
our_key_data->x, our_key_data->len,
|
|
|
|
&our_key ) );
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, alg ) );
|
2019-05-16 17:53:40 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_key_agreement(
|
|
|
|
&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET, our_key,
|
|
|
|
peer_key_data->x, peer_key_data->len ) );
|
2019-04-11 22:13:20 +02:00
|
|
|
if( PSA_ALG_IS_HKDF( PSA_ALG_KEY_AGREEMENT_GET_KDF( alg ) ) )
|
|
|
|
{
|
|
|
|
/* The test data is for info="" */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes( &operation,
|
2019-05-16 16:05:19 +02:00
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-04-11 22:13:20 +02:00
|
|
|
NULL, 0 ) );
|
|
|
|
}
|
2018-09-18 12:11:34 +02:00
|
|
|
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
actual_output,
|
|
|
|
expected_output1->len ) );
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( actual_output, expected_output1->len,
|
|
|
|
expected_output1->x, expected_output1->len );
|
2018-10-25 22:37:15 +02:00
|
|
|
if( expected_output2->len != 0 )
|
|
|
|
{
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_bytes( &operation,
|
2019-05-16 17:53:40 +02:00
|
|
|
actual_output,
|
|
|
|
expected_output2->len ) );
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( actual_output, expected_output2->len,
|
|
|
|
expected_output2->x, expected_output2->len );
|
2018-10-25 22:37:15 +02:00
|
|
|
}
|
2018-09-18 12:11:34 +02:00
|
|
|
|
|
|
|
exit:
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2018-09-18 12:11:34 +02:00
|
|
|
psa_destroy_key( our_key );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
mbedtls_free( actual_output );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-19 22:00:52 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-21 10:22:13 +02:00
|
|
|
void generate_random( int bytes_arg )
|
2018-06-19 22:00:52 +02:00
|
|
|
{
|
2018-06-21 10:22:13 +02:00
|
|
|
size_t bytes = bytes_arg;
|
|
|
|
const unsigned char trail[] = "don't overwrite me";
|
2018-09-27 13:54:18 +02:00
|
|
|
unsigned char *output = NULL;
|
|
|
|
unsigned char *changed = NULL;
|
2018-06-21 10:22:13 +02:00
|
|
|
size_t i;
|
|
|
|
unsigned run;
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-09-27 13:54:18 +02:00
|
|
|
ASSERT_ALLOC( output, bytes + sizeof( trail ) );
|
|
|
|
ASSERT_ALLOC( changed, bytes );
|
2018-06-21 10:22:13 +02:00
|
|
|
memcpy( output + bytes, trail, sizeof( trail ) );
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-06-21 10:22:13 +02:00
|
|
|
/* Run several times, to ensure that every output byte will be
|
|
|
|
* nonzero at least once with overwhelming probability
|
|
|
|
* (2^(-8*number_of_runs)). */
|
|
|
|
for( run = 0; run < 10; run++ )
|
|
|
|
{
|
2018-09-26 18:19:24 +02:00
|
|
|
if( bytes != 0 )
|
|
|
|
memset( output, 0, bytes );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_generate_random( output, bytes ) );
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-06-21 10:22:13 +02:00
|
|
|
/* Check that no more than bytes have been overwritten */
|
2018-12-18 00:40:50 +01:00
|
|
|
ASSERT_COMPARE( output + bytes, sizeof( trail ),
|
|
|
|
trail, sizeof( trail ) );
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-06-21 10:22:13 +02:00
|
|
|
for( i = 0; i < bytes; i++ )
|
|
|
|
{
|
|
|
|
if( output[i] != 0 )
|
|
|
|
++changed[i];
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 22:00:52 +02:00
|
|
|
|
2018-06-21 10:22:13 +02:00
|
|
|
/* Check that every byte was changed to nonzero at least once. This
|
|
|
|
* validates that psa_generate_random is overwriting every byte of
|
|
|
|
* the output buffer. */
|
|
|
|
for( i = 0; i < bytes; i++ )
|
2018-06-19 22:00:52 +02:00
|
|
|
{
|
2018-06-21 10:22:13 +02:00
|
|
|
TEST_ASSERT( changed[i] != 0 );
|
2018-06-19 22:00:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_psa_crypto_free( );
|
2018-06-21 10:22:13 +02:00
|
|
|
mbedtls_free( output );
|
|
|
|
mbedtls_free( changed );
|
2018-06-19 22:00:52 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-06-20 00:20:32 +02:00
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void generate_key( int type_arg,
|
|
|
|
int bits_arg,
|
|
|
|
int usage_arg,
|
|
|
|
int alg_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2018-06-20 00:20:32 +02:00
|
|
|
psa_key_type_t type = type_arg;
|
|
|
|
psa_key_usage_t usage = usage_arg;
|
|
|
|
size_t bits = bits_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-04-18 21:44:46 +02:00
|
|
|
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-06-20 00:20:32 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
2018-06-20 00:20:32 +02:00
|
|
|
|
2019-04-18 12:53:30 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &attributes, bits );
|
2018-06-20 00:20:32 +02:00
|
|
|
|
|
|
|
/* Generate a key */
|
2019-05-03 16:44:28 +02:00
|
|
|
TEST_EQUAL( psa_generate_random_key( &attributes, &handle ), expected_status );
|
2019-04-26 17:34:02 +02:00
|
|
|
if( expected_status != PSA_SUCCESS )
|
2019-04-18 12:53:30 +02:00
|
|
|
goto exit;
|
2018-06-20 00:20:32 +02:00
|
|
|
|
|
|
|
/* Test the key information */
|
2019-04-18 21:44:46 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &got_attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &got_attributes ), type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &got_attributes ), bits );
|
2018-06-20 00:20:32 +02:00
|
|
|
|
2018-06-20 18:16:48 +02:00
|
|
|
/* Do something with the key according to its type and permitted usage. */
|
2018-12-03 15:36:32 +01:00
|
|
|
if( ! exercise_key( handle, usage, alg ) )
|
2018-07-01 22:31:34 +02:00
|
|
|
goto exit;
|
2018-06-20 00:20:32 +02:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &got_attributes );
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-20 00:20:32 +02:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-09-06 15:24:41 +02:00
|
|
|
|
2019-04-26 17:34:02 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_RSA_C:MBEDTLS_GENPRIME:MBEDTLS_PKCS1_V15 */
|
|
|
|
void generate_key_rsa( int bits_arg,
|
|
|
|
data_t *e_arg,
|
|
|
|
int expected_status_arg )
|
|
|
|
{
|
|
|
|
psa_key_handle_t handle = 0;
|
|
|
|
psa_key_type_t type = PSA_KEY_TYPE_RSA_KEYPAIR;
|
|
|
|
size_t bits = bits_arg;
|
|
|
|
psa_key_usage_t usage = PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT;
|
|
|
|
psa_algorithm_t alg = PSA_ALG_RSA_PKCS1V15_SIGN_RAW;
|
|
|
|
psa_status_t expected_status = expected_status_arg;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
uint8_t *exported = NULL;
|
|
|
|
size_t exported_size =
|
|
|
|
PSA_KEY_EXPORT_MAX_SIZE( PSA_KEY_TYPE_RSA_PUBLIC_KEY, bits );
|
|
|
|
size_t exported_length = SIZE_MAX;
|
|
|
|
uint8_t *e_read_buffer = NULL;
|
|
|
|
int is_default_public_exponent = 0;
|
2019-04-28 11:44:17 +02:00
|
|
|
size_t e_read_size = PSA_KEY_DOMAIN_PARAMETERS_SIZE( type, bits );
|
2019-04-26 17:34:02 +02:00
|
|
|
size_t e_read_length = SIZE_MAX;
|
|
|
|
|
|
|
|
if( e_arg->len == 0 ||
|
|
|
|
( e_arg->len == 3 &&
|
|
|
|
e_arg->x[0] == 1 && e_arg->x[1] == 0 && e_arg->x[2] == 1 ) )
|
|
|
|
{
|
|
|
|
is_default_public_exponent = 1;
|
|
|
|
e_read_size = 0;
|
|
|
|
}
|
|
|
|
ASSERT_ALLOC( e_read_buffer, e_read_size );
|
|
|
|
ASSERT_ALLOC( exported, exported_size );
|
|
|
|
|
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
|
|
|
|
psa_set_key_usage_flags( &attributes, usage );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
PSA_ASSERT( psa_set_key_domain_parameters( &attributes, type,
|
|
|
|
e_arg->x, e_arg->len ) );
|
|
|
|
psa_set_key_bits( &attributes, bits );
|
|
|
|
|
|
|
|
/* Generate a key */
|
2019-05-03 16:44:28 +02:00
|
|
|
TEST_EQUAL( psa_generate_random_key( &attributes, &handle ), expected_status );
|
2019-04-26 17:34:02 +02:00
|
|
|
if( expected_status != PSA_SUCCESS )
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
/* Test the key information */
|
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), bits );
|
|
|
|
PSA_ASSERT( psa_get_key_domain_parameters( &attributes,
|
|
|
|
e_read_buffer, e_read_size,
|
|
|
|
&e_read_length ) );
|
|
|
|
if( is_default_public_exponent )
|
|
|
|
TEST_EQUAL( e_read_length, 0 );
|
|
|
|
else
|
|
|
|
ASSERT_COMPARE( e_read_buffer, e_read_length, e_arg->x, e_arg->len );
|
|
|
|
|
|
|
|
/* Do something with the key according to its type and permitted usage. */
|
|
|
|
if( ! exercise_key( handle, usage, alg ) )
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
/* Export the key and check the public exponent. */
|
|
|
|
PSA_ASSERT( psa_export_public_key( handle,
|
|
|
|
exported, exported_size,
|
|
|
|
&exported_length ) );
|
|
|
|
{
|
|
|
|
uint8_t *p = exported;
|
|
|
|
uint8_t *end = exported + exported_length;
|
|
|
|
size_t len;
|
|
|
|
/* RSAPublicKey ::= SEQUENCE {
|
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER } -- e
|
|
|
|
*/
|
|
|
|
TEST_EQUAL( 0, mbedtls_asn1_get_tag( &p, end, &len,
|
2019-05-16 17:53:40 +02:00
|
|
|
MBEDTLS_ASN1_SEQUENCE |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED ) );
|
2019-04-26 17:34:02 +02:00
|
|
|
TEST_ASSERT( asn1_skip_integer( &p, end, bits, bits, 1 ) );
|
|
|
|
TEST_EQUAL( 0, mbedtls_asn1_get_tag( &p, end, &len,
|
|
|
|
MBEDTLS_ASN1_INTEGER ) );
|
|
|
|
if( len >= 1 && p[0] == 0 )
|
|
|
|
{
|
|
|
|
++p;
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
if( e_arg->len == 0 )
|
|
|
|
{
|
|
|
|
TEST_EQUAL( len, 3 );
|
|
|
|
TEST_EQUAL( p[0], 1 );
|
|
|
|
TEST_EQUAL( p[1], 0 );
|
|
|
|
TEST_EQUAL( p[2], 1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ASSERT_COMPARE( p, len, e_arg->x, e_arg->len );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
psa_reset_key_attributes( &attributes );
|
|
|
|
psa_destroy_key( handle );
|
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
mbedtls_free( e_read_buffer );
|
|
|
|
mbedtls_free( exported );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-06-18 18:27:26 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_PSA_CRYPTO_STORAGE_C */
|
2019-04-19 14:06:53 +02:00
|
|
|
void persistent_key_load_key_from_storage( data_t *data,
|
|
|
|
int type_arg, int bits_arg,
|
|
|
|
int usage_flags_arg, int alg_arg,
|
|
|
|
int generation_method )
|
2018-06-18 18:27:26 +02:00
|
|
|
{
|
2019-04-19 14:06:53 +02:00
|
|
|
psa_key_id_t key_id = 1;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_key_handle_t handle = 0;
|
2019-04-19 14:06:53 +02:00
|
|
|
psa_key_handle_t base_key = 0;
|
|
|
|
psa_key_type_t type = type_arg;
|
|
|
|
size_t bits = bits_arg;
|
|
|
|
psa_key_usage_t usage_flags = usage_flags_arg;
|
|
|
|
psa_algorithm_t alg = alg_arg;
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-06-18 18:27:26 +02:00
|
|
|
unsigned char *first_export = NULL;
|
|
|
|
unsigned char *second_export = NULL;
|
|
|
|
size_t export_size = PSA_KEY_EXPORT_MAX_SIZE( type, bits );
|
|
|
|
size_t first_exported_length;
|
|
|
|
size_t second_exported_length;
|
|
|
|
|
2019-04-19 14:06:53 +02:00
|
|
|
if( usage_flags & PSA_KEY_USAGE_EXPORT )
|
|
|
|
{
|
|
|
|
ASSERT_ALLOC( first_export, export_size );
|
|
|
|
ASSERT_ALLOC( second_export, export_size );
|
|
|
|
}
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init() );
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2019-05-15 16:12:22 +02:00
|
|
|
psa_set_key_id( &attributes, key_id );
|
2019-04-19 14:06:53 +02:00
|
|
|
psa_set_key_usage_flags( &attributes, usage_flags );
|
|
|
|
psa_set_key_algorithm( &attributes, alg );
|
|
|
|
psa_set_key_type( &attributes, type );
|
2019-04-26 13:49:28 +02:00
|
|
|
psa_set_key_bits( &attributes, bits );
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2018-11-07 17:05:30 +01:00
|
|
|
switch( generation_method )
|
|
|
|
{
|
|
|
|
case IMPORT_KEY:
|
|
|
|
/* Import the key */
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &attributes, data->x, data->len,
|
|
|
|
&handle ) );
|
2018-11-07 17:05:30 +01:00
|
|
|
break;
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2018-11-07 17:05:30 +01:00
|
|
|
case GENERATE_KEY:
|
|
|
|
/* Generate a key */
|
2019-05-03 16:44:28 +02:00
|
|
|
PSA_ASSERT( psa_generate_random_key( &attributes, &handle ) );
|
2018-11-07 17:05:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DERIVE_KEY:
|
2019-04-19 14:06:53 +02:00
|
|
|
{
|
|
|
|
/* Create base key */
|
|
|
|
psa_algorithm_t derive_alg = PSA_ALG_HKDF( PSA_ALG_SHA_256 );
|
|
|
|
psa_key_attributes_t base_attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_set_key_usage_flags( &base_attributes,
|
|
|
|
PSA_KEY_USAGE_DERIVE );
|
|
|
|
psa_set_key_algorithm( &base_attributes, derive_alg );
|
|
|
|
psa_set_key_type( &base_attributes, PSA_KEY_TYPE_DERIVE );
|
2019-05-15 20:22:09 +02:00
|
|
|
PSA_ASSERT( psa_import_key( &base_attributes,
|
|
|
|
data->x, data->len,
|
|
|
|
&base_key ) );
|
2019-04-19 14:06:53 +02:00
|
|
|
/* Derive a key. */
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_setup( &operation, derive_alg ) );
|
2019-05-16 17:53:40 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_key(
|
|
|
|
&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET, base_key ) );
|
2019-04-19 14:06:53 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_input_bytes(
|
2019-05-16 17:31:03 +02:00
|
|
|
&operation, PSA_KEY_DERIVATION_INPUT_INFO,
|
2019-04-19 14:06:53 +02:00
|
|
|
NULL, 0 ) );
|
2019-05-16 17:53:40 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_output_key( &attributes,
|
|
|
|
&operation,
|
|
|
|
&handle ) );
|
2019-05-16 17:31:03 +02:00
|
|
|
PSA_ASSERT( psa_key_derivation_abort( &operation ) );
|
2019-04-19 14:06:53 +02:00
|
|
|
PSA_ASSERT( psa_destroy_key( base_key ) );
|
|
|
|
base_key = 0;
|
|
|
|
}
|
2019-05-16 17:53:40 +02:00
|
|
|
break;
|
2018-11-07 17:05:30 +01:00
|
|
|
}
|
2019-04-19 14:06:53 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2019-04-19 14:06:53 +02:00
|
|
|
/* Export the key if permitted by the key policy. */
|
|
|
|
if( usage_flags & PSA_KEY_USAGE_EXPORT )
|
|
|
|
{
|
|
|
|
PSA_ASSERT( psa_export_key( handle,
|
|
|
|
first_export, export_size,
|
|
|
|
&first_exported_length ) );
|
|
|
|
if( generation_method == IMPORT_KEY )
|
|
|
|
ASSERT_COMPARE( data->x, data->len,
|
|
|
|
first_export, first_exported_length );
|
|
|
|
}
|
2018-06-18 18:27:26 +02:00
|
|
|
|
|
|
|
/* Shutdown and restart */
|
|
|
|
mbedtls_psa_crypto_free();
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init() );
|
2018-06-18 18:27:26 +02:00
|
|
|
|
|
|
|
/* Check key slot still contains key data */
|
2019-05-06 18:44:55 +02:00
|
|
|
PSA_ASSERT( psa_open_key( key_id, &handle ) );
|
2019-04-19 14:06:53 +02:00
|
|
|
PSA_ASSERT( psa_get_key_attributes( handle, &attributes ) );
|
|
|
|
TEST_EQUAL( psa_get_key_id( &attributes ), key_id );
|
|
|
|
TEST_EQUAL( psa_get_key_lifetime( &attributes ),
|
|
|
|
PSA_KEY_LIFETIME_PERSISTENT );
|
|
|
|
TEST_EQUAL( psa_get_key_type( &attributes ), type );
|
|
|
|
TEST_EQUAL( psa_get_key_bits( &attributes ), bits );
|
|
|
|
TEST_EQUAL( psa_get_key_usage_flags( &attributes ), usage_flags );
|
|
|
|
TEST_EQUAL( psa_get_key_algorithm( &attributes ), alg );
|
2018-06-18 18:27:26 +02:00
|
|
|
|
2019-04-19 14:06:53 +02:00
|
|
|
/* Export the key again if permitted by the key policy. */
|
|
|
|
if( usage_flags & PSA_KEY_USAGE_EXPORT )
|
2018-11-07 17:05:30 +01:00
|
|
|
{
|
2019-04-19 14:06:53 +02:00
|
|
|
PSA_ASSERT( psa_export_key( handle,
|
|
|
|
second_export, export_size,
|
|
|
|
&second_exported_length ) );
|
2018-11-07 17:05:30 +01:00
|
|
|
ASSERT_COMPARE( first_export, first_exported_length,
|
|
|
|
second_export, second_exported_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do something with the key according to its type and permitted usage. */
|
2019-04-19 14:06:53 +02:00
|
|
|
if( ! exercise_key( handle, usage_flags, alg ) )
|
2018-11-07 17:05:30 +01:00
|
|
|
goto exit;
|
2018-06-18 18:27:26 +02:00
|
|
|
|
|
|
|
exit:
|
2019-04-26 16:03:33 +02:00
|
|
|
psa_reset_key_attributes( &attributes );
|
2018-06-18 18:27:26 +02:00
|
|
|
mbedtls_free( first_export );
|
|
|
|
mbedtls_free( second_export );
|
2019-05-16 17:31:03 +02:00
|
|
|
psa_key_derivation_abort( &operation );
|
2019-04-19 14:06:53 +02:00
|
|
|
psa_destroy_key( base_key );
|
|
|
|
if( handle == 0 )
|
|
|
|
{
|
|
|
|
/* In case there was a test failure after creating the persistent key
|
|
|
|
* but while it was not open, try to re-open the persistent key
|
|
|
|
* to delete it. */
|
2019-05-06 18:44:55 +02:00
|
|
|
psa_open_key( key_id, &handle );
|
2019-04-19 14:06:53 +02:00
|
|
|
}
|
2018-12-03 15:36:32 +01:00
|
|
|
psa_destroy_key( handle );
|
2018-06-18 18:27:26 +02:00
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
}
|
|
|
|
/* END_CASE */
|