blob: 56e053604250c21c238f561256b41bfc5adacc59 [file] [log] [blame]
Gilles Peskinee59236f2018-01-27 23:32:46 +01001/**
2 * \file psa/crypto_extra.h
3 *
4 * \brief PSA cryptography module: Mbed TLS vendor extensions
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 is reserved for vendor-specific definitions.
Gilles Peskinee59236f2018-01-27 23:32:46 +010010 */
11/*
12 * Copyright (C) 2018, ARM Limited, All Rights Reserved
13 * SPDX-License-Identifier: Apache-2.0
14 *
15 * Licensed under the Apache License, Version 2.0 (the "License"); you may
16 * not use this file except in compliance with the License.
17 * You may obtain a copy of the License at
18 *
19 * http://www.apache.org/licenses/LICENSE-2.0
20 *
21 * Unless required by applicable law or agreed to in writing, software
22 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
23 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 * See the License for the specific language governing permissions and
25 * limitations under the License.
26 *
27 * This file is part of mbed TLS (https://tls.mbed.org)
28 */
29
30#ifndef PSA_CRYPTO_EXTRA_H
31#define PSA_CRYPTO_EXTRA_H
32
Jaeden Amero81cefed2019-02-25 08:51:27 +000033#include "mbedtls/platform_util.h"
34
Gilles Peskinee59236f2018-01-27 23:32:46 +010035#ifdef __cplusplus
36extern "C" {
37#endif
38
Netanel Gonen2bcd3122018-11-19 11:53:02 +020039/* UID for secure storage seed */
avolinski0d2c2662018-11-21 17:31:07 +020040#define PSA_CRYPTO_ITS_RANDOM_SEED_UID 0xFFFFFF52
Netanel Gonen2bcd3122018-11-19 11:53:02 +020041
Jaeden Amero5e6d24c2019-02-21 10:41:29 +000042/*
43 * Deprecated PSA Crypto error code definitions
44 */
45#if !defined(MBEDTLS_DEPRECATED_REMOVED)
46#define PSA_ERROR_UNKNOWN_ERROR \
47 MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_GENERIC_ERROR )
48#endif
49
50#if !defined(MBEDTLS_DEPRECATED_REMOVED)
51#define PSA_ERROR_OCCUPIED_SLOT \
52 MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_ALREADY_EXISTS )
53#endif
54
55#if !defined(MBEDTLS_DEPRECATED_REMOVED)
56#define PSA_ERROR_EMPTY_SLOT \
57 MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_DOES_NOT_EXIST )
58#endif
59
60#if !defined(MBEDTLS_DEPRECATED_REMOVED)
61#define PSA_ERROR_INSUFFICIENT_CAPACITY \
62 MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_INSUFFICIENT_DATA )
63#endif
64
Gilles Peskine96f0b3b2019-05-10 19:33:38 +020065/** \addtogroup attributes
66 * @{
67 */
68
69/** \brief Declare the enrollment algorithm for a key.
70 *
71 * An operation on a key may indifferently use the algorithm set with
72 * psa_set_key_algorithm() or with this function.
73 *
74 * \param[out] attributes The attribute structure to write to.
75 * \param alg2 A second algorithm that the key may be used
76 * for, in addition to the algorithm set with
77 * psa_set_key_algorithm().
78 *
79 * \warning Setting an enrollment algorithm is not recommended, because
80 * using the same key with different algorithms can allow some
81 * attacks based on arithmetic relations between different
82 * computations made with the same key, or can escalate harmless
83 * side channels into exploitable ones. Use this function only
Gilles Peskinef25c9ec2019-05-22 11:45:59 +020084 * if it is necessary to support a protocol for which it has been
Gilles Peskine96f0b3b2019-05-10 19:33:38 +020085 * verified that the usage of the key with multiple algorithms
86 * is safe.
87 */
88static inline void psa_set_key_enrollment_algorithm(
89 psa_key_attributes_t *attributes,
90 psa_algorithm_t alg2)
91{
92 attributes->policy.alg2 = alg2;
93}
94
95/** Retrieve the enrollment algorithm policy from key attributes.
96 *
97 * \param[in] attributes The key attribute structure to query.
98 *
99 * \return The enrollment algorithm stored in the attribute structure.
100 */
101static inline psa_algorithm_t psa_get_key_enrollment_algorithm(
102 const psa_key_attributes_t *attributes)
103{
104 return( attributes->policy.alg2 );
105}
106
107/**@}*/
108
Gilles Peskinee59236f2018-01-27 23:32:46 +0100109/**
110 * \brief Library deinitialization.
111 *
112 * This function clears all data associated with the PSA layer,
113 * including the whole key store.
114 *
115 * This is an Mbed TLS extension.
116 */
117void mbedtls_psa_crypto_free( void );
118
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200119
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200120/**
Gilles Peskineee2ffd32018-11-16 11:02:49 +0100121 * \brief Inject an initial entropy seed for the random generator into
122 * secure storage.
Gilles Peskine0338ded2018-11-15 18:19:27 +0100123 *
124 * This function injects data to be used as a seed for the random generator
125 * used by the PSA Crypto implementation. On devices that lack a trusted
126 * entropy source (preferably a hardware random number generator),
127 * the Mbed PSA Crypto implementation uses this value to seed its
128 * random generator.
129 *
130 * On devices without a trusted entropy source, this function must be
131 * called exactly once in the lifetime of the device. On devices with
132 * a trusted entropy source, calling this function is optional.
133 * In all cases, this function may only be called before calling any
134 * other function in the PSA Crypto API, including psa_crypto_init().
135 *
136 * When this function returns successfully, it populates a file in
137 * persistent storage. Once the file has been created, this function
138 * can no longer succeed.
Gilles Peskineee2ffd32018-11-16 11:02:49 +0100139 *
140 * If any error occurs, this function does not change the system state.
141 * You can call this function again after correcting the reason for the
142 * error if possible.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200143 *
144 * \warning This function **can** fail! Callers MUST check the return status.
145 *
Gilles Peskine0338ded2018-11-15 18:19:27 +0100146 * \warning If you use this function, you should use it as part of a
147 * factory provisioning process. The value of the injected seed
148 * is critical to the security of the device. It must be
149 * *secret*, *unpredictable* and (statistically) *unique per device*.
150 * You should be generate it randomly using a cryptographically
151 * secure random generator seeded from trusted entropy sources.
152 * You should transmit it securely to the device and ensure
153 * that its value is not leaked or stored anywhere beyond the
154 * needs of transmitting it from the point of generation to
155 * the call of this function, and erase all copies of the value
156 * once this function returns.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200157 *
Gilles Peskine0338ded2018-11-15 18:19:27 +0100158 * This is an Mbed TLS extension.
159 *
Netanel Gonen1d7195f2018-11-22 16:24:48 +0200160 * \note This function is only available on the following platforms:
Gilles Peskinee3dbdd82019-02-25 11:04:06 +0100161 * * If the compile-time option MBEDTLS_PSA_INJECT_ENTROPY is enabled.
162 * Note that you must provide compatible implementations of
163 * mbedtls_nv_seed_read and mbedtls_nv_seed_write.
Gilles Peskine0cfaed12018-11-22 17:11:45 +0200164 * * In a client-server integration of PSA Cryptography, on the client side,
Netanel Gonen1d7195f2018-11-22 16:24:48 +0200165 * if the server supports this feature.
Netanel Gonen596e65e2018-11-22 18:41:43 +0200166 * \param[in] seed Buffer containing the seed value to inject.
Gilles Peskine0cfaed12018-11-22 17:11:45 +0200167 * \param[in] seed_size Size of the \p seed buffer.
Netanel Gonen596e65e2018-11-22 18:41:43 +0200168 * The size of the seed in bytes must be greater
169 * or equal to both #MBEDTLS_ENTROPY_MIN_PLATFORM
170 * and #MBEDTLS_ENTROPY_BLOCK_SIZE.
171 * It must be less or equal to
172 * #MBEDTLS_ENTROPY_MAX_SEED_SIZE.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200173 *
174 * \retval #PSA_SUCCESS
Gilles Peskine0338ded2018-11-15 18:19:27 +0100175 * The seed value was injected successfully. The random generator
176 * of the PSA Crypto implementation is now ready for use.
177 * You may now call psa_crypto_init() and use the PSA Crypto
178 * implementation.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200179 * \retval #PSA_ERROR_INVALID_ARGUMENT
Gilles Peskineee2ffd32018-11-16 11:02:49 +0100180 * \p seed_size is out of range.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200181 * \retval #PSA_ERROR_STORAGE_FAILURE
Gilles Peskine0338ded2018-11-15 18:19:27 +0100182 * There was a failure reading or writing from storage.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200183 * \retval #PSA_ERROR_NOT_PERMITTED
Gilles Peskine0338ded2018-11-15 18:19:27 +0100184 * The library has already been initialized. It is no longer
185 * possible to call this function.
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200186 */
187psa_status_t mbedtls_psa_inject_entropy(const unsigned char *seed,
188 size_t seed_size);
189
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100190/** Set up a key derivation operation.
191 *
192 * FIMXE This function is no longer part of the official API. Its prototype
193 * is only kept around for the sake of tests that haven't been updated yet.
194 *
Gilles Peskine3be6b7f2019-03-05 19:32:26 +0100195 * A key derivation algorithm takes three inputs: a secret input \p handle and
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100196 * two non-secret inputs \p label and p salt.
197 * The result of this function is a byte generator which can
198 * be used to produce keys and other cryptographic material.
199 *
200 * The role of \p label and \p salt is as follows:
201 * - For HKDF (#PSA_ALG_HKDF), \p salt is the salt used in the "extract" step
202 * and \p label is the info string used in the "expand" step.
203 *
Gilles Peskinecf7292e2019-05-16 17:53:40 +0200204 * \param[in,out] operation The key derivation object to set up. It must
205 * have been initialized as per the documentation
206 * for #psa_key_derivation_operation_t and not
207 * yet be in use.
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100208 * \param handle Handle to the secret key.
209 * \param alg The key derivation algorithm to compute
210 * (\c PSA_ALG_XXX value such that
211 * #PSA_ALG_IS_KEY_DERIVATION(\p alg) is true).
212 * \param[in] salt Salt to use.
213 * \param salt_length Size of the \p salt buffer in bytes.
214 * \param[in] label Label to use.
215 * \param label_length Size of the \p label buffer in bytes.
216 * \param capacity The maximum number of bytes that the
Gilles Peskine35675b62019-05-16 17:26:11 +0200217 * operation will be able to provide.
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100218 *
219 * \retval #PSA_SUCCESS
220 * Success.
221 * \retval #PSA_ERROR_INVALID_HANDLE
222 * \retval #PSA_ERROR_EMPTY_SLOT
223 * \retval #PSA_ERROR_NOT_PERMITTED
224 * \retval #PSA_ERROR_INVALID_ARGUMENT
225 * \c key is not compatible with \c alg,
226 * or \p capacity is too large for the specified algorithm and key.
227 * \retval #PSA_ERROR_NOT_SUPPORTED
228 * \c alg is not supported or is not a key derivation algorithm.
229 * \retval #PSA_ERROR_INSUFFICIENT_MEMORY
230 * \retval #PSA_ERROR_COMMUNICATION_FAILURE
231 * \retval #PSA_ERROR_HARDWARE_FAILURE
Gilles Peskine4b3eb692019-05-16 21:35:18 +0200232 * \retval #PSA_ERROR_CORRUPTION_DETECTED
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100233 * \retval #PSA_ERROR_BAD_STATE
234 * The library has not been previously initialized by psa_crypto_init().
235 * It is implementation-dependent whether a failure to initialize
236 * results in this error code.
237 */
Gilles Peskine35675b62019-05-16 17:26:11 +0200238psa_status_t psa_key_derivation(psa_key_derivation_operation_t *operation,
Gilles Peskine5dcd3ce2019-01-18 16:41:31 +0100239 psa_key_handle_t handle,
240 psa_algorithm_t alg,
241 const uint8_t *salt,
242 size_t salt_length,
243 const uint8_t *label,
244 size_t label_length,
245 size_t capacity);
246
Gilles Peskine6843c292019-01-18 16:44:49 +0100247/* FIXME Deprecated. Remove this as soon as all the tests are updated. */
248#define PSA_ALG_SELECT_RAW ((psa_algorithm_t)0x31000001)
Netanel Gonen2bcd3122018-11-19 11:53:02 +0200249
Gilles Peskinee38ab1a2019-05-16 13:51:50 +0200250/** \addtogroup crypto_types
251 * @{
252 */
253
Gilles Peskinea1302192019-05-16 13:58:24 +0200254/** DSA public key.
255 *
256 * The import and export format is the
257 * representation of the public key `y = g^x mod p` as a big-endian byte
258 * string. The length of the byte string is the length of the base prime `p`
259 * in bytes.
260 */
Gilles Peskinee38ab1a2019-05-16 13:51:50 +0200261#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x60020000)
Gilles Peskinea1302192019-05-16 13:58:24 +0200262
263/** DSA key pair (private and public key).
264 *
265 * The import and export format is the
266 * representation of the private key `x` as a big-endian byte string. The
267 * length of the byte string is the private key size in bytes (leading zeroes
268 * are not stripped).
269 *
270 * Determinstic DSA key derivation with psa_generate_derived_key follows
271 * FIPS 186-4 §B.1.2: interpret the byte string as integer
272 * in big-endian order. Discard it if it is not in the range
273 * [0, *N* - 2] where *N* is the boundary of the private key domain
274 * (the prime *p* for Diffie-Hellman, the subprime *q* for DSA,
275 * or the order of the curve's base point for ECC).
276 * Add 1 to the resulting integer and use this as the private key *x*.
277 *
278 */
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200279#define PSA_KEY_TYPE_DSA_KEY_PAIR ((psa_key_type_t)0x70020000)
Gilles Peskinea1302192019-05-16 13:58:24 +0200280
Gilles Peskinee38ab1a2019-05-16 13:51:50 +0200281/** Whether a key type is an DSA key (pair or public-only). */
282#define PSA_KEY_TYPE_IS_DSA(type) \
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200283 (PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY)
Gilles Peskinee38ab1a2019-05-16 13:51:50 +0200284
285#define PSA_ALG_DSA_BASE ((psa_algorithm_t)0x10040000)
286/** DSA signature with hashing.
287 *
288 * This is the signature scheme defined by FIPS 186-4,
289 * with a random per-message secret number (*k*).
290 *
291 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
292 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
293 * This includes #PSA_ALG_ANY_HASH
294 * when specifying the algorithm in a usage policy.
295 *
296 * \return The corresponding DSA signature algorithm.
297 * \return Unspecified if \p hash_alg is not a supported
298 * hash algorithm.
299 */
300#define PSA_ALG_DSA(hash_alg) \
301 (PSA_ALG_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
302#define PSA_ALG_DETERMINISTIC_DSA_BASE ((psa_algorithm_t)0x10050000)
303#define PSA_ALG_DSA_DETERMINISTIC_FLAG ((psa_algorithm_t)0x00010000)
304/** Deterministic DSA signature with hashing.
305 *
306 * This is the deterministic variant defined by RFC 6979 of
307 * the signature scheme defined by FIPS 186-4.
308 *
309 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
310 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
311 * This includes #PSA_ALG_ANY_HASH
312 * when specifying the algorithm in a usage policy.
313 *
314 * \return The corresponding DSA signature algorithm.
315 * \return Unspecified if \p hash_alg is not a supported
316 * hash algorithm.
317 */
318#define PSA_ALG_DETERMINISTIC_DSA(hash_alg) \
319 (PSA_ALG_DETERMINISTIC_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
320#define PSA_ALG_IS_DSA(alg) \
321 (((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_DSA_DETERMINISTIC_FLAG) == \
322 PSA_ALG_DSA_BASE)
323#define PSA_ALG_DSA_IS_DETERMINISTIC(alg) \
324 (((alg) & PSA_ALG_DSA_DETERMINISTIC_FLAG) != 0)
325#define PSA_ALG_IS_DETERMINISTIC_DSA(alg) \
326 (PSA_ALG_IS_DSA(alg) && PSA_ALG_DSA_IS_DETERMINISTIC(alg))
327#define PSA_ALG_IS_RANDOMIZED_DSA(alg) \
328 (PSA_ALG_IS_DSA(alg) && !PSA_ALG_DSA_IS_DETERMINISTIC(alg))
329
330
331/* We need to expand the sample definition of this macro from
332 * the API definition. */
333#undef PSA_ALG_IS_HASH_AND_SIGN
334#define PSA_ALG_IS_HASH_AND_SIGN(alg) \
335 (PSA_ALG_IS_RSA_PSS(alg) || PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) || \
336 PSA_ALG_IS_DSA(alg) || PSA_ALG_IS_ECDSA(alg))
337
338/**@}*/
339
Gilles Peskine24f10f82019-05-16 12:18:32 +0200340/** \addtogroup attributes
341 * @{
342 */
343
Gilles Peskinedcaefae2019-05-16 12:55:35 +0200344/** Custom Diffie-Hellman group.
345 *
346 * For keys of type #PSA_KEY_TYPE_DH_PUBLIC_KEY(#PSA_DH_GROUP_CUSTOM) or
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200347 * #PSA_KEY_TYPE_DH_KEY_PAIR(#PSA_DH_GROUP_CUSTOM), the group data comes
Gilles Peskinedcaefae2019-05-16 12:55:35 +0200348 * from domain parameters set by psa_set_key_domain_parameters().
349 */
350/* This value is reserved for private use in the TLS named group registry. */
351#define PSA_DH_GROUP_CUSTOM ((psa_dh_group_t) 0x01fc)
352
353
Gilles Peskine24f10f82019-05-16 12:18:32 +0200354/**
355 * \brief Set domain parameters for a key.
356 *
357 * Some key types require additional domain parameters in addition to
358 * the key type identifier and the key size. Use this function instead
359 * of psa_set_key_type() when you need to specify domain parameters.
360 *
361 * The format for the required domain parameters varies based on the key type.
362 *
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200363 * - For RSA keys (#PSA_KEY_TYPE_RSA_PUBLIC_KEY or #PSA_KEY_TYPE_RSA_KEY_PAIR),
Gilles Peskine24f10f82019-05-16 12:18:32 +0200364 * the domain parameter data consists of the public exponent,
365 * represented as a big-endian integer with no leading zeros.
366 * This information is used when generating an RSA key pair.
367 * When importing a key, the public exponent is read from the imported
368 * key data and the exponent recorded in the attribute structure is ignored.
369 * As an exception, the public exponent 65537 is represented by an empty
370 * byte string.
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200371 * - For DSA keys (#PSA_KEY_TYPE_DSA_PUBLIC_KEY or #PSA_KEY_TYPE_DSA_KEY_PAIR),
Gilles Peskine24f10f82019-05-16 12:18:32 +0200372 * the `Dss-Parms` format as defined by RFC 3279 §2.3.2.
373 * ```
374 * Dss-Parms ::= SEQUENCE {
375 * p INTEGER,
376 * q INTEGER,
377 * g INTEGER
378 * }
379 * ```
Gilles Peskinedcaefae2019-05-16 12:55:35 +0200380 * - For Diffie-Hellman key exchange keys
381 * (#PSA_KEY_TYPE_DH_PUBLIC_KEY(#PSA_DH_GROUP_CUSTOM) or
Gilles Peskinec93b80c2019-05-16 19:39:54 +0200382 * #PSA_KEY_TYPE_DH_KEY_PAIR(#PSA_DH_GROUP_CUSTOM)), the
Gilles Peskine24f10f82019-05-16 12:18:32 +0200383 * `DomainParameters` format as defined by RFC 3279 §2.3.3.
384 * ```
385 * DomainParameters ::= SEQUENCE {
386 * p INTEGER, -- odd prime, p=jq +1
387 * g INTEGER, -- generator, g
388 * q INTEGER, -- factor of p-1
389 * j INTEGER OPTIONAL, -- subgroup factor
390 * validationParms ValidationParms OPTIONAL
391 * }
392 * ValidationParms ::= SEQUENCE {
393 * seed BIT STRING,
394 * pgenCounter INTEGER
395 * }
396 * ```
397 *
398 * \note This function may allocate memory or other resources.
399 * Once you have called this function on an attribute structure,
400 * you must call psa_reset_key_attributes() to free these resources.
401 *
402 * \note This is an experimental extension to the interface. It may change
403 * in future versions of the library.
404 *
405 * \param[in,out] attributes Attribute structure where the specified domain
406 * parameters will be stored.
407 * If this function fails, the content of
408 * \p attributes is not modified.
409 * \param type Key type (a \c PSA_KEY_TYPE_XXX value).
410 * \param[in] data Buffer containing the key domain parameters.
411 * The content of this buffer is interpreted
412 * according to \p type as described above.
413 * \param data_length Size of the \p data buffer in bytes.
414 *
415 * \retval #PSA_SUCCESS
416 * \retval #PSA_ERROR_INVALID_ARGUMENT
417 * \retval #PSA_ERROR_NOT_SUPPORTED
418 * \retval #PSA_ERROR_INSUFFICIENT_MEMORY
419 */
420psa_status_t psa_set_key_domain_parameters(psa_key_attributes_t *attributes,
421 psa_key_type_t type,
422 const uint8_t *data,
423 size_t data_length);
424
425/**
426 * \brief Get domain parameters for a key.
427 *
428 * Get the domain parameters for a key with this function, if any. The format
429 * of the domain parameters written to \p data is specified in the
430 * documentation for psa_set_key_domain_parameters().
431 *
432 * \note This is an experimental extension to the interface. It may change
433 * in future versions of the library.
434 *
435 * \param[in] attributes The key attribute structure to query.
436 * \param[out] data On success, the key domain parameters.
437 * \param data_size Size of the \p data buffer in bytes.
438 * The buffer is guaranteed to be large
439 * enough if its size in bytes is at least
440 * the value given by
441 * PSA_KEY_DOMAIN_PARAMETERS_SIZE().
442 * \param[out] data_length On success, the number of bytes
443 * that make up the key domain parameters data.
444 *
445 * \retval #PSA_SUCCESS
446 * \retval #PSA_ERROR_BUFFER_TOO_SMALL
447 */
448psa_status_t psa_get_key_domain_parameters(
449 const psa_key_attributes_t *attributes,
450 uint8_t *data,
451 size_t data_size,
452 size_t *data_length);
453
454/** Safe output buffer size for psa_get_key_domain_parameters().
455 *
456 * This macro returns a compile-time constant if its arguments are
457 * compile-time constants.
458 *
459 * \warning This function may call its arguments multiple times or
460 * zero times, so you should not pass arguments that contain
461 * side effects.
462 *
463 * \note This is an experimental extension to the interface. It may change
464 * in future versions of the library.
465 *
466 * \param key_type A supported key type.
467 * \param key_bits The size of the key in bits.
468 *
469 * \return If the parameters are valid and supported, return
470 * a buffer size in bytes that guarantees that
471 * psa_get_key_domain_parameters() will not fail with
472 * #PSA_ERROR_BUFFER_TOO_SMALL.
473 * If the parameters are a valid combination that is not supported
Gilles Peskine27a983d2019-05-16 17:24:53 +0200474 * by the implementation, this macro shall return either a
Gilles Peskine24f10f82019-05-16 12:18:32 +0200475 * sensible size or 0.
476 * If the parameters are not valid, the
477 * return value is unspecified.
478 */
479#define PSA_KEY_DOMAIN_PARAMETERS_SIZE(key_type, key_bits) \
480 (PSA_KEY_TYPE_IS_RSA(key_type) ? sizeof(int) : \
481 PSA_KEY_TYPE_IS_DH(key_type) ? PSA_DH_KEY_DOMAIN_PARAMETERS_SIZE(key_bits) : \
482 PSA_KEY_TYPE_IS_DSA(key_type) ? PSA_DSA_KEY_DOMAIN_PARAMETERS_SIZE(key_bits) : \
483 0)
484#define PSA_DH_KEY_DOMAIN_PARAMETERS_SIZE(key_bits) \
485 (4 + (PSA_BITS_TO_BYTES(key_bits) + 5) * 3 /*without optional parts*/)
486#define PSA_DSA_KEY_DOMAIN_PARAMETERS_SIZE(key_bits) \
487 (4 + (PSA_BITS_TO_BYTES(key_bits) + 5) * 2 /*p, g*/ + 34 /*q*/)
488
489/**@}*/
490
Gilles Peskinee59236f2018-01-27 23:32:46 +0100491#ifdef __cplusplus
492}
493#endif
494
495#endif /* PSA_CRYPTO_EXTRA_H */