blob: 35c2e29b9ee7e63091a64c6283d5fe5a722644fe [file] [log] [blame]
Steven Cooreman3c8dd632021-04-26 12:16:27 +02001/*
2 * Context structure declaration of the Mbed TLS software-based PSA drivers
3 * called through the PSA Crypto driver dispatch layer.
4 * This file contains the context structures of those algorithms which need to
5 * rely on other algorithms, i.e. are 'composite' algorithms.
6 *
7 * \note This file may not be included directly. Applications must
8 * include psa/crypto.h.
9 *
Ronald Cron789cef82023-03-27 16:31:19 +020010 * \note This header and its content are not part of the Mbed TLS API and
Steven Cooreman3c8dd632021-04-26 12:16:27 +020011 * applications must not depend on it. Its main purpose is to define the
12 * multi-part state objects of the Mbed TLS software-based PSA drivers. The
Ronald Cron789cef82023-03-27 16:31:19 +020013 * definitions of these objects are then used by crypto_struct.h to define the
Steven Cooreman3c8dd632021-04-26 12:16:27 +020014 * implementation-defined types of PSA multi-part state objects.
15 */
16/*
17 * 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
Steven Cooreman3c8dd632021-04-26 12:16:27 +020019 */
20
21#ifndef PSA_CRYPTO_BUILTIN_COMPOSITES_H
22#define PSA_CRYPTO_BUILTIN_COMPOSITES_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020023#include "mbedtls/private_access.h"
Steven Cooreman3c8dd632021-04-26 12:16:27 +020024
25#include <psa/crypto_driver_common.h>
26
Ronald Crone7cde182023-01-05 19:06:58 +010027#include "mbedtls/cmac.h"
28#include "mbedtls/gcm.h"
29#include "mbedtls/ccm.h"
30#include "mbedtls/chachapoly.h"
31
Steven Cooreman3c8dd632021-04-26 12:16:27 +020032/*
33 * MAC multi-part operation definitions.
34 */
Steven Cooreman77e2cc52021-03-19 17:05:52 +010035#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || \
36 defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC)
37#define MBEDTLS_PSA_BUILTIN_MAC
38#endif
Steven Cooreman3c8dd632021-04-26 12:16:27 +020039
Steven Cooremanac8d82a2021-04-29 18:01:53 +020040#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Gilles Peskine449bd832023-01-11 14:50:10 +010041typedef struct {
Steven Cooremand1955af2021-03-22 14:49:06 +010042 /** The HMAC algorithm in use */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020043 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Steven Cooremand1955af2021-03-22 14:49:06 +010044 /** The hash context. */
45 struct psa_hash_operation_s hash_ctx;
46 /** The HMAC part of the context. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020047 uint8_t MBEDTLS_PRIVATE(opad)[PSA_HMAC_MAX_HASH_BLOCK_SIZE];
Steven Cooremandd1a9152021-04-29 17:49:11 +020048} mbedtls_psa_hmac_operation_t;
Steven Cooreman4fdf0602021-03-22 12:21:10 +010049
Gilles Peskine449bd832023-01-11 14:50:10 +010050#define MBEDTLS_PSA_HMAC_OPERATION_INIT { 0, PSA_HASH_OPERATION_INIT, { 0 } }
Steven Cooremanac8d82a2021-04-29 18:01:53 +020051#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
Steven Cooreman3c8dd632021-04-26 12:16:27 +020052
Gilles Peskine449bd832023-01-11 14:50:10 +010053typedef struct {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020054 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Gilles Peskine449bd832023-01-11 14:50:10 +010055 union {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020056 unsigned MBEDTLS_PRIVATE(dummy); /* Make the union non-empty even with no supported algorithms. */
Steven Cooremanac8d82a2021-04-29 18:01:53 +020057#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020058 mbedtls_psa_hmac_operation_t MBEDTLS_PRIVATE(hmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020059#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
60#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020061 mbedtls_cipher_context_t MBEDTLS_PRIVATE(cmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020062#endif /* MBEDTLS_PSA_BUILTIN_ALG_CMAC */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020063 } MBEDTLS_PRIVATE(ctx);
Steven Cooremand13a70f2021-03-19 15:24:23 +010064} mbedtls_psa_mac_operation_t;
65
Gilles Peskine449bd832023-01-11 14:50:10 +010066#define MBEDTLS_PSA_MAC_OPERATION_INIT { 0, { 0 } }
Steven Cooremand13a70f2021-03-19 15:24:23 +010067
Paul Elliott3dc1c242021-05-20 18:32:57 +010068#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM) || \
69 defined(MBEDTLS_PSA_BUILTIN_ALG_CCM) || \
70 defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
71#define MBEDTLS_PSA_BUILTIN_AEAD 1
72#endif
73
74/* Context structure for the Mbed TLS AEAD implementation. */
Gilles Peskine449bd832023-01-11 14:50:10 +010075typedef struct {
Paul Elliott5977bc92021-09-23 17:35:08 +010076 psa_algorithm_t MBEDTLS_PRIVATE(alg);
77 psa_key_type_t MBEDTLS_PRIVATE(key_type);
Paul Elliott3dc1c242021-05-20 18:32:57 +010078
Paul Elliott5977bc92021-09-23 17:35:08 +010079 unsigned int MBEDTLS_PRIVATE(is_encrypt) : 1;
Paul Elliott3dc1c242021-05-20 18:32:57 +010080
Paul Elliott5977bc92021-09-23 17:35:08 +010081 uint8_t MBEDTLS_PRIVATE(tag_length);
Paul Elliott3dc1c242021-05-20 18:32:57 +010082
Gilles Peskine449bd832023-01-11 14:50:10 +010083 union {
Paul Elliott3dc1c242021-05-20 18:32:57 +010084 unsigned dummy; /* Enable easier initializing of the union. */
85#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
Paul Elliott5977bc92021-09-23 17:35:08 +010086 mbedtls_ccm_context MBEDTLS_PRIVATE(ccm);
Paul Elliott3dc1c242021-05-20 18:32:57 +010087#endif /* MBEDTLS_PSA_BUILTIN_ALG_CCM */
88#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
Paul Elliott5977bc92021-09-23 17:35:08 +010089 mbedtls_gcm_context MBEDTLS_PRIVATE(gcm);
Paul Elliott3dc1c242021-05-20 18:32:57 +010090#endif /* MBEDTLS_PSA_BUILTIN_ALG_GCM */
91#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
Paul Elliott5977bc92021-09-23 17:35:08 +010092 mbedtls_chachapoly_context MBEDTLS_PRIVATE(chachapoly);
Paul Elliott3dc1c242021-05-20 18:32:57 +010093#endif /* MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305 */
94
95 } ctx;
96
97} mbedtls_psa_aead_operation_t;
98
Gilles Peskine449bd832023-01-11 14:50:10 +010099#define MBEDTLS_PSA_AEAD_OPERATION_INIT { 0, 0, 0, 0, { 0 } }
Paul Elliott3dc1c242021-05-20 18:32:57 +0100100
Paul Elliott588f8ed2022-12-02 18:10:26 +0000101#include "mbedtls/ecdsa.h"
102
103/* Context structure for the Mbed TLS interruptible sign hash implementation. */
104typedef struct {
Paul Elliott90a91f02023-01-24 15:23:25 +0000105#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
106 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
107 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000108 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000109 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000110
Paul Elliott93d9ca82023-02-15 18:14:21 +0000111 uint32_t MBEDTLS_PRIVATE(num_ops);
112
Paul Elliott1bc59df2023-02-05 13:41:57 +0000113 size_t MBEDTLS_PRIVATE(coordinate_bytes);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000114 psa_algorithm_t MBEDTLS_PRIVATE(alg);
115 mbedtls_md_type_t MBEDTLS_PRIVATE(md_alg);
Paul Elliott84329462023-02-07 17:32:04 +0000116 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000117 size_t MBEDTLS_PRIVATE(hash_length);
118
Paul Elliott90a91f02023-01-24 15:23:25 +0000119#else
120 /* Make the struct non-empty if algs not supported. */
121 unsigned MBEDTLS_PRIVATE(dummy);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000122
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000123#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
124 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
125 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000126} mbedtls_psa_sign_hash_interruptible_operation_t;
127
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000128#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
129 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
130 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000131#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, 0, 0 }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000132#else
133#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
134#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000135
136/* Context structure for the Mbed TLS interruptible verify hash
137 * implementation.*/
138typedef struct {
Paul Elliott749dec52023-01-16 12:18:46 +0000139#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
140 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
141 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000142
Paul Elliott588f8ed2022-12-02 18:10:26 +0000143 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000144 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000145
Paul Elliott93d9ca82023-02-15 18:14:21 +0000146 uint32_t MBEDTLS_PRIVATE(num_ops);
147
Paul Elliott84329462023-02-07 17:32:04 +0000148 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000149 size_t MBEDTLS_PRIVATE(hash_length);
150
151 mbedtls_mpi MBEDTLS_PRIVATE(r);
152 mbedtls_mpi MBEDTLS_PRIVATE(s);
153
Paul Elliott90a91f02023-01-24 15:23:25 +0000154#else
155 /* Make the struct non-empty if algs not supported. */
156 unsigned MBEDTLS_PRIVATE(dummy);
157
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000158#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
159 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
160 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000161
162} mbedtls_psa_verify_hash_interruptible_operation_t;
163
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000164#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
165 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
166 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000167#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, { 0 }, \
Paul Elliott588f8ed2022-12-02 18:10:26 +0000168 { 0 } }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000169#else
170#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
171#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000172
173
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100174/* EC-JPAKE operation definitions */
175
176#include "mbedtls/ecjpake.h"
177
178#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
179#define MBEDTLS_PSA_BUILTIN_PAKE 1
180#endif
181
182/* Note: the format for mbedtls_ecjpake_read/write function has an extra
183 * length byte for each step, plus an extra 3 bytes for ECParameters in the
184 * server's 2nd round. */
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100185#define MBEDTLS_PSA_JPAKE_BUFFER_SIZE ((3 + 1 + 65 + 1 + 65 + 1 + 32) * 2)
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100186
187typedef struct {
188 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Przemek Stekiele12ed362022-12-21 12:54:46 +0100189
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100190 uint8_t *MBEDTLS_PRIVATE(password);
191 size_t MBEDTLS_PRIVATE(password_len);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100192#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele80ec0a2023-03-21 16:49:43 +0100193 mbedtls_ecjpake_role MBEDTLS_PRIVATE(role);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100194 uint8_t MBEDTLS_PRIVATE(buffer[MBEDTLS_PSA_JPAKE_BUFFER_SIZE]);
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100195 size_t MBEDTLS_PRIVATE(buffer_length);
196 size_t MBEDTLS_PRIVATE(buffer_offset);
197#endif
198 /* Context structure for the Mbed TLS EC-JPAKE implementation. */
199 union {
200 unsigned int MBEDTLS_PRIVATE(dummy);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100201#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele3ef3a12023-02-27 10:20:06 +0100202 mbedtls_ecjpake_context MBEDTLS_PRIVATE(jpake);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100203#endif
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100204 } MBEDTLS_PRIVATE(ctx);
205
206} mbedtls_psa_pake_operation_t;
207
208#define MBEDTLS_PSA_PAKE_OPERATION_INIT { { 0 } }
Paul Elliott588f8ed2022-12-02 18:10:26 +0000209
Steven Cooreman3c8dd632021-04-26 12:16:27 +0200210#endif /* PSA_CRYPTO_BUILTIN_COMPOSITES_H */