2018-01-27 23:32:46 +01:00
|
|
|
/**
|
|
|
|
* \file psa/crypto_platform.h
|
|
|
|
*
|
2019-05-30 14:14:00 +02:00
|
|
|
* \brief PSA cryptography module: Mbed TLS platform definitions
|
2018-06-28 18:02:53 +02:00
|
|
|
*
|
|
|
|
* \note This file may not be included directly. Applications must
|
|
|
|
* include psa/crypto.h.
|
|
|
|
*
|
|
|
|
* This file contains platform-dependent type definitions.
|
|
|
|
*
|
|
|
|
* In implementations with isolation between the application and the
|
|
|
|
* cryptography module, implementers should take care to ensure that
|
|
|
|
* the definitions that are exposed to applications match what the
|
|
|
|
* module implements.
|
2018-01-27 23:32:46 +01:00
|
|
|
*/
|
|
|
|
/*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2018-01-27 23:32:46 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PSA_CRYPTO_PLATFORM_H
|
|
|
|
#define PSA_CRYPTO_PLATFORM_H
|
|
|
|
|
|
|
|
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
|
|
|
|
* in each of its header files. */
|
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2019-06-07 12:49:59 +02:00
|
|
|
#include "mbedtls/config.h"
|
2018-01-27 23:32:46 +01:00
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
2020-11-09 15:06:57 +01:00
|
|
|
/* Translate between classic MBEDTLS_xxx feature symbols and PSA_xxx
|
|
|
|
* feature symbols. */
|
|
|
|
#include "mbedtls/config_psa.h"
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
/* PSA requires several types which C99 provides in stdint.h. */
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-07-23 17:13:42 +02:00
|
|
|
#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
|
|
|
|
!defined(inline) && !defined(__cplusplus)
|
|
|
|
#define inline __inline
|
|
|
|
#endif
|
|
|
|
|
2020-08-28 19:01:50 +02:00
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER)
|
2019-02-19 14:00:31 +01:00
|
|
|
|
2020-09-14 10:02:56 +02:00
|
|
|
/* Building for the PSA Crypto service on a PSA platform, a key owner is a PSA
|
|
|
|
* partition identifier.
|
|
|
|
*
|
|
|
|
* The function psa_its_identifier_of_slot() in psa_crypto_storage.c that
|
|
|
|
* translates a key identifier to a key storage file name assumes that
|
|
|
|
* mbedtls_key_owner_id_t is an 32 bits integer. This function thus needs
|
|
|
|
* reworking if mbedtls_key_owner_id_t is not defined as a 32 bits integer
|
|
|
|
* here anymore.
|
|
|
|
*/
|
2020-09-01 15:50:17 +02:00
|
|
|
typedef int32_t mbedtls_key_owner_id_t;
|
2020-07-23 17:13:42 +02:00
|
|
|
|
|
|
|
/** Compare two key owner identifiers.
|
|
|
|
*
|
|
|
|
* \param id1 First key owner identifier.
|
|
|
|
* \param id2 Second key owner identifier.
|
|
|
|
*
|
|
|
|
* \return Non-zero if the two key owner identifiers are equal, zero otherwise.
|
|
|
|
*/
|
|
|
|
static inline int mbedtls_key_owner_id_equal( mbedtls_key_owner_id_t id1,
|
|
|
|
mbedtls_key_owner_id_t id2 )
|
|
|
|
{
|
|
|
|
return( id1 == id2 );
|
|
|
|
}
|
2019-02-19 14:16:17 +01:00
|
|
|
|
2020-08-28 19:01:50 +02:00
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */
|
2019-02-19 14:00:31 +01:00
|
|
|
|
2020-11-13 18:00:34 +01:00
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
|
2021-01-04 21:00:53 +01:00
|
|
|
/** The type of the context passed to mbedtls_psa_external_get_random().
|
2020-11-18 15:33:33 +01:00
|
|
|
*
|
|
|
|
* Mbed TLS initializes the context to all-bits-zero before calling
|
|
|
|
* mbedtls_psa_external_get_random() for the first time.
|
|
|
|
*
|
|
|
|
* The definition of this type in the Mbed TLS source code is for
|
|
|
|
* demonstration purposes. Implementers of mbedtls_psa_external_get_random()
|
|
|
|
* are expected to replace it with a custom definition.
|
|
|
|
*/
|
2020-11-13 18:00:34 +01:00
|
|
|
typedef struct {
|
2020-11-18 15:33:33 +01:00
|
|
|
uintptr_t opaque[2];
|
2020-11-13 18:00:34 +01:00
|
|
|
} mbedtls_psa_external_random_context_t;
|
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
#endif /* PSA_CRYPTO_PLATFORM_H */
|