blob: a871ee12468c97fa0aaf67ef761c682b286a50fb [file] [log] [blame]
Gilles Peskinee59236f2018-01-27 23:32:46 +01001/**
2 * \file psa/crypto_platform.h
3 *
Jaeden Amero95d84382019-05-30 13:14:00 +01004 * \brief PSA cryptography module: Mbed TLS platform definitions
Gilles Peskine07c91f52018-06-28 18:02:53 +02005 *
6 * \note This file may not be included directly. Applications must
7 * include psa/crypto.h.
8 *
9 * This file contains platform-dependent type definitions.
10 *
11 * In implementations with isolation between the application and the
12 * cryptography module, implementers should take care to ensure that
13 * the definitions that are exposed to applications match what the
14 * module implements.
Gilles Peskinee59236f2018-01-27 23:32:46 +010015 */
16/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020017 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +000018 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskinee59236f2018-01-27 23:32:46 +010019 */
20
21#ifndef PSA_CRYPTO_PLATFORM_H
22#define PSA_CRYPTO_PLATFORM_H
Mateusz Starzyk2abe51c2021-06-07 11:08:01 +020023#include "mbedtls/private_access.h"
Gilles Peskinee59236f2018-01-27 23:32:46 +010024
Ronald Cronf6236f02023-01-26 16:22:25 +010025/*
Ronald Cron7871cb12023-10-10 08:51:39 +020026 * Include the build-time configuration information header. Here, we do not
Ronald Cronf6236f02023-01-26 16:22:25 +010027 * include `"mbedtls/build_info.h"` directly but `"psa/build_info.h"`, which
28 * is basically just an alias to it. This is to ease the maintenance of the
Ronald Cron070e8652023-10-09 10:25:45 +020029 * TF-PSA-Crypto repository which has a different build system and
Ronald Cronf6236f02023-01-26 16:22:25 +010030 * configuration.
31 */
32#include "psa/build_info.h"
Gilles Peskinee59236f2018-01-27 23:32:46 +010033
34/* PSA requires several types which C99 provides in stdint.h. */
35#include <stdint.h>
36
Ronald Cron71016a92020-08-28 19:01:50 +020037#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER)
Gilles Peskine69d7c8b2019-02-19 14:00:31 +010038
Ronald Cron9a2511e2020-09-14 10:02:56 +020039/* Building for the PSA Crypto service on a PSA platform, a key owner is a PSA
40 * partition identifier.
41 *
42 * The function psa_its_identifier_of_slot() in psa_crypto_storage.c that
43 * translates a key identifier to a key storage file name assumes that
Tom Cosgrovece7f18c2022-07-28 05:50:56 +010044 * mbedtls_key_owner_id_t is a 32-bit integer. This function thus needs
45 * reworking if mbedtls_key_owner_id_t is not defined as a 32-bit integer
Ronald Cron9a2511e2020-09-14 10:02:56 +020046 * here anymore.
47 */
Ronald Cron72f65fc2020-09-01 15:50:17 +020048typedef int32_t mbedtls_key_owner_id_t;
Ronald Cronecfb2372020-07-23 17:13:42 +020049
50/** Compare two key owner identifiers.
51 *
52 * \param id1 First key owner identifier.
53 * \param id2 Second key owner identifier.
54 *
55 * \return Non-zero if the two key owner identifiers are equal, zero otherwise.
56 */
Gilles Peskine449bd832023-01-11 14:50:10 +010057static inline int mbedtls_key_owner_id_equal(mbedtls_key_owner_id_t id1,
58 mbedtls_key_owner_id_t id2)
Ronald Cronecfb2372020-07-23 17:13:42 +020059{
Gilles Peskine449bd832023-01-11 14:50:10 +010060 return id1 == id2;
Ronald Cronecfb2372020-07-23 17:13:42 +020061}
Gilles Peskine572f0672019-02-19 14:16:17 +010062
Ronald Cron71016a92020-08-28 19:01:50 +020063#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */
Gilles Peskine69d7c8b2019-02-19 14:00:31 +010064
Gilles Peskinee96c5852021-06-15 18:36:05 +020065/*
66 * When MBEDTLS_PSA_CRYPTO_SPM is defined, the code is being built for SPM
67 * (Secure Partition Manager) integration which separates the code into two
68 * parts: NSPE (Non-Secure Processing Environment) and SPE (Secure Processing
69 * Environment). When building for the SPE, an additional header file should be
70 * included.
71 */
72#if defined(MBEDTLS_PSA_CRYPTO_SPM)
73#define PSA_CRYPTO_SECURE 1
Gilles Peskine35292852023-09-27 15:41:56 +020074#include "crypto_spe.h"
Gilles Peskinee96c5852021-06-15 18:36:05 +020075#endif // MBEDTLS_PSA_CRYPTO_SPM
76
Gilles Peskineb8af2282020-11-13 18:00:34 +010077#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
Gilles Peskine88fa5c42021-01-04 21:00:53 +010078/** The type of the context passed to mbedtls_psa_external_get_random().
Gilles Peskinec0963012020-11-18 15:33:33 +010079 *
80 * Mbed TLS initializes the context to all-bits-zero before calling
81 * mbedtls_psa_external_get_random() for the first time.
82 *
83 * The definition of this type in the Mbed TLS source code is for
84 * demonstration purposes. Implementers of mbedtls_psa_external_get_random()
85 * are expected to replace it with a custom definition.
86 */
Gilles Peskineb8af2282020-11-13 18:00:34 +010087typedef struct {
Mateusz Starzyk2abe51c2021-06-07 11:08:01 +020088 uintptr_t MBEDTLS_PRIVATE(opaque)[2];
Gilles Peskineb8af2282020-11-13 18:00:34 +010089} mbedtls_psa_external_random_context_t;
90#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */
91
Antonio de Angelis6425a182024-01-22 11:39:34 +000092#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) && !defined(MBEDTLS_PSA_CRYPTO_C)
93/** The type of the client handle used in context structures
94 *
95 * When a client view of the multipart context structures is required,
96 * this handle is used to keep a mapping with the service side of the
97 * context which contains the actual data.
98 */
99typedef uint32_t mbedtls_psa_client_handle_t;
100#endif
101
Gilles Peskinee59236f2018-01-27 23:32:46 +0100102#endif /* PSA_CRYPTO_PLATFORM_H */