blob: c14f5dd110f5214d999ecd731b9396c6dc78468f [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"
Valerio Setti4bc7fac2023-12-12 11:52:36 +010028#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
Ronald Crone7cde182023-01-05 19:06:58 +010029#include "mbedtls/gcm.h"
Valerio Setti4bc7fac2023-12-12 11:52:36 +010030#endif
31#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
Ronald Crone7cde182023-01-05 19:06:58 +010032#include "mbedtls/ccm.h"
Valerio Setti4bc7fac2023-12-12 11:52:36 +010033#endif
Ronald Crone7cde182023-01-05 19:06:58 +010034#include "mbedtls/chachapoly.h"
35
Steven Cooreman3c8dd632021-04-26 12:16:27 +020036/*
37 * MAC multi-part operation definitions.
38 */
Steven Cooreman77e2cc52021-03-19 17:05:52 +010039#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || \
40 defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC)
41#define MBEDTLS_PSA_BUILTIN_MAC
42#endif
Steven Cooreman3c8dd632021-04-26 12:16:27 +020043
Steven Cooremanac8d82a2021-04-29 18:01:53 +020044#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Gilles Peskine449bd832023-01-11 14:50:10 +010045typedef struct {
Steven Cooremand1955af2021-03-22 14:49:06 +010046 /** The HMAC algorithm in use */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020047 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Steven Cooremand1955af2021-03-22 14:49:06 +010048 /** The hash context. */
49 struct psa_hash_operation_s hash_ctx;
50 /** The HMAC part of the context. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020051 uint8_t MBEDTLS_PRIVATE(opad)[PSA_HMAC_MAX_HASH_BLOCK_SIZE];
Steven Cooremandd1a9152021-04-29 17:49:11 +020052} mbedtls_psa_hmac_operation_t;
Steven Cooreman4fdf0602021-03-22 12:21:10 +010053
Gilles Peskine449bd832023-01-11 14:50:10 +010054#define MBEDTLS_PSA_HMAC_OPERATION_INIT { 0, PSA_HASH_OPERATION_INIT, { 0 } }
Steven Cooremanac8d82a2021-04-29 18:01:53 +020055#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
Steven Cooreman3c8dd632021-04-26 12:16:27 +020056
Gilles Peskine449bd832023-01-11 14:50:10 +010057typedef struct {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020058 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Gilles Peskine449bd832023-01-11 14:50:10 +010059 union {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020060 unsigned MBEDTLS_PRIVATE(dummy); /* Make the union non-empty even with no supported algorithms. */
Steven Cooremanac8d82a2021-04-29 18:01:53 +020061#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020062 mbedtls_psa_hmac_operation_t MBEDTLS_PRIVATE(hmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020063#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
64#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020065 mbedtls_cipher_context_t MBEDTLS_PRIVATE(cmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020066#endif /* MBEDTLS_PSA_BUILTIN_ALG_CMAC */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020067 } MBEDTLS_PRIVATE(ctx);
Steven Cooremand13a70f2021-03-19 15:24:23 +010068} mbedtls_psa_mac_operation_t;
69
Gilles Peskine449bd832023-01-11 14:50:10 +010070#define MBEDTLS_PSA_MAC_OPERATION_INIT { 0, { 0 } }
Steven Cooremand13a70f2021-03-19 15:24:23 +010071
Paul Elliott3dc1c242021-05-20 18:32:57 +010072#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM) || \
73 defined(MBEDTLS_PSA_BUILTIN_ALG_CCM) || \
74 defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
75#define MBEDTLS_PSA_BUILTIN_AEAD 1
76#endif
77
78/* Context structure for the Mbed TLS AEAD implementation. */
Gilles Peskine449bd832023-01-11 14:50:10 +010079typedef struct {
Paul Elliott5977bc92021-09-23 17:35:08 +010080 psa_algorithm_t MBEDTLS_PRIVATE(alg);
81 psa_key_type_t MBEDTLS_PRIVATE(key_type);
Paul Elliott3dc1c242021-05-20 18:32:57 +010082
Paul Elliott5977bc92021-09-23 17:35:08 +010083 unsigned int MBEDTLS_PRIVATE(is_encrypt) : 1;
Paul Elliott3dc1c242021-05-20 18:32:57 +010084
Paul Elliott5977bc92021-09-23 17:35:08 +010085 uint8_t MBEDTLS_PRIVATE(tag_length);
Paul Elliott3dc1c242021-05-20 18:32:57 +010086
Gilles Peskine449bd832023-01-11 14:50:10 +010087 union {
Paul Elliott3dc1c242021-05-20 18:32:57 +010088 unsigned dummy; /* Enable easier initializing of the union. */
89#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
Paul Elliott5977bc92021-09-23 17:35:08 +010090 mbedtls_ccm_context MBEDTLS_PRIVATE(ccm);
Paul Elliott3dc1c242021-05-20 18:32:57 +010091#endif /* MBEDTLS_PSA_BUILTIN_ALG_CCM */
92#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
Paul Elliott5977bc92021-09-23 17:35:08 +010093 mbedtls_gcm_context MBEDTLS_PRIVATE(gcm);
Paul Elliott3dc1c242021-05-20 18:32:57 +010094#endif /* MBEDTLS_PSA_BUILTIN_ALG_GCM */
95#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
Paul Elliott5977bc92021-09-23 17:35:08 +010096 mbedtls_chachapoly_context MBEDTLS_PRIVATE(chachapoly);
Paul Elliott3dc1c242021-05-20 18:32:57 +010097#endif /* MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305 */
98
99 } ctx;
100
101} mbedtls_psa_aead_operation_t;
102
Gilles Peskine449bd832023-01-11 14:50:10 +0100103#define MBEDTLS_PSA_AEAD_OPERATION_INIT { 0, 0, 0, 0, { 0 } }
Paul Elliott3dc1c242021-05-20 18:32:57 +0100104
Paul Elliott588f8ed2022-12-02 18:10:26 +0000105#include "mbedtls/ecdsa.h"
106
107/* Context structure for the Mbed TLS interruptible sign hash implementation. */
108typedef struct {
Paul Elliott90a91f02023-01-24 15:23:25 +0000109#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
110 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
111 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000112 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000113 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000114
Paul Elliott93d9ca82023-02-15 18:14:21 +0000115 uint32_t MBEDTLS_PRIVATE(num_ops);
116
Paul Elliott1bc59df2023-02-05 13:41:57 +0000117 size_t MBEDTLS_PRIVATE(coordinate_bytes);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000118 psa_algorithm_t MBEDTLS_PRIVATE(alg);
119 mbedtls_md_type_t MBEDTLS_PRIVATE(md_alg);
Paul Elliott84329462023-02-07 17:32:04 +0000120 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000121 size_t MBEDTLS_PRIVATE(hash_length);
122
Paul Elliott90a91f02023-01-24 15:23:25 +0000123#else
124 /* Make the struct non-empty if algs not supported. */
125 unsigned MBEDTLS_PRIVATE(dummy);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000126
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000127#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
128 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
129 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000130} mbedtls_psa_sign_hash_interruptible_operation_t;
131
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000132#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
133 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
134 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000135#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, 0, 0 }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000136#else
137#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
138#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000139
140/* Context structure for the Mbed TLS interruptible verify hash
141 * implementation.*/
142typedef struct {
Paul Elliott749dec52023-01-16 12:18:46 +0000143#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
144 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
145 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000146
Paul Elliott588f8ed2022-12-02 18:10:26 +0000147 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000148 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000149
Paul Elliott93d9ca82023-02-15 18:14:21 +0000150 uint32_t MBEDTLS_PRIVATE(num_ops);
151
Paul Elliott84329462023-02-07 17:32:04 +0000152 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000153 size_t MBEDTLS_PRIVATE(hash_length);
154
155 mbedtls_mpi MBEDTLS_PRIVATE(r);
156 mbedtls_mpi MBEDTLS_PRIVATE(s);
157
Paul Elliott90a91f02023-01-24 15:23:25 +0000158#else
159 /* Make the struct non-empty if algs not supported. */
160 unsigned MBEDTLS_PRIVATE(dummy);
161
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000162#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
163 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
164 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000165
166} mbedtls_psa_verify_hash_interruptible_operation_t;
167
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000168#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
169 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
170 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000171#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, { 0 }, \
Paul Elliott588f8ed2022-12-02 18:10:26 +0000172 { 0 } }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000173#else
174#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
175#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000176
177
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100178/* EC-JPAKE operation definitions */
179
180#include "mbedtls/ecjpake.h"
181
182#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
183#define MBEDTLS_PSA_BUILTIN_PAKE 1
184#endif
185
186/* Note: the format for mbedtls_ecjpake_read/write function has an extra
187 * length byte for each step, plus an extra 3 bytes for ECParameters in the
188 * server's 2nd round. */
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100189#define MBEDTLS_PSA_JPAKE_BUFFER_SIZE ((3 + 1 + 65 + 1 + 65 + 1 + 32) * 2)
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100190
191typedef struct {
192 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Przemek Stekiele12ed362022-12-21 12:54:46 +0100193
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100194 uint8_t *MBEDTLS_PRIVATE(password);
195 size_t MBEDTLS_PRIVATE(password_len);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100196#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele80ec0a2023-03-21 16:49:43 +0100197 mbedtls_ecjpake_role MBEDTLS_PRIVATE(role);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100198 uint8_t MBEDTLS_PRIVATE(buffer[MBEDTLS_PSA_JPAKE_BUFFER_SIZE]);
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100199 size_t MBEDTLS_PRIVATE(buffer_length);
200 size_t MBEDTLS_PRIVATE(buffer_offset);
201#endif
202 /* Context structure for the Mbed TLS EC-JPAKE implementation. */
203 union {
204 unsigned int MBEDTLS_PRIVATE(dummy);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100205#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele3ef3a12023-02-27 10:20:06 +0100206 mbedtls_ecjpake_context MBEDTLS_PRIVATE(jpake);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100207#endif
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100208 } MBEDTLS_PRIVATE(ctx);
209
210} mbedtls_psa_pake_operation_t;
211
212#define MBEDTLS_PSA_PAKE_OPERATION_INIT { { 0 } }
Paul Elliott588f8ed2022-12-02 18:10:26 +0000213
Steven Cooreman3c8dd632021-04-26 12:16:27 +0200214#endif /* PSA_CRYPTO_BUILTIN_COMPOSITES_H */