blob: d9473ac00c9a5132c6ad7e339799f1b05f293e78 [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
18 * SPDX-License-Identifier: Apache-2.0
19 *
20 * Licensed under the Apache License, Version 2.0 (the "License"); you may
21 * not use this file except in compliance with the License.
22 * You may obtain a copy of the License at
23 *
24 * http://www.apache.org/licenses/LICENSE-2.0
25 *
26 * Unless required by applicable law or agreed to in writing, software
27 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
28 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 * See the License for the specific language governing permissions and
30 * limitations under the License.
31 */
32
33#ifndef PSA_CRYPTO_BUILTIN_COMPOSITES_H
34#define PSA_CRYPTO_BUILTIN_COMPOSITES_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020035#include "mbedtls/private_access.h"
Steven Cooreman3c8dd632021-04-26 12:16:27 +020036
37#include <psa/crypto_driver_common.h>
38
Ronald Crone7cde182023-01-05 19:06:58 +010039#include "mbedtls/cmac.h"
40#include "mbedtls/gcm.h"
41#include "mbedtls/ccm.h"
42#include "mbedtls/chachapoly.h"
43
Steven Cooreman3c8dd632021-04-26 12:16:27 +020044/*
45 * MAC multi-part operation definitions.
46 */
Steven Cooreman77e2cc52021-03-19 17:05:52 +010047#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || \
48 defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC)
49#define MBEDTLS_PSA_BUILTIN_MAC
50#endif
Steven Cooreman3c8dd632021-04-26 12:16:27 +020051
Steven Cooremanac8d82a2021-04-29 18:01:53 +020052#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Gilles Peskine449bd832023-01-11 14:50:10 +010053typedef struct {
Steven Cooremand1955af2021-03-22 14:49:06 +010054 /** The HMAC algorithm in use */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020055 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Steven Cooremand1955af2021-03-22 14:49:06 +010056 /** The hash context. */
57 struct psa_hash_operation_s hash_ctx;
58 /** The HMAC part of the context. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020059 uint8_t MBEDTLS_PRIVATE(opad)[PSA_HMAC_MAX_HASH_BLOCK_SIZE];
Steven Cooremandd1a9152021-04-29 17:49:11 +020060} mbedtls_psa_hmac_operation_t;
Steven Cooreman4fdf0602021-03-22 12:21:10 +010061
Gilles Peskine449bd832023-01-11 14:50:10 +010062#define MBEDTLS_PSA_HMAC_OPERATION_INIT { 0, PSA_HASH_OPERATION_INIT, { 0 } }
Steven Cooremanac8d82a2021-04-29 18:01:53 +020063#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
Steven Cooreman3c8dd632021-04-26 12:16:27 +020064
Gilles Peskine449bd832023-01-11 14:50:10 +010065typedef struct {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020066 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Gilles Peskine449bd832023-01-11 14:50:10 +010067 union {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020068 unsigned MBEDTLS_PRIVATE(dummy); /* Make the union non-empty even with no supported algorithms. */
Steven Cooremanac8d82a2021-04-29 18:01:53 +020069#if defined(MBEDTLS_PSA_BUILTIN_ALG_HMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020070 mbedtls_psa_hmac_operation_t MBEDTLS_PRIVATE(hmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020071#endif /* MBEDTLS_PSA_BUILTIN_ALG_HMAC */
72#if defined(MBEDTLS_PSA_BUILTIN_ALG_CMAC) || defined(PSA_CRYPTO_DRIVER_TEST)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020073 mbedtls_cipher_context_t MBEDTLS_PRIVATE(cmac);
Steven Cooremanac8d82a2021-04-29 18:01:53 +020074#endif /* MBEDTLS_PSA_BUILTIN_ALG_CMAC */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020075 } MBEDTLS_PRIVATE(ctx);
Steven Cooremand13a70f2021-03-19 15:24:23 +010076} mbedtls_psa_mac_operation_t;
77
Gilles Peskine449bd832023-01-11 14:50:10 +010078#define MBEDTLS_PSA_MAC_OPERATION_INIT { 0, { 0 } }
Steven Cooremand13a70f2021-03-19 15:24:23 +010079
Paul Elliott3dc1c242021-05-20 18:32:57 +010080#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM) || \
81 defined(MBEDTLS_PSA_BUILTIN_ALG_CCM) || \
82 defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
83#define MBEDTLS_PSA_BUILTIN_AEAD 1
84#endif
85
86/* Context structure for the Mbed TLS AEAD implementation. */
Gilles Peskine449bd832023-01-11 14:50:10 +010087typedef struct {
Paul Elliott5977bc92021-09-23 17:35:08 +010088 psa_algorithm_t MBEDTLS_PRIVATE(alg);
89 psa_key_type_t MBEDTLS_PRIVATE(key_type);
Paul Elliott3dc1c242021-05-20 18:32:57 +010090
Paul Elliott5977bc92021-09-23 17:35:08 +010091 unsigned int MBEDTLS_PRIVATE(is_encrypt) : 1;
Paul Elliott3dc1c242021-05-20 18:32:57 +010092
Paul Elliott5977bc92021-09-23 17:35:08 +010093 uint8_t MBEDTLS_PRIVATE(tag_length);
Paul Elliott3dc1c242021-05-20 18:32:57 +010094
Gilles Peskine449bd832023-01-11 14:50:10 +010095 union {
Paul Elliott3dc1c242021-05-20 18:32:57 +010096 unsigned dummy; /* Enable easier initializing of the union. */
97#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
Paul Elliott5977bc92021-09-23 17:35:08 +010098 mbedtls_ccm_context MBEDTLS_PRIVATE(ccm);
Paul Elliott3dc1c242021-05-20 18:32:57 +010099#endif /* MBEDTLS_PSA_BUILTIN_ALG_CCM */
100#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
Paul Elliott5977bc92021-09-23 17:35:08 +0100101 mbedtls_gcm_context MBEDTLS_PRIVATE(gcm);
Paul Elliott3dc1c242021-05-20 18:32:57 +0100102#endif /* MBEDTLS_PSA_BUILTIN_ALG_GCM */
103#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
Paul Elliott5977bc92021-09-23 17:35:08 +0100104 mbedtls_chachapoly_context MBEDTLS_PRIVATE(chachapoly);
Paul Elliott3dc1c242021-05-20 18:32:57 +0100105#endif /* MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305 */
106
107 } ctx;
108
109} mbedtls_psa_aead_operation_t;
110
Gilles Peskine449bd832023-01-11 14:50:10 +0100111#define MBEDTLS_PSA_AEAD_OPERATION_INIT { 0, 0, 0, 0, { 0 } }
Paul Elliott3dc1c242021-05-20 18:32:57 +0100112
Paul Elliott588f8ed2022-12-02 18:10:26 +0000113#include "mbedtls/ecdsa.h"
114
115/* Context structure for the Mbed TLS interruptible sign hash implementation. */
116typedef struct {
Paul Elliott90a91f02023-01-24 15:23:25 +0000117#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
118 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
119 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000120 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000121 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000122
Paul Elliott93d9ca82023-02-15 18:14:21 +0000123 uint32_t MBEDTLS_PRIVATE(num_ops);
124
Paul Elliott1bc59df2023-02-05 13:41:57 +0000125 size_t MBEDTLS_PRIVATE(coordinate_bytes);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000126 psa_algorithm_t MBEDTLS_PRIVATE(alg);
127 mbedtls_md_type_t MBEDTLS_PRIVATE(md_alg);
Paul Elliott84329462023-02-07 17:32:04 +0000128 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000129 size_t MBEDTLS_PRIVATE(hash_length);
130
Paul Elliott90a91f02023-01-24 15:23:25 +0000131#else
132 /* Make the struct non-empty if algs not supported. */
133 unsigned MBEDTLS_PRIVATE(dummy);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000134
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000135#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
136 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
137 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000138} mbedtls_psa_sign_hash_interruptible_operation_t;
139
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000140#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
141 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
142 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000143#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, 0, 0 }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000144#else
145#define MBEDTLS_PSA_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
146#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000147
148/* Context structure for the Mbed TLS interruptible verify hash
149 * implementation.*/
150typedef struct {
Paul Elliott749dec52023-01-16 12:18:46 +0000151#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
152 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
153 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott588f8ed2022-12-02 18:10:26 +0000154
Paul Elliott588f8ed2022-12-02 18:10:26 +0000155 mbedtls_ecdsa_context *MBEDTLS_PRIVATE(ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000156 mbedtls_ecdsa_restart_ctx MBEDTLS_PRIVATE(restart_ctx);
Paul Elliott588f8ed2022-12-02 18:10:26 +0000157
Paul Elliott93d9ca82023-02-15 18:14:21 +0000158 uint32_t MBEDTLS_PRIVATE(num_ops);
159
Paul Elliott84329462023-02-07 17:32:04 +0000160 uint8_t MBEDTLS_PRIVATE(hash)[PSA_BITS_TO_BYTES(PSA_VENDOR_ECC_MAX_CURVE_BITS)];
Paul Elliott588f8ed2022-12-02 18:10:26 +0000161 size_t MBEDTLS_PRIVATE(hash_length);
162
163 mbedtls_mpi MBEDTLS_PRIVATE(r);
164 mbedtls_mpi MBEDTLS_PRIVATE(s);
165
Paul Elliott90a91f02023-01-24 15:23:25 +0000166#else
167 /* Make the struct non-empty if algs not supported. */
168 unsigned MBEDTLS_PRIVATE(dummy);
169
Paul Elliottfe9e77f2023-02-10 11:04:27 +0000170#endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
171 * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
172 * defined( MBEDTLS_ECP_RESTARTABLE ) */
Paul Elliott588f8ed2022-12-02 18:10:26 +0000173
174} mbedtls_psa_verify_hash_interruptible_operation_t;
175
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000176#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
177 defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)) && \
178 defined(MBEDTLS_ECP_RESTARTABLE)
Paul Elliott93d9ca82023-02-15 18:14:21 +0000179#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { { 0 }, { 0 }, 0, 0, 0, 0, { 0 }, \
Paul Elliott588f8ed2022-12-02 18:10:26 +0000180 { 0 } }
Paul Elliotta3a8aba2023-02-03 14:49:37 +0000181#else
182#define MBEDTLS_VERIFY_SIGN_HASH_INTERRUPTIBLE_OPERATION_INIT { 0 }
183#endif
Paul Elliott588f8ed2022-12-02 18:10:26 +0000184
185
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100186/* EC-JPAKE operation definitions */
187
188#include "mbedtls/ecjpake.h"
189
190#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
191#define MBEDTLS_PSA_BUILTIN_PAKE 1
192#endif
193
194/* Note: the format for mbedtls_ecjpake_read/write function has an extra
195 * length byte for each step, plus an extra 3 bytes for ECParameters in the
196 * server's 2nd round. */
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100197#define MBEDTLS_PSA_JPAKE_BUFFER_SIZE ((3 + 1 + 65 + 1 + 65 + 1 + 32) * 2)
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100198
199typedef struct {
200 psa_algorithm_t MBEDTLS_PRIVATE(alg);
Przemek Stekiele12ed362022-12-21 12:54:46 +0100201
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100202 uint8_t *MBEDTLS_PRIVATE(password);
203 size_t MBEDTLS_PRIVATE(password_len);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100204#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele80ec0a2023-03-21 16:49:43 +0100205 mbedtls_ecjpake_role MBEDTLS_PRIVATE(role);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100206 uint8_t MBEDTLS_PRIVATE(buffer[MBEDTLS_PSA_JPAKE_BUFFER_SIZE]);
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100207 size_t MBEDTLS_PRIVATE(buffer_length);
208 size_t MBEDTLS_PRIVATE(buffer_offset);
209#endif
210 /* Context structure for the Mbed TLS EC-JPAKE implementation. */
211 union {
212 unsigned int MBEDTLS_PRIVATE(dummy);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100213#if defined(MBEDTLS_PSA_BUILTIN_ALG_JPAKE)
Przemek Stekiele3ef3a12023-02-27 10:20:06 +0100214 mbedtls_ecjpake_context MBEDTLS_PRIVATE(jpake);
Przemek Stekiel251e86a2023-02-17 14:30:50 +0100215#endif
Przemek Stekiel96ae8b92022-12-07 11:52:08 +0100216 } MBEDTLS_PRIVATE(ctx);
217
218} mbedtls_psa_pake_operation_t;
219
220#define MBEDTLS_PSA_PAKE_OPERATION_INIT { { 0 } }
Paul Elliott588f8ed2022-12-02 18:10:26 +0000221
Steven Cooreman3c8dd632021-04-26 12:16:27 +0200222#endif /* PSA_CRYPTO_BUILTIN_COMPOSITES_H */