Modifications for psa-crypto in order to integrate with SPM

Add required includes in tests and psa_crypto.c file in order to be able to compilef for the SPM solution.
Some functions needed to be deprecated from psa_crypto.c since they already implemented in the SPM.
This commit is contained in:
mohammad1603 2018-07-03 13:16:15 +03:00 committed by itayzafrir
parent 3d91abefac
commit 2701005b46
2 changed files with 18 additions and 2 deletions

View file

@ -27,6 +27,17 @@
#if defined(MBEDTLS_PSA_CRYPTO_C)
//! In case MBEDTLS_PSA_CRYPTO_SPM is defined the code is built for SPM (Secure
//! Partition Manager) integration which separate the code into two parts
//! NSPE (Non-Secure Process Environment) and SPE (Secure Process Environment).
//! In this mode an additional header file should be included.
#if defined(MBEDTLS_PSA_CRYPTO_SPM)
//! PSA_CRYPTO_SECURE means that this file is compiled to the SPE side.
//! some headers will be affected by this flag.
#define PSA_CRYPTO_SECURE 1
#include "crypto_spe.h"
#endif
#include "psa/crypto.h"
#include <stdlib.h>
@ -2481,7 +2492,7 @@ psa_status_t psa_cipher_abort( psa_cipher_operation_t *operation )
/****************************************************************/
/* Key Policy */
/****************************************************************/
#if !defined(MBEDTLS_PSA_CRYPTO_SPM)
void psa_key_policy_init( psa_key_policy_t *policy )
{
memset( policy, 0, sizeof( *policy ) );
@ -2504,7 +2515,7 @@ psa_algorithm_t psa_key_policy_get_algorithm( psa_key_policy_t *policy )
{
return( policy->alg );
}
#endif /* !defined(MBEDTLS_PSA_CRYPTO_SPM) */
psa_status_t psa_set_key_policy( psa_key_slot_t key,
const psa_key_policy_t *policy )
{

View file

@ -1,5 +1,10 @@
/* BEGIN_HEADER */
#include <stdint.h>
#if defined(MBEDTLS_PSA_CRYPTO_SPM)
#include "spm/psa_defs.h"
#endif
#include "mbedtls/asn1write.h"
#include "psa/crypto.h"