blob: f360fd627cde6a0c9ec5d47b9c2e7ebce2e9c084 [file] [log] [blame]
Gilles Peskine0cad07c2018-06-27 19:49:02 +02001/**
2 * \file psa/crypto_sizes.h
3 *
4 * \brief PSA cryptography module: Mbed TLS buffer size macros
5 *
Gilles Peskine07c91f52018-06-28 18:02:53 +02006 * \note This file may not be included directly. Applications must
7 * include psa/crypto.h.
8 *
Gilles Peskine0cad07c2018-06-27 19:49:02 +02009 * This file contains the definitions of macros that are useful to
10 * compute buffer sizes. The signatures and semantics of these macros
11 * are standardized, but the definitions are not, because they depend on
12 * the available algorithms and, in some cases, on permitted tolerances
13 * on buffer sizes.
Gilles Peskine49cee6c2018-06-27 21:03:58 +020014 *
Gilles Peskine07c91f52018-06-28 18:02:53 +020015 * In implementations with isolation between the application and the
16 * cryptography module, implementers should take care to ensure that
17 * the definitions that are exposed to applications match what the
18 * module implements.
19 *
Gilles Peskine49cee6c2018-06-27 21:03:58 +020020 * Macros that compute sizes whose values do not depend on the
21 * implementation are in crypto.h.
Gilles Peskine0cad07c2018-06-27 19:49:02 +020022 */
23/*
24 * Copyright (C) 2018, ARM Limited, All Rights Reserved
25 * SPDX-License-Identifier: Apache-2.0
26 *
27 * Licensed under the Apache License, Version 2.0 (the "License"); you may
28 * not use this file except in compliance with the License.
29 * You may obtain a copy of the License at
30 *
31 * http://www.apache.org/licenses/LICENSE-2.0
32 *
33 * Unless required by applicable law or agreed to in writing, software
34 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
35 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36 * See the License for the specific language governing permissions and
37 * limitations under the License.
38 *
39 * This file is part of mbed TLS (https://tls.mbed.org)
40 */
41
42#ifndef PSA_CRYPTO_SIZES_H
43#define PSA_CRYPTO_SIZES_H
44
45/* Include the Mbed TLS configuration file, the way Mbed TLS does it
46 * in each of its header files. */
47#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amerod58a00d2019-06-07 11:49:59 +010048#include "mbedtls/config.h"
Gilles Peskine0cad07c2018-06-27 19:49:02 +020049#else
50#include MBEDTLS_CONFIG_FILE
51#endif
52
Gilles Peskinea7c26db2018-12-12 13:42:25 +010053#define PSA_BITS_TO_BYTES(bits) (((bits) + 7) / 8)
54#define PSA_BYTES_TO_BITS(bytes) ((bytes) * 8)
55
56/** The size of the output of psa_hash_finish(), in bytes.
57 *
58 * This is also the hash size that psa_hash_verify() expects.
59 *
60 * \param alg A hash algorithm (\c PSA_ALG_XXX value such that
61 * #PSA_ALG_IS_HASH(\p alg) is true), or an HMAC algorithm
62 * (#PSA_ALG_HMAC(\c hash_alg) where \c hash_alg is a
63 * hash algorithm).
64 *
65 * \return The hash size for the specified hash algorithm.
66 * If the hash algorithm is not recognized, return 0.
67 * An implementation may return either 0 or the correct size
68 * for a hash algorithm that it recognizes, but does not support.
69 */
70#define PSA_HASH_SIZE(alg) \
71 ( \
72 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD2 ? 16 : \
73 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD4 ? 16 : \
74 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD5 ? 16 : \
75 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_RIPEMD160 ? 20 : \
76 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_1 ? 20 : \
77 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_224 ? 28 : \
78 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_256 ? 32 : \
79 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_384 ? 48 : \
80 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512 ? 64 : \
81 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_224 ? 28 : \
82 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_256 ? 32 : \
83 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_224 ? 28 : \
84 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_256 ? 32 : \
85 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_384 ? 48 : \
86 PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_512 ? 64 : \
87 0)
88
Gilles Peskineaf3baab2018-06-27 22:55:52 +020089/** \def PSA_HASH_MAX_SIZE
90 *
91 * Maximum size of a hash.
92 *
93 * This macro must expand to a compile-time constant integer. This value
94 * should be the maximum size of a hash supported by the implementation,
95 * in bytes, and must be no smaller than this maximum.
96 */
Gilles Peskine3052f532018-09-17 14:13:26 +020097/* Note: for HMAC-SHA-3, the block size is 144 bytes for HMAC-SHA3-226,
98 * 136 bytes for HMAC-SHA3-256, 104 bytes for SHA3-384, 72 bytes for
99 * HMAC-SHA3-512. */
Gilles Peskine0cad07c2018-06-27 19:49:02 +0200100#if defined(MBEDTLS_SHA512_C)
101#define PSA_HASH_MAX_SIZE 64
102#define PSA_HMAC_MAX_HASH_BLOCK_SIZE 128
103#else
104#define PSA_HASH_MAX_SIZE 32
105#define PSA_HMAC_MAX_HASH_BLOCK_SIZE 64
106#endif
107
Gilles Peskineaf3baab2018-06-27 22:55:52 +0200108/** \def PSA_MAC_MAX_SIZE
109 *
110 * Maximum size of a MAC.
111 *
112 * This macro must expand to a compile-time constant integer. This value
113 * should be the maximum size of a MAC supported by the implementation,
114 * in bytes, and must be no smaller than this maximum.
115 */
116/* All non-HMAC MACs have a maximum size that's smaller than the
117 * minimum possible value of PSA_HASH_MAX_SIZE in this implementation. */
Gilles Peskinee1f2d7d2018-08-21 14:54:54 +0200118/* Note that the encoding of truncated MAC algorithms limits this value
119 * to 64 bytes.
120 */
Gilles Peskineaf3baab2018-06-27 22:55:52 +0200121#define PSA_MAC_MAX_SIZE PSA_HASH_MAX_SIZE
122
Gilles Peskinea7c26db2018-12-12 13:42:25 +0100123/** The tag size for an AEAD algorithm, in bytes.
124 *
125 * \param alg An AEAD algorithm
126 * (\c PSA_ALG_XXX value such that
127 * #PSA_ALG_IS_AEAD(\p alg) is true).
128 *
129 * \return The tag size for the specified algorithm.
130 * If the AEAD algorithm does not have an identified
131 * tag that can be distinguished from the rest of
132 * the ciphertext, return 0.
133 * If the AEAD algorithm is not recognized, return 0.
134 * An implementation may return either 0 or a
135 * correct size for an AEAD algorithm that it
136 * recognizes, but does not support.
137 */
138#define PSA_AEAD_TAG_LENGTH(alg) \
139 (PSA_ALG_IS_AEAD(alg) ? \
140 (((alg) & PSA_ALG_AEAD_TAG_LENGTH_MASK) >> PSA_AEAD_TAG_LENGTH_OFFSET) : \
141 0)
142
Gilles Peskineaf3baab2018-06-27 22:55:52 +0200143/* The maximum size of an RSA key on this implementation, in bits.
144 * This is a vendor-specific macro.
145 *
146 * Mbed TLS does not set a hard limit on the size of RSA keys: any key
147 * whose parameters fit in a bignum is accepted. However large keys can
148 * induce a large memory usage and long computation times. Unlike other
149 * auxiliary macros in this file and in crypto.h, which reflect how the
150 * library is configured, this macro defines how the library is
151 * configured. This implementation refuses to import or generate an
152 * RSA key whose size is larger than the value defined here.
153 *
154 * Note that an implementation may set different size limits for different
155 * operations, and does not need to accept all key sizes up to the limit. */
156#define PSA_VENDOR_RSA_MAX_KEY_BITS 4096
157
158/* The maximum size of an ECC key on this implementation, in bits.
159 * This is a vendor-specific macro. */
160#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
161#define PSA_VENDOR_ECC_MAX_CURVE_BITS 521
162#elif defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
163#define PSA_VENDOR_ECC_MAX_CURVE_BITS 512
164#elif defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
165#define PSA_VENDOR_ECC_MAX_CURVE_BITS 448
166#elif defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
167#define PSA_VENDOR_ECC_MAX_CURVE_BITS 384
168#elif defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
169#define PSA_VENDOR_ECC_MAX_CURVE_BITS 384
170#elif defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
171#define PSA_VENDOR_ECC_MAX_CURVE_BITS 256
172#elif defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
173#define PSA_VENDOR_ECC_MAX_CURVE_BITS 256
174#elif defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
175#define PSA_VENDOR_ECC_MAX_CURVE_BITS 256
176#elif defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
177#define PSA_VENDOR_ECC_MAX_CURVE_BITS 255
178#elif defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
179#define PSA_VENDOR_ECC_MAX_CURVE_BITS 224
180#elif defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
181#define PSA_VENDOR_ECC_MAX_CURVE_BITS 224
182#elif defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
183#define PSA_VENDOR_ECC_MAX_CURVE_BITS 192
184#elif defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
185#define PSA_VENDOR_ECC_MAX_CURVE_BITS 192
186#else
187#define PSA_VENDOR_ECC_MAX_CURVE_BITS 0
188#endif
189
Gilles Peskine536e2052019-05-13 12:51:03 +0200190/** Bit size associated with an elliptic curve.
191 *
192 * \param curve An elliptic curve (value of type #psa_ecc_curve_t).
193 *
194 * \return The size associated with \p curve, in bits.
195 * This may be 0 if the implementation does not support
196 * the specified curve.
197 */
198#define PSA_ECC_CURVE_BITS(curve) \
199 ((curve) == PSA_ECC_CURVE_SECT163K1 ? 163 : \
200 (curve) == PSA_ECC_CURVE_SECT163R1 ? 163 : \
201 (curve) == PSA_ECC_CURVE_SECT163R2 ? 163 : \
202 (curve) == PSA_ECC_CURVE_SECT193R1 ? 193 : \
203 (curve) == PSA_ECC_CURVE_SECT193R2 ? 193 : \
204 (curve) == PSA_ECC_CURVE_SECT233K1 ? 233 : \
205 (curve) == PSA_ECC_CURVE_SECT233R1 ? 233 : \
206 (curve) == PSA_ECC_CURVE_SECT239K1 ? 239 : \
207 (curve) == PSA_ECC_CURVE_SECT283K1 ? 283 : \
208 (curve) == PSA_ECC_CURVE_SECT283R1 ? 283 : \
209 (curve) == PSA_ECC_CURVE_SECT409K1 ? 409 : \
210 (curve) == PSA_ECC_CURVE_SECT409R1 ? 409 : \
211 (curve) == PSA_ECC_CURVE_SECT571K1 ? 571 : \
212 (curve) == PSA_ECC_CURVE_SECT571R1 ? 571 : \
213 (curve) == PSA_ECC_CURVE_SECP160K1 ? 160 : \
214 (curve) == PSA_ECC_CURVE_SECP160R1 ? 160 : \
215 (curve) == PSA_ECC_CURVE_SECP160R2 ? 160 : \
216 (curve) == PSA_ECC_CURVE_SECP192K1 ? 192 : \
217 (curve) == PSA_ECC_CURVE_SECP192R1 ? 192 : \
218 (curve) == PSA_ECC_CURVE_SECP224K1 ? 224 : \
219 (curve) == PSA_ECC_CURVE_SECP224R1 ? 224 : \
220 (curve) == PSA_ECC_CURVE_SECP256K1 ? 256 : \
221 (curve) == PSA_ECC_CURVE_SECP256R1 ? 256 : \
222 (curve) == PSA_ECC_CURVE_SECP384R1 ? 384 : \
223 (curve) == PSA_ECC_CURVE_SECP521R1 ? 521 : \
224 (curve) == PSA_ECC_CURVE_BRAINPOOL_P256R1 ? 256 : \
225 (curve) == PSA_ECC_CURVE_BRAINPOOL_P384R1 ? 384 : \
226 (curve) == PSA_ECC_CURVE_BRAINPOOL_P512R1 ? 512 : \
227 (curve) == PSA_ECC_CURVE_CURVE25519 ? 255 : \
228 (curve) == PSA_ECC_CURVE_CURVE448 ? 448 : \
229 0)
230
Hanno Becker8dbfca42018-10-12 11:56:55 +0100231/** \def PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN
232 *
233 * This macro returns the maximum length of the PSK supported
234 * by the TLS-1.2 PSK-to-MS key derivation.
235 *
236 * Quoting RFC 4279, Sect 5.3:
237 * TLS implementations supporting these ciphersuites MUST support
238 * arbitrary PSK identities up to 128 octets in length, and arbitrary
239 * PSKs up to 64 octets in length. Supporting longer identities and
240 * keys is RECOMMENDED.
241 *
242 * Therefore, no implementation should define a value smaller than 64
243 * for #PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN.
244 */
245#define PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN 128
246
Gilles Peskineaf3baab2018-06-27 22:55:52 +0200247/** \def PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE
248 *
249 * Maximum size of an asymmetric signature.
250 *
251 * This macro must expand to a compile-time constant integer. This value
252 * should be the maximum size of a MAC supported by the implementation,
253 * in bytes, and must be no smaller than this maximum.
254 */
255#define PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE \
256 PSA_BITS_TO_BYTES( \
257 PSA_VENDOR_RSA_MAX_KEY_BITS > PSA_VENDOR_ECC_MAX_CURVE_BITS ? \
258 PSA_VENDOR_RSA_MAX_KEY_BITS : \
259 PSA_VENDOR_ECC_MAX_CURVE_BITS \
260 )
261
Gilles Peskined911eb72018-08-14 15:18:45 +0200262/** The maximum size of a block cipher supported by the implementation. */
263#define PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE 16
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200264
Gilles Peskineacd4be32018-07-08 19:56:25 +0200265/** The size of the output of psa_mac_sign_finish(), in bytes.
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200266 *
Gilles Peskineacd4be32018-07-08 19:56:25 +0200267 * This is also the MAC size that psa_mac_verify_finish() expects.
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200268 *
269 * \param key_type The type of the MAC key.
270 * \param key_bits The size of the MAC key in bits.
271 * \param alg A MAC algorithm (\c PSA_ALG_XXX value such that
272 * #PSA_ALG_IS_MAC(alg) is true).
273 *
274 * \return The MAC size for the specified algorithm with
275 * the specified key parameters.
276 * \return 0 if the MAC algorithm is not recognized.
277 * \return Either 0 or the correct size for a MAC algorithm that
278 * the implementation recognizes, but does not support.
279 * \return Unspecified if the key parameters are not consistent
280 * with the algorithm.
281 */
282#define PSA_MAC_FINAL_SIZE(key_type, key_bits, alg) \
Gilles Peskined911eb72018-08-14 15:18:45 +0200283 ((alg) & PSA_ALG_MAC_TRUNCATION_MASK ? PSA_MAC_TRUNCATED_LENGTH(alg) : \
284 PSA_ALG_IS_HMAC(alg) ? PSA_HASH_SIZE(PSA_ALG_HMAC_GET_HASH(alg)) : \
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200285 PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) ? PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) : \
Gilles Peskine35fe2032018-08-22 18:26:02 +0200286 ((void)(key_type), (void)(key_bits), 0))
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200287
288/** The maximum size of the output of psa_aead_encrypt(), in bytes.
289 *
290 * If the size of the ciphertext buffer is at least this large, it is
291 * guaranteed that psa_aead_encrypt() will not fail due to an
292 * insufficient buffer size. Depending on the algorithm, the actual size of
293 * the ciphertext may be smaller.
294 *
295 * \param alg An AEAD algorithm
296 * (\c PSA_ALG_XXX value such that
297 * #PSA_ALG_IS_AEAD(alg) is true).
298 * \param plaintext_length Size of the plaintext in bytes.
299 *
300 * \return The AEAD ciphertext size for the specified
301 * algorithm.
302 * If the AEAD algorithm is not recognized, return 0.
303 * An implementation may return either 0 or a
304 * correct size for an AEAD algorithm that it
305 * recognizes, but does not support.
306 */
Gilles Peskine23cc2ff2018-08-17 19:47:52 +0200307#define PSA_AEAD_ENCRYPT_OUTPUT_SIZE(alg, plaintext_length) \
308 (PSA_AEAD_TAG_LENGTH(alg) != 0 ? \
309 (plaintext_length) + PSA_AEAD_TAG_LENGTH(alg) : \
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200310 0)
311
312/** The maximum size of the output of psa_aead_decrypt(), in bytes.
313 *
314 * If the size of the plaintext buffer is at least this large, it is
315 * guaranteed that psa_aead_decrypt() will not fail due to an
316 * insufficient buffer size. Depending on the algorithm, the actual size of
317 * the plaintext may be smaller.
318 *
319 * \param alg An AEAD algorithm
320 * (\c PSA_ALG_XXX value such that
321 * #PSA_ALG_IS_AEAD(alg) is true).
322 * \param ciphertext_length Size of the plaintext in bytes.
323 *
324 * \return The AEAD ciphertext size for the specified
325 * algorithm.
326 * If the AEAD algorithm is not recognized, return 0.
327 * An implementation may return either 0 or a
328 * correct size for an AEAD algorithm that it
329 * recognizes, but does not support.
330 */
Gilles Peskine23cc2ff2018-08-17 19:47:52 +0200331#define PSA_AEAD_DECRYPT_OUTPUT_SIZE(alg, ciphertext_length) \
332 (PSA_AEAD_TAG_LENGTH(alg) != 0 ? \
333 (plaintext_length) - PSA_AEAD_TAG_LENGTH(alg) : \
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200334 0)
335
Jaeden Amero7f042142019-02-07 10:44:38 +0000336#define PSA_RSA_MINIMUM_PADDING_SIZE(alg) \
337 (PSA_ALG_IS_RSA_OAEP(alg) ? \
338 2 * PSA_HASH_SIZE(PSA_ALG_RSA_OAEP_GET_HASH(alg)) + 1 : \
Gilles Peskinea7c26db2018-12-12 13:42:25 +0100339 11 /*PKCS#1v1.5*/)
340
341/**
342 * \brief ECDSA signature size for a given curve bit size
343 *
344 * \param curve_bits Curve size in bits.
345 * \return Signature size in bytes.
346 *
347 * \note This macro returns a compile-time constant if its argument is one.
348 */
349#define PSA_ECDSA_SIGNATURE_SIZE(curve_bits) \
350 (PSA_BITS_TO_BYTES(curve_bits) * 2)
351
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200352/** Safe signature buffer size for psa_asymmetric_sign().
353 *
354 * This macro returns a safe buffer size for a signature using a key
355 * of the specified type and size, with the specified algorithm.
356 * Note that the actual size of the signature may be smaller
357 * (some algorithms produce a variable-size signature).
358 *
359 * \warning This function may call its arguments multiple times or
360 * zero times, so you should not pass arguments that contain
361 * side effects.
362 *
363 * \param key_type An asymmetric key type (this may indifferently be a
364 * key pair type or a public key type).
365 * \param key_bits The size of the key in bits.
366 * \param alg The signature algorithm.
367 *
368 * \return If the parameters are valid and supported, return
369 * a buffer size in bytes that guarantees that
370 * psa_asymmetric_sign() will not fail with
371 * #PSA_ERROR_BUFFER_TOO_SMALL.
372 * If the parameters are a valid combination that is not supported
373 * by the implementation, this macro either shall return either a
374 * sensible size or 0.
375 * If the parameters are not valid, the
376 * return value is unspecified.
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200377 */
378#define PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE(key_type, key_bits, alg) \
379 (PSA_KEY_TYPE_IS_RSA(key_type) ? ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \
380 PSA_KEY_TYPE_IS_ECC(key_type) ? PSA_ECDSA_SIGNATURE_SIZE(key_bits) : \
381 ((void)alg, 0))
382
Gilles Peskinedcd14942018-07-12 00:30:52 +0200383/** Safe output buffer size for psa_asymmetric_encrypt().
384 *
385 * This macro returns a safe buffer size for a ciphertext produced using
386 * a key of the specified type and size, with the specified algorithm.
387 * Note that the actual size of the ciphertext may be smaller, depending
388 * on the algorithm.
389 *
390 * \warning This function may call its arguments multiple times or
391 * zero times, so you should not pass arguments that contain
392 * side effects.
393 *
394 * \param key_type An asymmetric key type (this may indifferently be a
395 * key pair type or a public key type).
396 * \param key_bits The size of the key in bits.
397 * \param alg The signature algorithm.
398 *
399 * \return If the parameters are valid and supported, return
400 * a buffer size in bytes that guarantees that
401 * psa_asymmetric_encrypt() will not fail with
402 * #PSA_ERROR_BUFFER_TOO_SMALL.
403 * If the parameters are a valid combination that is not supported
404 * by the implementation, this macro either shall return either a
405 * sensible size or 0.
406 * If the parameters are not valid, the
407 * return value is unspecified.
408 */
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200409#define PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \
410 (PSA_KEY_TYPE_IS_RSA(key_type) ? \
411 ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \
412 0)
Gilles Peskinedcd14942018-07-12 00:30:52 +0200413
414/** Safe output buffer size for psa_asymmetric_decrypt().
415 *
416 * This macro returns a safe buffer size for a ciphertext produced using
417 * a key of the specified type and size, with the specified algorithm.
418 * Note that the actual size of the ciphertext may be smaller, depending
419 * on the algorithm.
420 *
421 * \warning This function may call its arguments multiple times or
422 * zero times, so you should not pass arguments that contain
423 * side effects.
424 *
425 * \param key_type An asymmetric key type (this may indifferently be a
426 * key pair type or a public key type).
427 * \param key_bits The size of the key in bits.
428 * \param alg The signature algorithm.
429 *
430 * \return If the parameters are valid and supported, return
431 * a buffer size in bytes that guarantees that
432 * psa_asymmetric_decrypt() will not fail with
433 * #PSA_ERROR_BUFFER_TOO_SMALL.
434 * If the parameters are a valid combination that is not supported
435 * by the implementation, this macro either shall return either a
436 * sensible size or 0.
437 * If the parameters are not valid, the
438 * return value is unspecified.
439 */
Gilles Peskine49cee6c2018-06-27 21:03:58 +0200440#define PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \
441 (PSA_KEY_TYPE_IS_RSA(key_type) ? \
442 PSA_BITS_TO_BYTES(key_bits) - PSA_RSA_MINIMUM_PADDING_SIZE(alg) : \
443 0)
444
Gilles Peskine1be949b2018-08-10 19:06:59 +0200445/* Maximum size of the ASN.1 encoding of an INTEGER with the specified
446 * number of bits.
447 *
448 * This definition assumes that bits <= 2^19 - 9 so that the length field
449 * is at most 3 bytes. The length of the encoding is the length of the
450 * bit string padded to a whole number of bytes plus:
451 * - 1 type byte;
452 * - 1 to 3 length bytes;
453 * - 0 to 1 bytes of leading 0 due to the sign bit.
454 */
455#define PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(bits) \
456 ((bits) / 8 + 5)
457
458/* Maximum size of the export encoding of an RSA public key.
459 * Assumes that the public exponent is less than 2^32.
460 *
Gilles Peskine1be949b2018-08-10 19:06:59 +0200461 * RSAPublicKey ::= SEQUENCE {
462 * modulus INTEGER, -- n
463 * publicExponent INTEGER } -- e
464 *
Jaeden Amero25384a22019-01-10 10:23:21 +0000465 * - 4 bytes of SEQUENCE overhead;
Gilles Peskine1be949b2018-08-10 19:06:59 +0200466 * - n : INTEGER;
467 * - 7 bytes for the public exponent.
468 */
469#define PSA_KEY_EXPORT_RSA_PUBLIC_KEY_MAX_SIZE(key_bits) \
Jaeden Amero25384a22019-01-10 10:23:21 +0000470 (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) + 11)
Gilles Peskine1be949b2018-08-10 19:06:59 +0200471
472/* Maximum size of the export encoding of an RSA key pair.
473 * Assumes thatthe public exponent is less than 2^32 and that the size
474 * difference between the two primes is at most 1 bit.
475 *
476 * RSAPrivateKey ::= SEQUENCE {
477 * version Version, -- 0
478 * modulus INTEGER, -- N-bit
479 * publicExponent INTEGER, -- 32-bit
480 * privateExponent INTEGER, -- N-bit
481 * prime1 INTEGER, -- N/2-bit
482 * prime2 INTEGER, -- N/2-bit
483 * exponent1 INTEGER, -- N/2-bit
484 * exponent2 INTEGER, -- N/2-bit
485 * coefficient INTEGER, -- N/2-bit
486 * }
487 *
488 * - 4 bytes of SEQUENCE overhead;
489 * - 3 bytes of version;
490 * - 7 half-size INTEGERs plus 2 full-size INTEGERs,
491 * overapproximated as 9 half-size INTEGERS;
492 * - 7 bytes for the public exponent.
493 */
494#define PSA_KEY_EXPORT_RSA_KEYPAIR_MAX_SIZE(key_bits) \
495 (9 * PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE((key_bits) / 2 + 1) + 14)
496
497/* Maximum size of the export encoding of a DSA public key.
498 *
499 * SubjectPublicKeyInfo ::= SEQUENCE {
500 * algorithm AlgorithmIdentifier,
501 * subjectPublicKey BIT STRING } -- contains DSAPublicKey
502 * AlgorithmIdentifier ::= SEQUENCE {
503 * algorithm OBJECT IDENTIFIER,
504 * parameters Dss-Parms } -- SEQUENCE of 3 INTEGERs
505 * DSAPublicKey ::= INTEGER -- public key, Y
506 *
507 * - 3 * 4 bytes of SEQUENCE overhead;
508 * - 1 + 1 + 7 bytes of algorithm (DSA OID);
509 * - 4 bytes of BIT STRING overhead;
510 * - 3 full-size INTEGERs (p, g, y);
511 * - 1 + 1 + 32 bytes for 1 sub-size INTEGER (q <= 256 bits).
512 */
513#define PSA_KEY_EXPORT_DSA_PUBLIC_KEY_MAX_SIZE(key_bits) \
514 (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) * 3 + 59)
515
516/* Maximum size of the export encoding of a DSA key pair.
517 *
518 * DSAPrivateKey ::= SEQUENCE {
519 * version Version, -- 0
520 * prime INTEGER, -- p
521 * subprime INTEGER, -- q
522 * generator INTEGER, -- g
523 * public INTEGER, -- y
524 * private INTEGER, -- x
525 * }
526 *
527 * - 4 bytes of SEQUENCE overhead;
528 * - 3 bytes of version;
529 * - 3 full-size INTEGERs (p, g, y);
530 * - 2 * (1 + 1 + 32) bytes for 2 sub-size INTEGERs (q, x <= 256 bits).
531 */
532#define PSA_KEY_EXPORT_DSA_KEYPAIR_MAX_SIZE(key_bits) \
533 (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) * 3 + 75)
534
535/* Maximum size of the export encoding of an ECC public key.
536 *
Jaeden Ameroccdce902019-01-10 11:42:27 +0000537 * The representation of an ECC public key is:
538 * - The byte 0x04;
539 * - `x_P` as a `ceiling(m/8)`-byte string, big-endian;
540 * - `y_P` as a `ceiling(m/8)`-byte string, big-endian;
541 * - where m is the bit size associated with the curve.
Gilles Peskine1be949b2018-08-10 19:06:59 +0200542 *
Jaeden Ameroccdce902019-01-10 11:42:27 +0000543 * - 1 byte + 2 * point size.
Gilles Peskine1be949b2018-08-10 19:06:59 +0200544 */
545#define PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(key_bits) \
Jaeden Ameroccdce902019-01-10 11:42:27 +0000546 (2 * PSA_BITS_TO_BYTES(key_bits) + 1)
Gilles Peskine1be949b2018-08-10 19:06:59 +0200547
548/* Maximum size of the export encoding of an ECC key pair.
549 *
Gilles Peskine5eb15212018-10-31 13:24:35 +0100550 * An ECC key pair is represented by the secret value.
Gilles Peskine1be949b2018-08-10 19:06:59 +0200551 */
552#define PSA_KEY_EXPORT_ECC_KEYPAIR_MAX_SIZE(key_bits) \
Gilles Peskine5eb15212018-10-31 13:24:35 +0100553 (PSA_BITS_TO_BYTES(key_bits))
Gilles Peskine1be949b2018-08-10 19:06:59 +0200554
555/** Safe output buffer size for psa_export_key() or psa_export_public_key().
556 *
557 * This macro returns a compile-time constant if its arguments are
558 * compile-time constants.
559 *
560 * \warning This function may call its arguments multiple times or
561 * zero times, so you should not pass arguments that contain
562 * side effects.
563 *
564 * The following code illustrates how to allocate enough memory to export
565 * a key by querying the key type and size at runtime.
566 * \code{c}
567 * psa_key_type_t key_type;
568 * size_t key_bits;
569 * psa_status_t status;
570 * status = psa_get_key_information(key, &key_type, &key_bits);
571 * if (status != PSA_SUCCESS) handle_error(...);
572 * size_t buffer_size = PSA_KEY_EXPORT_MAX_SIZE(key_type, key_bits);
573 * unsigned char *buffer = malloc(buffer_size);
574 * if (buffer != NULL) handle_error(...);
575 * size_t buffer_length;
576 * status = psa_export_key(key, buffer, buffer_size, &buffer_length);
577 * if (status != PSA_SUCCESS) handle_error(...);
578 * \endcode
579 *
580 * For psa_export_public_key(), calculate the buffer size from the
581 * public key type. You can use the macro #PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR
582 * to convert a key pair type to the corresponding public key type.
583 * \code{c}
584 * psa_key_type_t key_type;
585 * size_t key_bits;
586 * psa_status_t status;
587 * status = psa_get_key_information(key, &key_type, &key_bits);
588 * if (status != PSA_SUCCESS) handle_error(...);
589 * psa_key_type_t public_key_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(key_type);
590 * size_t buffer_size = PSA_KEY_EXPORT_MAX_SIZE(public_key_type, key_bits);
591 * unsigned char *buffer = malloc(buffer_size);
592 * if (buffer != NULL) handle_error(...);
593 * size_t buffer_length;
594 * status = psa_export_public_key(key, buffer, buffer_size, &buffer_length);
595 * if (status != PSA_SUCCESS) handle_error(...);
596 * \endcode
597 *
598 * \param key_type A supported key type.
599 * \param key_bits The size of the key in bits.
Gilles Peskine1be949b2018-08-10 19:06:59 +0200600 *
601 * \return If the parameters are valid and supported, return
602 * a buffer size in bytes that guarantees that
603 * psa_asymmetric_sign() will not fail with
604 * #PSA_ERROR_BUFFER_TOO_SMALL.
605 * If the parameters are a valid combination that is not supported
606 * by the implementation, this macro either shall return either a
607 * sensible size or 0.
608 * If the parameters are not valid, the
609 * return value is unspecified.
610 */
611#define PSA_KEY_EXPORT_MAX_SIZE(key_type, key_bits) \
612 (PSA_KEY_TYPE_IS_UNSTRUCTURED(key_type) ? PSA_BITS_TO_BYTES(key_bits) : \
613 (key_type) == PSA_KEY_TYPE_RSA_KEYPAIR ? PSA_KEY_EXPORT_RSA_KEYPAIR_MAX_SIZE(key_bits) : \
614 (key_type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY ? PSA_KEY_EXPORT_RSA_PUBLIC_KEY_MAX_SIZE(key_bits) : \
615 (key_type) == PSA_KEY_TYPE_DSA_KEYPAIR ? PSA_KEY_EXPORT_DSA_KEYPAIR_MAX_SIZE(key_bits) : \
616 (key_type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY ? PSA_KEY_EXPORT_DSA_PUBLIC_KEY_MAX_SIZE(key_bits) : \
617 PSA_KEY_TYPE_IS_ECC_KEYPAIR(key_type) ? PSA_KEY_EXPORT_ECC_KEYPAIR_MAX_SIZE(key_bits) : \
618 PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY(key_type) ? PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(key_bits) : \
619 0)
620
Gilles Peskine0cad07c2018-06-27 19:49:02 +0200621#endif /* PSA_CRYPTO_SIZES_H */