blob: 6cd22c8401140aea89022fa19dde1c97602b2160 [file] [log] [blame]
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001/**
2 * \file psa/crypto_values.h
3 *
4 * \brief PSA cryptography module: macros to build and analyze integer values.
5 *
6 * \note This file may not be included directly. Applications must
7 * include psa/crypto.h. Drivers must include the appropriate driver
8 * header file.
9 *
10 * This file contains portable definitions of macros to build and analyze
11 * values of integral types that encode properties of cryptographic keys,
12 * designations of cryptographic algorithms, and error codes returned by
13 * the library.
14 *
15 * This header file only defines preprocessor macros.
16 */
17/*
18 * Copyright (C) 2018, ARM Limited, All Rights Reserved
19 * SPDX-License-Identifier: Apache-2.0
20 *
21 * Licensed under the Apache License, Version 2.0 (the "License"); you may
22 * not use this file except in compliance with the License.
23 * You may obtain a copy of the License at
24 *
25 * http://www.apache.org/licenses/LICENSE-2.0
26 *
27 * Unless required by applicable law or agreed to in writing, software
28 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
29 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 * See the License for the specific language governing permissions and
31 * limitations under the License.
32 *
33 * This file is part of mbed TLS (https://tls.mbed.org)
34 */
35
36#ifndef PSA_CRYPTO_VALUES_H
37#define PSA_CRYPTO_VALUES_H
38
39/** \defgroup error Error codes
40 * @{
41 */
42
David Saadab4ecc272019-02-14 13:48:10 +020043/* PSA error codes */
44
Gilles Peskinef3b731e2018-12-12 13:38:31 +010045/** The action was completed successfully. */
46#define PSA_SUCCESS ((psa_status_t)0)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010047
48/** An error occurred that does not correspond to any defined
49 * failure cause.
50 *
51 * Implementations may use this error code if none of the other standard
52 * error codes are applicable. */
David Saadab4ecc272019-02-14 13:48:10 +020053#define PSA_ERROR_GENERIC_ERROR ((psa_status_t)-132)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010054
55/** The requested operation or a parameter is not supported
56 * by this implementation.
57 *
58 * Implementations should return this error code when an enumeration
59 * parameter such as a key type, algorithm, etc. is not recognized.
60 * If a combination of parameters is recognized and identified as
61 * not valid, return #PSA_ERROR_INVALID_ARGUMENT instead. */
David Saadab4ecc272019-02-14 13:48:10 +020062#define PSA_ERROR_NOT_SUPPORTED ((psa_status_t)-134)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010063
64/** The requested action is denied by a policy.
65 *
66 * Implementations should return this error code when the parameters
67 * are recognized as valid and supported, and a policy explicitly
68 * denies the requested operation.
69 *
70 * If a subset of the parameters of a function call identify a
71 * forbidden operation, and another subset of the parameters are
72 * not valid or not supported, it is unspecified whether the function
73 * returns #PSA_ERROR_NOT_PERMITTED, #PSA_ERROR_NOT_SUPPORTED or
74 * #PSA_ERROR_INVALID_ARGUMENT. */
David Saadab4ecc272019-02-14 13:48:10 +020075#define PSA_ERROR_NOT_PERMITTED ((psa_status_t)-133)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010076
77/** An output buffer is too small.
78 *
79 * Applications can call the \c PSA_xxx_SIZE macro listed in the function
80 * description to determine a sufficient buffer size.
81 *
82 * Implementations should preferably return this error code only
83 * in cases when performing the operation with a larger output
84 * buffer would succeed. However implementations may return this
85 * error if a function has invalid or unsupported parameters in addition
86 * to the parameters that determine the necessary output buffer size. */
David Saadab4ecc272019-02-14 13:48:10 +020087#define PSA_ERROR_BUFFER_TOO_SMALL ((psa_status_t)-138)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010088
David Saadab4ecc272019-02-14 13:48:10 +020089/** Asking for an item that already exists
Gilles Peskinef3b731e2018-12-12 13:38:31 +010090 *
David Saadab4ecc272019-02-14 13:48:10 +020091 * Implementations should return this error, when attempting
92 * to write an item (like a key) that already exists. */
93#define PSA_ERROR_ALREADY_EXISTS ((psa_status_t)-139)
Gilles Peskinef3b731e2018-12-12 13:38:31 +010094
David Saadab4ecc272019-02-14 13:48:10 +020095/** Asking for an item that doesn't exist
Gilles Peskinef3b731e2018-12-12 13:38:31 +010096 *
David Saadab4ecc272019-02-14 13:48:10 +020097 * Implementations should return this error, if a requested item (like
98 * a key) does not exist. */
99#define PSA_ERROR_DOES_NOT_EXIST ((psa_status_t)-140)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100100
101/** The requested action cannot be performed in the current state.
102 *
103 * Multipart operations return this error when one of the
104 * functions is called out of sequence. Refer to the function
105 * descriptions for permitted sequencing of functions.
106 *
107 * Implementations shall not return this error code to indicate
108 * that a key slot is occupied when it needs to be free or vice versa,
David Saadab4ecc272019-02-14 13:48:10 +0200109 * but shall return #PSA_ERROR_ALREADY_EXISTS or #PSA_ERROR_DOES_NOT_EXIST
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100110 * as applicable. */
David Saadab4ecc272019-02-14 13:48:10 +0200111#define PSA_ERROR_BAD_STATE ((psa_status_t)-137)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100112
113/** The parameters passed to the function are invalid.
114 *
115 * Implementations may return this error any time a parameter or
116 * combination of parameters are recognized as invalid.
117 *
118 * Implementations shall not return this error code to indicate
119 * that a key slot is occupied when it needs to be free or vice versa,
David Saadab4ecc272019-02-14 13:48:10 +0200120 * but shall return #PSA_ERROR_ALREADY_EXISTS or #PSA_ERROR_DOES_NOT_EXIST
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100121 * as applicable.
122 *
123 * Implementation shall not return this error code to indicate that a
124 * key handle is invalid, but shall return #PSA_ERROR_INVALID_HANDLE
125 * instead.
126 */
David Saadab4ecc272019-02-14 13:48:10 +0200127#define PSA_ERROR_INVALID_ARGUMENT ((psa_status_t)-135)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100128
129/** There is not enough runtime memory.
130 *
131 * If the action is carried out across multiple security realms, this
132 * error can refer to available memory in any of the security realms. */
David Saadab4ecc272019-02-14 13:48:10 +0200133#define PSA_ERROR_INSUFFICIENT_MEMORY ((psa_status_t)-141)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100134
135/** There is not enough persistent storage.
136 *
137 * Functions that modify the key storage return this error code if
138 * there is insufficient storage space on the host media. In addition,
139 * many functions that do not otherwise access storage may return this
140 * error code if the implementation requires a mandatory log entry for
141 * the requested action and the log storage space is full. */
David Saadab4ecc272019-02-14 13:48:10 +0200142#define PSA_ERROR_INSUFFICIENT_STORAGE ((psa_status_t)-142)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100143
144/** There was a communication failure inside the implementation.
145 *
146 * This can indicate a communication failure between the application
147 * and an external cryptoprocessor or between the cryptoprocessor and
148 * an external volatile or persistent memory. A communication failure
149 * may be transient or permanent depending on the cause.
150 *
151 * \warning If a function returns this error, it is undetermined
152 * whether the requested action has completed or not. Implementations
153 * should return #PSA_SUCCESS on successful completion whenver
154 * possible, however functions may return #PSA_ERROR_COMMUNICATION_FAILURE
155 * if the requested action was completed successfully in an external
156 * cryptoprocessor but there was a breakdown of communication before
157 * the cryptoprocessor could report the status to the application.
158 */
David Saadab4ecc272019-02-14 13:48:10 +0200159#define PSA_ERROR_COMMUNICATION_FAILURE ((psa_status_t)-145)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100160
161/** There was a storage failure that may have led to data loss.
162 *
163 * This error indicates that some persistent storage is corrupted.
164 * It should not be used for a corruption of volatile memory
165 * (use #PSA_ERROR_TAMPERING_DETECTED), for a communication error
166 * between the cryptoprocessor and its external storage (use
167 * #PSA_ERROR_COMMUNICATION_FAILURE), or when the storage is
168 * in a valid state but is full (use #PSA_ERROR_INSUFFICIENT_STORAGE).
169 *
170 * Note that a storage failure does not indicate that any data that was
171 * previously read is invalid. However this previously read data may no
172 * longer be readable from storage.
173 *
174 * When a storage failure occurs, it is no longer possible to ensure
175 * the global integrity of the keystore. Depending on the global
176 * integrity guarantees offered by the implementation, access to other
177 * data may or may not fail even if the data is still readable but
Gilles Peskinebf7a98b2019-02-22 16:42:11 +0100178 * its integrity cannot be guaranteed.
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100179 *
180 * Implementations should only use this error code to report a
181 * permanent storage corruption. However application writers should
182 * keep in mind that transient errors while reading the storage may be
183 * reported using this error code. */
David Saadab4ecc272019-02-14 13:48:10 +0200184#define PSA_ERROR_STORAGE_FAILURE ((psa_status_t)-146)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100185
186/** A hardware failure was detected.
187 *
188 * A hardware failure may be transient or permanent depending on the
189 * cause. */
David Saadab4ecc272019-02-14 13:48:10 +0200190#define PSA_ERROR_HARDWARE_FAILURE ((psa_status_t)-147)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100191
192/** A tampering attempt was detected.
193 *
194 * If an application receives this error code, there is no guarantee
195 * that previously accessed or computed data was correct and remains
196 * confidential. Applications should not perform any security function
197 * and should enter a safe failure state.
198 *
199 * Implementations may return this error code if they detect an invalid
200 * state that cannot happen during normal operation and that indicates
201 * that the implementation's security guarantees no longer hold. Depending
202 * on the implementation architecture and on its security and safety goals,
203 * the implementation may forcibly terminate the application.
204 *
205 * This error code is intended as a last resort when a security breach
206 * is detected and it is unsure whether the keystore data is still
207 * protected. Implementations shall only return this error code
208 * to report an alarm from a tampering detector, to indicate that
209 * the confidentiality of stored data can no longer be guaranteed,
210 * or to indicate that the integrity of previously returned data is now
211 * considered compromised. Implementations shall not use this error code
212 * to indicate a hardware failure that merely makes it impossible to
213 * perform the requested operation (use #PSA_ERROR_COMMUNICATION_FAILURE,
214 * #PSA_ERROR_STORAGE_FAILURE, #PSA_ERROR_HARDWARE_FAILURE,
215 * #PSA_ERROR_INSUFFICIENT_ENTROPY or other applicable error code
216 * instead).
217 *
218 * This error indicates an attack against the application. Implementations
219 * shall not return this error code as a consequence of the behavior of
220 * the application itself. */
David Saadab4ecc272019-02-14 13:48:10 +0200221#define PSA_ERROR_TAMPERING_DETECTED ((psa_status_t)-151)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100222
223/** There is not enough entropy to generate random data needed
224 * for the requested action.
225 *
226 * This error indicates a failure of a hardware random generator.
227 * Application writers should note that this error can be returned not
228 * only by functions whose purpose is to generate random data, such
229 * as key, IV or nonce generation, but also by functions that execute
230 * an algorithm with a randomized result, as well as functions that
231 * use randomization of intermediate computations as a countermeasure
232 * to certain attacks.
233 *
234 * Implementations should avoid returning this error after psa_crypto_init()
235 * has succeeded. Implementations should generate sufficient
236 * entropy during initialization and subsequently use a cryptographically
237 * secure pseudorandom generator (PRNG). However implementations may return
238 * this error at any time if a policy requires the PRNG to be reseeded
239 * during normal operation. */
David Saadab4ecc272019-02-14 13:48:10 +0200240#define PSA_ERROR_INSUFFICIENT_ENTROPY ((psa_status_t)-148)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100241
242/** The signature, MAC or hash is incorrect.
243 *
244 * Verification functions return this error if the verification
245 * calculations completed successfully, and the value to be verified
246 * was determined to be incorrect.
247 *
248 * If the value to verify has an invalid size, implementations may return
249 * either #PSA_ERROR_INVALID_ARGUMENT or #PSA_ERROR_INVALID_SIGNATURE. */
David Saadab4ecc272019-02-14 13:48:10 +0200250#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)-149)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100251
252/** The decrypted padding is incorrect.
253 *
254 * \warning In some protocols, when decrypting data, it is essential that
255 * the behavior of the application does not depend on whether the padding
256 * is correct, down to precise timing. Applications should prefer
257 * protocols that use authenticated encryption rather than plain
258 * encryption. If the application must perform a decryption of
259 * unauthenticated data, the application writer should take care not
260 * to reveal whether the padding is invalid.
261 *
262 * Implementations should strive to make valid and invalid padding
263 * as close as possible to indistinguishable to an external observer.
264 * In particular, the timing of a decryption operation should not
265 * depend on the validity of the padding. */
David Saadab4ecc272019-02-14 13:48:10 +0200266#define PSA_ERROR_INVALID_PADDING ((psa_status_t)-150)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100267
David Saadab4ecc272019-02-14 13:48:10 +0200268/** Return this error when there's insufficient data when attempting
269 * to read from a resource. */
270#define PSA_ERROR_INSUFFICIENT_DATA ((psa_status_t)-143)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100271
272/** The key handle is not valid.
273 */
David Saadab4ecc272019-02-14 13:48:10 +0200274#define PSA_ERROR_INVALID_HANDLE ((psa_status_t)-136)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100275
276/**@}*/
277
278/** \defgroup crypto_types Key and algorithm types
279 * @{
280 */
281
282/** An invalid key type value.
283 *
284 * Zero is not the encoding of any key type.
285 */
286#define PSA_KEY_TYPE_NONE ((psa_key_type_t)0x00000000)
287
288/** Vendor-defined flag
289 *
290 * Key types defined by this standard will never have the
291 * #PSA_KEY_TYPE_VENDOR_FLAG bit set. Vendors who define additional key types
292 * must use an encoding with the #PSA_KEY_TYPE_VENDOR_FLAG bit set and should
293 * respect the bitwise structure used by standard encodings whenever practical.
294 */
295#define PSA_KEY_TYPE_VENDOR_FLAG ((psa_key_type_t)0x80000000)
296
297#define PSA_KEY_TYPE_CATEGORY_MASK ((psa_key_type_t)0x70000000)
298#define PSA_KEY_TYPE_CATEGORY_SYMMETRIC ((psa_key_type_t)0x40000000)
299#define PSA_KEY_TYPE_CATEGORY_RAW ((psa_key_type_t)0x50000000)
300#define PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY ((psa_key_type_t)0x60000000)
301#define PSA_KEY_TYPE_CATEGORY_KEY_PAIR ((psa_key_type_t)0x70000000)
302
303#define PSA_KEY_TYPE_CATEGORY_FLAG_PAIR ((psa_key_type_t)0x10000000)
304
305/** Whether a key type is vendor-defined. */
306#define PSA_KEY_TYPE_IS_VENDOR_DEFINED(type) \
307 (((type) & PSA_KEY_TYPE_VENDOR_FLAG) != 0)
308
309/** Whether a key type is an unstructured array of bytes.
310 *
311 * This encompasses both symmetric keys and non-key data.
312 */
313#define PSA_KEY_TYPE_IS_UNSTRUCTURED(type) \
314 (((type) & PSA_KEY_TYPE_CATEGORY_MASK & ~(psa_key_type_t)0x10000000) == \
315 PSA_KEY_TYPE_CATEGORY_SYMMETRIC)
316
317/** Whether a key type is asymmetric: either a key pair or a public key. */
318#define PSA_KEY_TYPE_IS_ASYMMETRIC(type) \
319 (((type) & PSA_KEY_TYPE_CATEGORY_MASK \
320 & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR) == \
321 PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY)
322/** Whether a key type is the public part of a key pair. */
323#define PSA_KEY_TYPE_IS_PUBLIC_KEY(type) \
324 (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY)
325/** Whether a key type is a key pair containing a private part and a public
326 * part. */
327#define PSA_KEY_TYPE_IS_KEYPAIR(type) \
328 (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_KEY_PAIR)
329/** The key pair type corresponding to a public key type.
330 *
331 * You may also pass a key pair type as \p type, it will be left unchanged.
332 *
333 * \param type A public key type or key pair type.
334 *
335 * \return The corresponding key pair type.
336 * If \p type is not a public key or a key pair,
337 * the return value is undefined.
338 */
339#define PSA_KEY_TYPE_KEYPAIR_OF_PUBLIC_KEY(type) \
340 ((type) | PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
341/** The public key type corresponding to a key pair type.
342 *
343 * You may also pass a key pair type as \p type, it will be left unchanged.
344 *
345 * \param type A public key type or key pair type.
346 *
347 * \return The corresponding public key type.
348 * If \p type is not a public key or a key pair,
349 * the return value is undefined.
350 */
351#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) \
352 ((type) & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
353
354/** Raw data.
355 *
356 * A "key" of this type cannot be used for any cryptographic operation.
357 * Applications may use this type to store arbitrary data in the keystore. */
358#define PSA_KEY_TYPE_RAW_DATA ((psa_key_type_t)0x50000001)
359
360/** HMAC key.
361 *
362 * The key policy determines which underlying hash algorithm the key can be
363 * used for.
364 *
365 * HMAC keys should generally have the same size as the underlying hash.
366 * This size can be calculated with #PSA_HASH_SIZE(\c alg) where
367 * \c alg is the HMAC algorithm or the underlying hash algorithm. */
368#define PSA_KEY_TYPE_HMAC ((psa_key_type_t)0x51000000)
369
370/** A secret for key derivation.
371 *
372 * The key policy determines which key derivation algorithm the key
373 * can be used for.
374 */
375#define PSA_KEY_TYPE_DERIVE ((psa_key_type_t)0x52000000)
376
377/** Key for an cipher, AEAD or MAC algorithm based on the AES block cipher.
378 *
379 * The size of the key can be 16 bytes (AES-128), 24 bytes (AES-192) or
380 * 32 bytes (AES-256).
381 */
382#define PSA_KEY_TYPE_AES ((psa_key_type_t)0x40000001)
383
384/** Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES).
385 *
386 * The size of the key can be 8 bytes (single DES), 16 bytes (2-key 3DES) or
387 * 24 bytes (3-key 3DES).
388 *
389 * Note that single DES and 2-key 3DES are weak and strongly
390 * deprecated and should only be used to decrypt legacy data. 3-key 3DES
391 * is weak and deprecated and should only be used in legacy protocols.
392 */
393#define PSA_KEY_TYPE_DES ((psa_key_type_t)0x40000002)
394
395/** Key for an cipher, AEAD or MAC algorithm based on the
396 * Camellia block cipher. */
397#define PSA_KEY_TYPE_CAMELLIA ((psa_key_type_t)0x40000003)
398
399/** Key for the RC4 stream cipher.
400 *
401 * Note that RC4 is weak and deprecated and should only be used in
402 * legacy protocols. */
403#define PSA_KEY_TYPE_ARC4 ((psa_key_type_t)0x40000004)
404
Gilles Peskine3e79c8e2019-05-06 15:20:04 +0200405/** Key for the ChaCha20 stream cipher or the Chacha20-Poly1305 AEAD algorithm.
406 *
407 * ChaCha20 and the ChaCha20_Poly1305 construction are defined in RFC 7539.
408 *
409 * Implementations must support 12-byte nonces, may support 8-byte nonces,
410 * and should reject other sizes.
411 */
412#define PSA_KEY_TYPE_CHACHA20 ((psa_key_type_t)0x40000005)
413
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100414/** RSA public key. */
415#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x60010000)
416/** RSA key pair (private and public key). */
417#define PSA_KEY_TYPE_RSA_KEYPAIR ((psa_key_type_t)0x70010000)
418/** Whether a key type is an RSA key (pair or public-only). */
419#define PSA_KEY_TYPE_IS_RSA(type) \
420 (PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY)
421
422/** DSA public key. */
423#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x60020000)
424/** DSA key pair (private and public key). */
425#define PSA_KEY_TYPE_DSA_KEYPAIR ((psa_key_type_t)0x70020000)
426/** Whether a key type is an DSA key (pair or public-only). */
427#define PSA_KEY_TYPE_IS_DSA(type) \
428 (PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY)
429
430#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x60030000)
431#define PSA_KEY_TYPE_ECC_KEYPAIR_BASE ((psa_key_type_t)0x70030000)
432#define PSA_KEY_TYPE_ECC_CURVE_MASK ((psa_key_type_t)0x0000ffff)
433/** Elliptic curve key pair. */
434#define PSA_KEY_TYPE_ECC_KEYPAIR(curve) \
435 (PSA_KEY_TYPE_ECC_KEYPAIR_BASE | (curve))
436/** Elliptic curve public key. */
437#define PSA_KEY_TYPE_ECC_PUBLIC_KEY(curve) \
438 (PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE | (curve))
439
440/** Whether a key type is an elliptic curve key (pair or public-only). */
441#define PSA_KEY_TYPE_IS_ECC(type) \
442 ((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) & \
443 ~PSA_KEY_TYPE_ECC_CURVE_MASK) == PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE)
Gilles Peskine5e9c9cc2018-12-12 14:02:48 +0100444/** Whether a key type is an elliptic curve key pair. */
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100445#define PSA_KEY_TYPE_IS_ECC_KEYPAIR(type) \
446 (((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \
447 PSA_KEY_TYPE_ECC_KEYPAIR_BASE)
Gilles Peskine5e9c9cc2018-12-12 14:02:48 +0100448/** Whether a key type is an elliptic curve public key. */
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100449#define PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY(type) \
450 (((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \
451 PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE)
452
453/** Extract the curve from an elliptic curve key type. */
454#define PSA_KEY_TYPE_GET_CURVE(type) \
455 ((psa_ecc_curve_t) (PSA_KEY_TYPE_IS_ECC(type) ? \
456 ((type) & PSA_KEY_TYPE_ECC_CURVE_MASK) : \
457 0))
458
459/* The encoding of curve identifiers is currently aligned with the
460 * TLS Supported Groups Registry (formerly known as the
461 * TLS EC Named Curve Registry)
462 * https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8
463 * The values are defined by RFC 8422 and RFC 7027. */
464#define PSA_ECC_CURVE_SECT163K1 ((psa_ecc_curve_t) 0x0001)
465#define PSA_ECC_CURVE_SECT163R1 ((psa_ecc_curve_t) 0x0002)
466#define PSA_ECC_CURVE_SECT163R2 ((psa_ecc_curve_t) 0x0003)
467#define PSA_ECC_CURVE_SECT193R1 ((psa_ecc_curve_t) 0x0004)
468#define PSA_ECC_CURVE_SECT193R2 ((psa_ecc_curve_t) 0x0005)
469#define PSA_ECC_CURVE_SECT233K1 ((psa_ecc_curve_t) 0x0006)
470#define PSA_ECC_CURVE_SECT233R1 ((psa_ecc_curve_t) 0x0007)
471#define PSA_ECC_CURVE_SECT239K1 ((psa_ecc_curve_t) 0x0008)
472#define PSA_ECC_CURVE_SECT283K1 ((psa_ecc_curve_t) 0x0009)
473#define PSA_ECC_CURVE_SECT283R1 ((psa_ecc_curve_t) 0x000a)
474#define PSA_ECC_CURVE_SECT409K1 ((psa_ecc_curve_t) 0x000b)
475#define PSA_ECC_CURVE_SECT409R1 ((psa_ecc_curve_t) 0x000c)
476#define PSA_ECC_CURVE_SECT571K1 ((psa_ecc_curve_t) 0x000d)
477#define PSA_ECC_CURVE_SECT571R1 ((psa_ecc_curve_t) 0x000e)
478#define PSA_ECC_CURVE_SECP160K1 ((psa_ecc_curve_t) 0x000f)
479#define PSA_ECC_CURVE_SECP160R1 ((psa_ecc_curve_t) 0x0010)
480#define PSA_ECC_CURVE_SECP160R2 ((psa_ecc_curve_t) 0x0011)
481#define PSA_ECC_CURVE_SECP192K1 ((psa_ecc_curve_t) 0x0012)
482#define PSA_ECC_CURVE_SECP192R1 ((psa_ecc_curve_t) 0x0013)
483#define PSA_ECC_CURVE_SECP224K1 ((psa_ecc_curve_t) 0x0014)
484#define PSA_ECC_CURVE_SECP224R1 ((psa_ecc_curve_t) 0x0015)
485#define PSA_ECC_CURVE_SECP256K1 ((psa_ecc_curve_t) 0x0016)
486#define PSA_ECC_CURVE_SECP256R1 ((psa_ecc_curve_t) 0x0017)
487#define PSA_ECC_CURVE_SECP384R1 ((psa_ecc_curve_t) 0x0018)
488#define PSA_ECC_CURVE_SECP521R1 ((psa_ecc_curve_t) 0x0019)
489#define PSA_ECC_CURVE_BRAINPOOL_P256R1 ((psa_ecc_curve_t) 0x001a)
490#define PSA_ECC_CURVE_BRAINPOOL_P384R1 ((psa_ecc_curve_t) 0x001b)
491#define PSA_ECC_CURVE_BRAINPOOL_P512R1 ((psa_ecc_curve_t) 0x001c)
492#define PSA_ECC_CURVE_CURVE25519 ((psa_ecc_curve_t) 0x001d)
493#define PSA_ECC_CURVE_CURVE448 ((psa_ecc_curve_t) 0x001e)
494
Gilles Peskinedcaefae2019-05-16 12:55:35 +0200495#define PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE ((psa_key_type_t)0x60040000)
496#define PSA_KEY_TYPE_DH_KEYPAIR_BASE ((psa_key_type_t)0x70040000)
497#define PSA_KEY_TYPE_DH_GROUP_MASK ((psa_key_type_t)0x0000ffff)
498/** Diffie-Hellman key pair. */
499#define PSA_KEY_TYPE_DH_KEYPAIR(group) \
500 (PSA_KEY_TYPE_DH_KEYPAIR_BASE | (group))
501/** Diffie-Hellman public key. */
502#define PSA_KEY_TYPE_DH_PUBLIC_KEY(group) \
503 (PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE | (group))
504
505/** Whether a key type is a Diffie-Hellman key (pair or public-only). */
506#define PSA_KEY_TYPE_IS_DH(type) \
507 ((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) & \
508 ~PSA_KEY_TYPE_DH_GROUP_MASK) == PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE)
509/** Whether a key type is a Diffie-Hellman key pair. */
510#define PSA_KEY_TYPE_IS_DH_KEYPAIR(type) \
511 (((type) & ~PSA_KEY_TYPE_DH_GROUP_MASK) == \
512 PSA_KEY_TYPE_DH_KEYPAIR_BASE)
513/** Whether a key type is a Diffie-Hellman public key. */
514#define PSA_KEY_TYPE_IS_DH_PUBLIC_KEY(type) \
515 (((type) & ~PSA_KEY_TYPE_DH_GROUP_MASK) == \
516 PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE)
517
518/** Extract the group from a Diffie-Hellman key type. */
519#define PSA_KEY_TYPE_GET_GROUP(type) \
520 ((psa_dh_group_t) (PSA_KEY_TYPE_IS_DH(type) ? \
521 ((type) & PSA_KEY_TYPE_DH_GROUP_MASK) : \
522 0))
523
524/* The encoding of group identifiers is currently aligned with the
525 * TLS Supported Groups Registry (formerly known as the
526 * TLS EC Named Curve Registry)
527 * https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8
528 * The values are defined by RFC 7919. */
529#define PSA_DH_GROUP_FFDHE2048 ((psa_dh_group_t) 0x0100)
530#define PSA_DH_GROUP_FFDHE3072 ((psa_dh_group_t) 0x0101)
531#define PSA_DH_GROUP_FFDHE4096 ((psa_dh_group_t) 0x0102)
532#define PSA_DH_GROUP_FFDHE6144 ((psa_dh_group_t) 0x0103)
533#define PSA_DH_GROUP_FFDHE8192 ((psa_dh_group_t) 0x0104)
Jaeden Amero8851c402019-01-11 14:20:03 +0000534
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100535/** The block size of a block cipher.
536 *
537 * \param type A cipher key type (value of type #psa_key_type_t).
538 *
539 * \return The block size for a block cipher, or 1 for a stream cipher.
540 * The return value is undefined if \p type is not a supported
541 * cipher key type.
542 *
543 * \note It is possible to build stream cipher algorithms on top of a block
544 * cipher, for example CTR mode (#PSA_ALG_CTR).
545 * This macro only takes the key type into account, so it cannot be
546 * used to determine the size of the data that #psa_cipher_update()
547 * might buffer for future processing in general.
548 *
549 * \note This macro returns a compile-time constant if its argument is one.
550 *
551 * \warning This macro may evaluate its argument multiple times.
552 */
553#define PSA_BLOCK_CIPHER_BLOCK_SIZE(type) \
554 ( \
555 (type) == PSA_KEY_TYPE_AES ? 16 : \
556 (type) == PSA_KEY_TYPE_DES ? 8 : \
557 (type) == PSA_KEY_TYPE_CAMELLIA ? 16 : \
558 (type) == PSA_KEY_TYPE_ARC4 ? 1 : \
559 0)
560
561#define PSA_ALG_VENDOR_FLAG ((psa_algorithm_t)0x80000000)
562#define PSA_ALG_CATEGORY_MASK ((psa_algorithm_t)0x7f000000)
563#define PSA_ALG_CATEGORY_HASH ((psa_algorithm_t)0x01000000)
564#define PSA_ALG_CATEGORY_MAC ((psa_algorithm_t)0x02000000)
565#define PSA_ALG_CATEGORY_CIPHER ((psa_algorithm_t)0x04000000)
566#define PSA_ALG_CATEGORY_AEAD ((psa_algorithm_t)0x06000000)
567#define PSA_ALG_CATEGORY_SIGN ((psa_algorithm_t)0x10000000)
568#define PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION ((psa_algorithm_t)0x12000000)
Gilles Peskine6843c292019-01-18 16:44:49 +0100569#define PSA_ALG_CATEGORY_KEY_DERIVATION ((psa_algorithm_t)0x20000000)
570#define PSA_ALG_CATEGORY_KEY_AGREEMENT ((psa_algorithm_t)0x30000000)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100571
572#define PSA_ALG_IS_VENDOR_DEFINED(alg) \
573 (((alg) & PSA_ALG_VENDOR_FLAG) != 0)
574
575/** Whether the specified algorithm is a hash algorithm.
576 *
577 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
578 *
579 * \return 1 if \p alg is a hash algorithm, 0 otherwise.
580 * This macro may return either 0 or 1 if \p alg is not a supported
581 * algorithm identifier.
582 */
583#define PSA_ALG_IS_HASH(alg) \
584 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_HASH)
585
586/** Whether the specified algorithm is a MAC algorithm.
587 *
588 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
589 *
590 * \return 1 if \p alg is a MAC algorithm, 0 otherwise.
591 * This macro may return either 0 or 1 if \p alg is not a supported
592 * algorithm identifier.
593 */
594#define PSA_ALG_IS_MAC(alg) \
595 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_MAC)
596
597/** Whether the specified algorithm is a symmetric cipher algorithm.
598 *
599 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
600 *
601 * \return 1 if \p alg is a symmetric cipher algorithm, 0 otherwise.
602 * This macro may return either 0 or 1 if \p alg is not a supported
603 * algorithm identifier.
604 */
605#define PSA_ALG_IS_CIPHER(alg) \
606 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_CIPHER)
607
608/** Whether the specified algorithm is an authenticated encryption
609 * with associated data (AEAD) algorithm.
610 *
611 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
612 *
613 * \return 1 if \p alg is an AEAD algorithm, 0 otherwise.
614 * This macro may return either 0 or 1 if \p alg is not a supported
615 * algorithm identifier.
616 */
617#define PSA_ALG_IS_AEAD(alg) \
618 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_AEAD)
619
620/** Whether the specified algorithm is a public-key signature algorithm.
621 *
622 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
623 *
624 * \return 1 if \p alg is a public-key signature algorithm, 0 otherwise.
625 * This macro may return either 0 or 1 if \p alg is not a supported
626 * algorithm identifier.
627 */
628#define PSA_ALG_IS_SIGN(alg) \
629 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_SIGN)
630
631/** Whether the specified algorithm is a public-key encryption algorithm.
632 *
633 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
634 *
635 * \return 1 if \p alg is a public-key encryption algorithm, 0 otherwise.
636 * This macro may return either 0 or 1 if \p alg is not a supported
637 * algorithm identifier.
638 */
639#define PSA_ALG_IS_ASYMMETRIC_ENCRYPTION(alg) \
640 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION)
641
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100642/** Whether the specified algorithm is a key agreement algorithm.
643 *
644 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
645 *
646 * \return 1 if \p alg is a key agreement algorithm, 0 otherwise.
647 * This macro may return either 0 or 1 if \p alg is not a supported
648 * algorithm identifier.
649 */
650#define PSA_ALG_IS_KEY_AGREEMENT(alg) \
Gilles Peskine47e79fb2019-02-08 11:24:59 +0100651 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_AGREEMENT)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100652
653/** Whether the specified algorithm is a key derivation algorithm.
654 *
655 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
656 *
657 * \return 1 if \p alg is a key derivation algorithm, 0 otherwise.
658 * This macro may return either 0 or 1 if \p alg is not a supported
659 * algorithm identifier.
660 */
661#define PSA_ALG_IS_KEY_DERIVATION(alg) \
662 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_DERIVATION)
663
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100664#define PSA_ALG_HASH_MASK ((psa_algorithm_t)0x000000ff)
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100665
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100666#define PSA_ALG_MD2 ((psa_algorithm_t)0x01000001)
667#define PSA_ALG_MD4 ((psa_algorithm_t)0x01000002)
668#define PSA_ALG_MD5 ((psa_algorithm_t)0x01000003)
669#define PSA_ALG_RIPEMD160 ((psa_algorithm_t)0x01000004)
670#define PSA_ALG_SHA_1 ((psa_algorithm_t)0x01000005)
671/** SHA2-224 */
672#define PSA_ALG_SHA_224 ((psa_algorithm_t)0x01000008)
673/** SHA2-256 */
674#define PSA_ALG_SHA_256 ((psa_algorithm_t)0x01000009)
675/** SHA2-384 */
676#define PSA_ALG_SHA_384 ((psa_algorithm_t)0x0100000a)
677/** SHA2-512 */
678#define PSA_ALG_SHA_512 ((psa_algorithm_t)0x0100000b)
679/** SHA2-512/224 */
680#define PSA_ALG_SHA_512_224 ((psa_algorithm_t)0x0100000c)
681/** SHA2-512/256 */
682#define PSA_ALG_SHA_512_256 ((psa_algorithm_t)0x0100000d)
683/** SHA3-224 */
684#define PSA_ALG_SHA3_224 ((psa_algorithm_t)0x01000010)
685/** SHA3-256 */
686#define PSA_ALG_SHA3_256 ((psa_algorithm_t)0x01000011)
687/** SHA3-384 */
688#define PSA_ALG_SHA3_384 ((psa_algorithm_t)0x01000012)
689/** SHA3-512 */
690#define PSA_ALG_SHA3_512 ((psa_algorithm_t)0x01000013)
691
Gilles Peskine763fb9a2019-01-28 13:29:01 +0100692/** In a hash-and-sign algorithm policy, allow any hash algorithm.
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100693 *
Gilles Peskine763fb9a2019-01-28 13:29:01 +0100694 * This value may be used to form the algorithm usage field of a policy
695 * for a signature algorithm that is parametrized by a hash. The key
696 * may then be used to perform operations using the same signature
697 * algorithm parametrized with any supported hash.
698 *
699 * That is, suppose that `PSA_xxx_SIGNATURE` is one of the following macros:
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100700 * - #PSA_ALG_RSA_PKCS1V15_SIGN, #PSA_ALG_RSA_PSS,
701 * - #PSA_ALG_DSA, #PSA_ALG_DETERMINISTIC_DSA,
702 * - #PSA_ALG_ECDSA, #PSA_ALG_DETERMINISTIC_ECDSA.
Gilles Peskine763fb9a2019-01-28 13:29:01 +0100703 * Then you may create and use a key as follows:
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100704 * - Set the key usage field using #PSA_ALG_ANY_HASH, for example:
705 * ```
Gilles Peskine80b39ae2019-05-15 16:09:46 +0200706 * psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_SIGN); // or VERIFY
707 * psa_set_key_algorithm(&attributes, PSA_xxx_SIGNATURE(PSA_ALG_ANY_HASH));
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100708 * ```
709 * - Import or generate key material.
710 * - Call psa_asymmetric_sign() or psa_asymmetric_verify(), passing
711 * an algorithm built from `PSA_xxx_SIGNATURE` and a specific hash. Each
712 * call to sign or verify a message may use a different hash.
713 * ```
714 * psa_asymmetric_sign(handle, PSA_xxx_SIGNATURE(PSA_ALG_SHA_256), ...);
715 * psa_asymmetric_sign(handle, PSA_xxx_SIGNATURE(PSA_ALG_SHA_512), ...);
716 * psa_asymmetric_sign(handle, PSA_xxx_SIGNATURE(PSA_ALG_SHA3_256), ...);
717 * ```
718 *
719 * This value may not be used to build other algorithms that are
720 * parametrized over a hash. For any valid use of this macro to build
Gilles Peskine3be6b7f2019-03-05 19:32:26 +0100721 * an algorithm \c alg, #PSA_ALG_IS_HASH_AND_SIGN(\c alg) is true.
Gilles Peskine30f77cd2019-01-14 16:06:39 +0100722 *
723 * This value may not be used to build an algorithm specification to
724 * perform an operation. It is only valid to build policies.
725 */
726#define PSA_ALG_ANY_HASH ((psa_algorithm_t)0x010000ff)
727
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100728#define PSA_ALG_MAC_SUBCATEGORY_MASK ((psa_algorithm_t)0x00c00000)
729#define PSA_ALG_HMAC_BASE ((psa_algorithm_t)0x02800000)
730/** Macro to build an HMAC algorithm.
731 *
732 * For example, #PSA_ALG_HMAC(#PSA_ALG_SHA_256) is HMAC-SHA-256.
733 *
734 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
735 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
736 *
737 * \return The corresponding HMAC algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +0100738 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100739 * hash algorithm.
740 */
741#define PSA_ALG_HMAC(hash_alg) \
742 (PSA_ALG_HMAC_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
743
744#define PSA_ALG_HMAC_GET_HASH(hmac_alg) \
745 (PSA_ALG_CATEGORY_HASH | ((hmac_alg) & PSA_ALG_HASH_MASK))
746
747/** Whether the specified algorithm is an HMAC algorithm.
748 *
749 * HMAC is a family of MAC algorithms that are based on a hash function.
750 *
751 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
752 *
753 * \return 1 if \p alg is an HMAC algorithm, 0 otherwise.
754 * This macro may return either 0 or 1 if \p alg is not a supported
755 * algorithm identifier.
756 */
757#define PSA_ALG_IS_HMAC(alg) \
758 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
759 PSA_ALG_HMAC_BASE)
760
761/* In the encoding of a MAC algorithm, the bits corresponding to
762 * PSA_ALG_MAC_TRUNCATION_MASK encode the length to which the MAC is
763 * truncated. As an exception, the value 0 means the untruncated algorithm,
764 * whatever its length is. The length is encoded in 6 bits, so it can
765 * reach up to 63; the largest MAC is 64 bytes so its trivial truncation
766 * to full length is correctly encoded as 0 and any non-trivial truncation
767 * is correctly encoded as a value between 1 and 63. */
768#define PSA_ALG_MAC_TRUNCATION_MASK ((psa_algorithm_t)0x00003f00)
769#define PSA_MAC_TRUNCATION_OFFSET 8
770
771/** Macro to build a truncated MAC algorithm.
772 *
773 * A truncated MAC algorithm is identical to the corresponding MAC
774 * algorithm except that the MAC value for the truncated algorithm
775 * consists of only the first \p mac_length bytes of the MAC value
776 * for the untruncated algorithm.
777 *
778 * \note This macro may allow constructing algorithm identifiers that
779 * are not valid, either because the specified length is larger
780 * than the untruncated MAC or because the specified length is
781 * smaller than permitted by the implementation.
782 *
783 * \note It is implementation-defined whether a truncated MAC that
784 * is truncated to the same length as the MAC of the untruncated
785 * algorithm is considered identical to the untruncated algorithm
786 * for policy comparison purposes.
787 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200788 * \param mac_alg A MAC algorithm identifier (value of type
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100789 * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
790 * is true). This may be a truncated or untruncated
791 * MAC algorithm.
792 * \param mac_length Desired length of the truncated MAC in bytes.
793 * This must be at most the full length of the MAC
794 * and must be at least an implementation-specified
795 * minimum. The implementation-specified minimum
796 * shall not be zero.
797 *
798 * \return The corresponding MAC algorithm with the specified
799 * length.
800 * \return Unspecified if \p alg is not a supported
801 * MAC algorithm or if \p mac_length is too small or
802 * too large for the specified MAC algorithm.
803 */
Gilles Peskine434899f2018-10-19 11:30:26 +0200804#define PSA_ALG_TRUNCATED_MAC(mac_alg, mac_length) \
805 (((mac_alg) & ~PSA_ALG_MAC_TRUNCATION_MASK) | \
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100806 ((mac_length) << PSA_MAC_TRUNCATION_OFFSET & PSA_ALG_MAC_TRUNCATION_MASK))
807
808/** Macro to build the base MAC algorithm corresponding to a truncated
809 * MAC algorithm.
810 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200811 * \param mac_alg A MAC algorithm identifier (value of type
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100812 * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
813 * is true). This may be a truncated or untruncated
814 * MAC algorithm.
815 *
816 * \return The corresponding base MAC algorithm.
817 * \return Unspecified if \p alg is not a supported
818 * MAC algorithm.
819 */
Gilles Peskine434899f2018-10-19 11:30:26 +0200820#define PSA_ALG_FULL_LENGTH_MAC(mac_alg) \
821 ((mac_alg) & ~PSA_ALG_MAC_TRUNCATION_MASK)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100822
823/** Length to which a MAC algorithm is truncated.
824 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200825 * \param mac_alg A MAC algorithm identifier (value of type
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100826 * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
827 * is true).
828 *
829 * \return Length of the truncated MAC in bytes.
830 * \return 0 if \p alg is a non-truncated MAC algorithm.
831 * \return Unspecified if \p alg is not a supported
832 * MAC algorithm.
833 */
Gilles Peskine434899f2018-10-19 11:30:26 +0200834#define PSA_MAC_TRUNCATED_LENGTH(mac_alg) \
835 (((mac_alg) & PSA_ALG_MAC_TRUNCATION_MASK) >> PSA_MAC_TRUNCATION_OFFSET)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100836
837#define PSA_ALG_CIPHER_MAC_BASE ((psa_algorithm_t)0x02c00000)
838#define PSA_ALG_CBC_MAC ((psa_algorithm_t)0x02c00001)
839#define PSA_ALG_CMAC ((psa_algorithm_t)0x02c00002)
840#define PSA_ALG_GMAC ((psa_algorithm_t)0x02c00003)
841
842/** Whether the specified algorithm is a MAC algorithm based on a block cipher.
843 *
844 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
845 *
846 * \return 1 if \p alg is a MAC algorithm based on a block cipher, 0 otherwise.
847 * This macro may return either 0 or 1 if \p alg is not a supported
848 * algorithm identifier.
849 */
850#define PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) \
851 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
852 PSA_ALG_CIPHER_MAC_BASE)
853
854#define PSA_ALG_CIPHER_STREAM_FLAG ((psa_algorithm_t)0x00800000)
855#define PSA_ALG_CIPHER_FROM_BLOCK_FLAG ((psa_algorithm_t)0x00400000)
856
857/** Whether the specified algorithm is a stream cipher.
858 *
859 * A stream cipher is a symmetric cipher that encrypts or decrypts messages
860 * by applying a bitwise-xor with a stream of bytes that is generated
861 * from a key.
862 *
863 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
864 *
865 * \return 1 if \p alg is a stream cipher algorithm, 0 otherwise.
866 * This macro may return either 0 or 1 if \p alg is not a supported
867 * algorithm identifier or if it is not a symmetric cipher algorithm.
868 */
869#define PSA_ALG_IS_STREAM_CIPHER(alg) \
870 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_CIPHER_STREAM_FLAG)) == \
871 (PSA_ALG_CATEGORY_CIPHER | PSA_ALG_CIPHER_STREAM_FLAG))
872
873/** The ARC4 stream cipher algorithm.
874 */
875#define PSA_ALG_ARC4 ((psa_algorithm_t)0x04800001)
876
Gilles Peskine3e79c8e2019-05-06 15:20:04 +0200877/** The ChaCha20 stream cipher.
878 *
879 * ChaCha20 is defined in RFC 7539.
880 *
881 * The nonce size for psa_cipher_set_iv() or psa_cipher_generate_iv()
882 * must be 12.
883 *
884 * The initial block counter is always 0.
885 *
886 */
887#define PSA_ALG_CHACHA20 ((psa_algorithm_t)0x04800005)
888
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100889/** The CTR stream cipher mode.
890 *
891 * CTR is a stream cipher which is built from a block cipher.
892 * The underlying block cipher is determined by the key type.
893 * For example, to use AES-128-CTR, use this algorithm with
894 * a key of type #PSA_KEY_TYPE_AES and a length of 128 bits (16 bytes).
895 */
896#define PSA_ALG_CTR ((psa_algorithm_t)0x04c00001)
897
898#define PSA_ALG_CFB ((psa_algorithm_t)0x04c00002)
899
900#define PSA_ALG_OFB ((psa_algorithm_t)0x04c00003)
901
902/** The XTS cipher mode.
903 *
904 * XTS is a cipher mode which is built from a block cipher. It requires at
905 * least one full block of input, but beyond this minimum the input
906 * does not need to be a whole number of blocks.
907 */
908#define PSA_ALG_XTS ((psa_algorithm_t)0x044000ff)
909
910/** The CBC block cipher chaining mode, with no padding.
911 *
912 * The underlying block cipher is determined by the key type.
913 *
914 * This symmetric cipher mode can only be used with messages whose lengths
915 * are whole number of blocks for the chosen block cipher.
916 */
917#define PSA_ALG_CBC_NO_PADDING ((psa_algorithm_t)0x04600100)
918
919/** The CBC block cipher chaining mode with PKCS#7 padding.
920 *
921 * The underlying block cipher is determined by the key type.
922 *
923 * This is the padding method defined by PKCS#7 (RFC 2315) &sect;10.3.
924 */
925#define PSA_ALG_CBC_PKCS7 ((psa_algorithm_t)0x04600101)
926
Gilles Peskine679693e2019-05-06 15:10:16 +0200927#define PSA_ALG_AEAD_FROM_BLOCK_FLAG ((psa_algorithm_t)0x00400000)
928
929/** Whether the specified algorithm is an AEAD mode on a block cipher.
930 *
931 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
932 *
933 * \return 1 if \p alg is an AEAD algorithm which is an AEAD mode based on
934 * a block cipher, 0 otherwise.
935 * This macro may return either 0 or 1 if \p alg is not a supported
936 * algorithm identifier.
937 */
938#define PSA_ALG_IS_AEAD_ON_BLOCK_CIPHER(alg) \
939 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_AEAD_FROM_BLOCK_FLAG)) == \
940 (PSA_ALG_CATEGORY_AEAD | PSA_ALG_AEAD_FROM_BLOCK_FLAG))
941
Gilles Peskine9153ec02019-02-15 13:02:02 +0100942/** The CCM authenticated encryption algorithm.
943 */
Gilles Peskine679693e2019-05-06 15:10:16 +0200944#define PSA_ALG_CCM ((psa_algorithm_t)0x06401001)
Gilles Peskine9153ec02019-02-15 13:02:02 +0100945
946/** The GCM authenticated encryption algorithm.
947 */
Gilles Peskine679693e2019-05-06 15:10:16 +0200948#define PSA_ALG_GCM ((psa_algorithm_t)0x06401002)
949
950/** The Chacha20-Poly1305 AEAD algorithm.
951 *
952 * The ChaCha20_Poly1305 construction is defined in RFC 7539.
Gilles Peskine3e79c8e2019-05-06 15:20:04 +0200953 *
954 * Implementations must support 12-byte nonces, may support 8-byte nonces,
955 * and should reject other sizes.
956 *
957 * Implementations must support 16-byte tags and should reject other sizes.
Gilles Peskine679693e2019-05-06 15:10:16 +0200958 */
959#define PSA_ALG_CHACHA20_POLY1305 ((psa_algorithm_t)0x06001005)
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100960
961/* In the encoding of a AEAD algorithm, the bits corresponding to
962 * PSA_ALG_AEAD_TAG_LENGTH_MASK encode the length of the AEAD tag.
963 * The constants for default lengths follow this encoding.
964 */
965#define PSA_ALG_AEAD_TAG_LENGTH_MASK ((psa_algorithm_t)0x00003f00)
966#define PSA_AEAD_TAG_LENGTH_OFFSET 8
967
968/** Macro to build a shortened AEAD algorithm.
969 *
970 * A shortened AEAD algorithm is similar to the corresponding AEAD
971 * algorithm, but has an authentication tag that consists of fewer bytes.
972 * Depending on the algorithm, the tag length may affect the calculation
973 * of the ciphertext.
974 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200975 * \param aead_alg An AEAD algorithm identifier (value of type
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100976 * #psa_algorithm_t such that #PSA_ALG_IS_AEAD(\p alg)
977 * is true).
978 * \param tag_length Desired length of the authentication tag in bytes.
979 *
980 * \return The corresponding AEAD algorithm with the specified
981 * length.
982 * \return Unspecified if \p alg is not a supported
983 * AEAD algorithm or if \p tag_length is not valid
984 * for the specified AEAD algorithm.
985 */
Gilles Peskine434899f2018-10-19 11:30:26 +0200986#define PSA_ALG_AEAD_WITH_TAG_LENGTH(aead_alg, tag_length) \
987 (((aead_alg) & ~PSA_ALG_AEAD_TAG_LENGTH_MASK) | \
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100988 ((tag_length) << PSA_AEAD_TAG_LENGTH_OFFSET & \
989 PSA_ALG_AEAD_TAG_LENGTH_MASK))
990
991/** Calculate the corresponding AEAD algorithm with the default tag length.
992 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200993 * \param aead_alg An AEAD algorithm (\c PSA_ALG_XXX value such that
994 * #PSA_ALG_IS_AEAD(\p alg) is true).
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100995 *
Gilles Peskine434899f2018-10-19 11:30:26 +0200996 * \return The corresponding AEAD algorithm with the default
997 * tag length for that algorithm.
Gilles Peskinef3b731e2018-12-12 13:38:31 +0100998 */
Gilles Peskine434899f2018-10-19 11:30:26 +0200999#define PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(aead_alg) \
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001000 ( \
Gilles Peskine434899f2018-10-19 11:30:26 +02001001 PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(aead_alg, PSA_ALG_CCM) \
1002 PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(aead_alg, PSA_ALG_GCM) \
Gilles Peskine3e79c8e2019-05-06 15:20:04 +02001003 PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(aead_alg, PSA_ALG_CHACHA20_POLY1305) \
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001004 0)
Gilles Peskine434899f2018-10-19 11:30:26 +02001005#define PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(aead_alg, ref) \
1006 PSA_ALG_AEAD_WITH_TAG_LENGTH(aead_alg, 0) == \
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001007 PSA_ALG_AEAD_WITH_TAG_LENGTH(ref, 0) ? \
1008 ref :
1009
1010#define PSA_ALG_RSA_PKCS1V15_SIGN_BASE ((psa_algorithm_t)0x10020000)
1011/** RSA PKCS#1 v1.5 signature with hashing.
1012 *
1013 * This is the signature scheme defined by RFC 8017
1014 * (PKCS#1: RSA Cryptography Specifications) under the name
1015 * RSASSA-PKCS1-v1_5.
1016 *
1017 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1018 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001019 * This includes #PSA_ALG_ANY_HASH
1020 * when specifying the algorithm in a usage policy.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001021 *
1022 * \return The corresponding RSA PKCS#1 v1.5 signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001023 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001024 * hash algorithm.
1025 */
1026#define PSA_ALG_RSA_PKCS1V15_SIGN(hash_alg) \
1027 (PSA_ALG_RSA_PKCS1V15_SIGN_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1028/** Raw PKCS#1 v1.5 signature.
1029 *
1030 * The input to this algorithm is the DigestInfo structure used by
1031 * RFC 8017 (PKCS#1: RSA Cryptography Specifications), &sect;9.2
1032 * steps 3&ndash;6.
1033 */
1034#define PSA_ALG_RSA_PKCS1V15_SIGN_RAW PSA_ALG_RSA_PKCS1V15_SIGN_BASE
1035#define PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) \
1036 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PKCS1V15_SIGN_BASE)
1037
1038#define PSA_ALG_RSA_PSS_BASE ((psa_algorithm_t)0x10030000)
1039/** RSA PSS signature with hashing.
1040 *
1041 * This is the signature scheme defined by RFC 8017
1042 * (PKCS#1: RSA Cryptography Specifications) under the name
1043 * RSASSA-PSS, with the message generation function MGF1, and with
1044 * a salt length equal to the length of the hash. The specified
1045 * hash algorithm is used to hash the input message, to create the
1046 * salted hash, and for the mask generation.
1047 *
1048 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1049 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001050 * This includes #PSA_ALG_ANY_HASH
1051 * when specifying the algorithm in a usage policy.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001052 *
1053 * \return The corresponding RSA PSS signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001054 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001055 * hash algorithm.
1056 */
1057#define PSA_ALG_RSA_PSS(hash_alg) \
1058 (PSA_ALG_RSA_PSS_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1059#define PSA_ALG_IS_RSA_PSS(alg) \
1060 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PSS_BASE)
1061
1062#define PSA_ALG_DSA_BASE ((psa_algorithm_t)0x10040000)
1063/** DSA signature with hashing.
1064 *
1065 * This is the signature scheme defined by FIPS 186-4,
1066 * with a random per-message secret number (*k*).
1067 *
1068 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1069 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001070 * This includes #PSA_ALG_ANY_HASH
1071 * when specifying the algorithm in a usage policy.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001072 *
1073 * \return The corresponding DSA signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001074 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001075 * hash algorithm.
1076 */
1077#define PSA_ALG_DSA(hash_alg) \
1078 (PSA_ALG_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1079#define PSA_ALG_DETERMINISTIC_DSA_BASE ((psa_algorithm_t)0x10050000)
1080#define PSA_ALG_DSA_DETERMINISTIC_FLAG ((psa_algorithm_t)0x00010000)
Gilles Peskine9153ec02019-02-15 13:02:02 +01001081/** Deterministic DSA signature with hashing.
1082 *
1083 * This is the deterministic variant defined by RFC 6979 of
1084 * the signature scheme defined by FIPS 186-4.
1085 *
1086 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1087 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
1088 * This includes #PSA_ALG_ANY_HASH
1089 * when specifying the algorithm in a usage policy.
1090 *
1091 * \return The corresponding DSA signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001092 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskine9153ec02019-02-15 13:02:02 +01001093 * hash algorithm.
1094 */
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001095#define PSA_ALG_DETERMINISTIC_DSA(hash_alg) \
1096 (PSA_ALG_DETERMINISTIC_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1097#define PSA_ALG_IS_DSA(alg) \
1098 (((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_DSA_DETERMINISTIC_FLAG) == \
1099 PSA_ALG_DSA_BASE)
1100#define PSA_ALG_DSA_IS_DETERMINISTIC(alg) \
1101 (((alg) & PSA_ALG_DSA_DETERMINISTIC_FLAG) != 0)
1102#define PSA_ALG_IS_DETERMINISTIC_DSA(alg) \
1103 (PSA_ALG_IS_DSA(alg) && PSA_ALG_DSA_IS_DETERMINISTIC(alg))
1104#define PSA_ALG_IS_RANDOMIZED_DSA(alg) \
1105 (PSA_ALG_IS_DSA(alg) && !PSA_ALG_DSA_IS_DETERMINISTIC(alg))
1106
1107#define PSA_ALG_ECDSA_BASE ((psa_algorithm_t)0x10060000)
1108/** ECDSA signature with hashing.
1109 *
1110 * This is the ECDSA signature scheme defined by ANSI X9.62,
1111 * with a random per-message secret number (*k*).
1112 *
1113 * The representation of the signature as a byte string consists of
1114 * the concatentation of the signature values *r* and *s*. Each of
1115 * *r* and *s* is encoded as an *N*-octet string, where *N* is the length
1116 * of the base point of the curve in octets. Each value is represented
1117 * in big-endian order (most significant octet first).
1118 *
1119 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1120 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001121 * This includes #PSA_ALG_ANY_HASH
1122 * when specifying the algorithm in a usage policy.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001123 *
1124 * \return The corresponding ECDSA signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001125 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001126 * hash algorithm.
1127 */
1128#define PSA_ALG_ECDSA(hash_alg) \
1129 (PSA_ALG_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1130/** ECDSA signature without hashing.
1131 *
1132 * This is the same signature scheme as #PSA_ALG_ECDSA(), but
1133 * without specifying a hash algorithm. This algorithm may only be
1134 * used to sign or verify a sequence of bytes that should be an
1135 * already-calculated hash. Note that the input is padded with
1136 * zeros on the left or truncated on the left as required to fit
1137 * the curve size.
1138 */
1139#define PSA_ALG_ECDSA_ANY PSA_ALG_ECDSA_BASE
1140#define PSA_ALG_DETERMINISTIC_ECDSA_BASE ((psa_algorithm_t)0x10070000)
1141/** Deterministic ECDSA signature with hashing.
1142 *
1143 * This is the deterministic ECDSA signature scheme defined by RFC 6979.
1144 *
1145 * The representation of a signature is the same as with #PSA_ALG_ECDSA().
1146 *
1147 * Note that when this algorithm is used for verification, signatures
1148 * made with randomized ECDSA (#PSA_ALG_ECDSA(\p hash_alg)) with the
1149 * same private key are accepted. In other words,
1150 * #PSA_ALG_DETERMINISTIC_ECDSA(\p hash_alg) differs from
1151 * #PSA_ALG_ECDSA(\p hash_alg) only for signature, not for verification.
1152 *
1153 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1154 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001155 * This includes #PSA_ALG_ANY_HASH
1156 * when specifying the algorithm in a usage policy.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001157 *
1158 * \return The corresponding deterministic ECDSA signature
1159 * algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001160 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001161 * hash algorithm.
1162 */
1163#define PSA_ALG_DETERMINISTIC_ECDSA(hash_alg) \
1164 (PSA_ALG_DETERMINISTIC_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1165#define PSA_ALG_IS_ECDSA(alg) \
1166 (((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_DSA_DETERMINISTIC_FLAG) == \
1167 PSA_ALG_ECDSA_BASE)
1168#define PSA_ALG_ECDSA_IS_DETERMINISTIC(alg) \
1169 (((alg) & PSA_ALG_DSA_DETERMINISTIC_FLAG) != 0)
1170#define PSA_ALG_IS_DETERMINISTIC_ECDSA(alg) \
1171 (PSA_ALG_IS_ECDSA(alg) && PSA_ALG_ECDSA_IS_DETERMINISTIC(alg))
1172#define PSA_ALG_IS_RANDOMIZED_ECDSA(alg) \
1173 (PSA_ALG_IS_ECDSA(alg) && !PSA_ALG_ECDSA_IS_DETERMINISTIC(alg))
1174
Gilles Peskined35b4892019-01-14 16:02:15 +01001175/** Whether the specified algorithm is a hash-and-sign algorithm.
1176 *
1177 * Hash-and-sign algorithms are public-key signature algorithms structured
1178 * in two parts: first the calculation of a hash in a way that does not
1179 * depend on the key, then the calculation of a signature from the
1180 * hash value and the key.
1181 *
1182 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1183 *
1184 * \return 1 if \p alg is a hash-and-sign algorithm, 0 otherwise.
1185 * This macro may return either 0 or 1 if \p alg is not a supported
1186 * algorithm identifier.
1187 */
1188#define PSA_ALG_IS_HASH_AND_SIGN(alg) \
1189 (PSA_ALG_IS_RSA_PSS(alg) || PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) || \
1190 PSA_ALG_IS_DSA(alg) || PSA_ALG_IS_ECDSA(alg))
1191
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001192/** Get the hash used by a hash-and-sign signature algorithm.
1193 *
1194 * A hash-and-sign algorithm is a signature algorithm which is
1195 * composed of two phases: first a hashing phase which does not use
1196 * the key and produces a hash of the input message, then a signing
1197 * phase which only uses the hash and the key and not the message
1198 * itself.
1199 *
1200 * \param alg A signature algorithm (\c PSA_ALG_XXX value such that
1201 * #PSA_ALG_IS_SIGN(\p alg) is true).
1202 *
1203 * \return The underlying hash algorithm if \p alg is a hash-and-sign
1204 * algorithm.
1205 * \return 0 if \p alg is a signature algorithm that does not
1206 * follow the hash-and-sign structure.
1207 * \return Unspecified if \p alg is not a signature algorithm or
1208 * if it is not supported by the implementation.
1209 */
1210#define PSA_ALG_SIGN_GET_HASH(alg) \
Gilles Peskined35b4892019-01-14 16:02:15 +01001211 (PSA_ALG_IS_HASH_AND_SIGN(alg) ? \
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001212 ((alg) & PSA_ALG_HASH_MASK) == 0 ? /*"raw" algorithm*/ 0 : \
1213 ((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \
1214 0)
1215
1216/** RSA PKCS#1 v1.5 encryption.
1217 */
1218#define PSA_ALG_RSA_PKCS1V15_CRYPT ((psa_algorithm_t)0x12020000)
1219
1220#define PSA_ALG_RSA_OAEP_BASE ((psa_algorithm_t)0x12030000)
1221/** RSA OAEP encryption.
1222 *
1223 * This is the encryption scheme defined by RFC 8017
1224 * (PKCS#1: RSA Cryptography Specifications) under the name
1225 * RSAES-OAEP, with the message generation function MGF1.
1226 *
1227 * \param hash_alg The hash algorithm (\c PSA_ALG_XXX value such that
1228 * #PSA_ALG_IS_HASH(\p hash_alg) is true) to use
1229 * for MGF1.
1230 *
1231 * \return The corresponding RSA OAEP signature algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001232 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001233 * hash algorithm.
1234 */
1235#define PSA_ALG_RSA_OAEP(hash_alg) \
1236 (PSA_ALG_RSA_OAEP_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1237#define PSA_ALG_IS_RSA_OAEP(alg) \
1238 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_OAEP_BASE)
1239#define PSA_ALG_RSA_OAEP_GET_HASH(alg) \
1240 (PSA_ALG_IS_RSA_OAEP(alg) ? \
1241 ((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \
1242 0)
1243
Gilles Peskine6843c292019-01-18 16:44:49 +01001244#define PSA_ALG_HKDF_BASE ((psa_algorithm_t)0x20000100)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001245/** Macro to build an HKDF algorithm.
1246 *
1247 * For example, `PSA_ALG_HKDF(PSA_ALG_SHA256)` is HKDF using HMAC-SHA-256.
1248 *
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001249 * This key derivation algorithm uses the following inputs:
Gilles Peskine03410b52019-05-16 16:05:19 +02001250 * - #PSA_KEY_DERIVATION_INPUT_SALT is the salt used in the "extract" step.
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001251 * It is optional; if omitted, the derivation uses an empty salt.
Gilles Peskine03410b52019-05-16 16:05:19 +02001252 * - #PSA_KEY_DERIVATION_INPUT_SECRET is the secret key used in the "extract" step.
1253 * - #PSA_KEY_DERIVATION_INPUT_INFO is the info string used in the "expand" step.
1254 * You must pass #PSA_KEY_DERIVATION_INPUT_SALT before #PSA_KEY_DERIVATION_INPUT_SECRET.
1255 * You may pass #PSA_KEY_DERIVATION_INPUT_INFO at any time after steup and before
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001256 * starting to generate output.
1257 *
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001258 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1259 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
1260 *
1261 * \return The corresponding HKDF algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001262 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001263 * hash algorithm.
1264 */
1265#define PSA_ALG_HKDF(hash_alg) \
1266 (PSA_ALG_HKDF_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1267/** Whether the specified algorithm is an HKDF algorithm.
1268 *
1269 * HKDF is a family of key derivation algorithms that are based on a hash
1270 * function and the HMAC construction.
1271 *
1272 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1273 *
1274 * \return 1 if \c alg is an HKDF algorithm, 0 otherwise.
1275 * This macro may return either 0 or 1 if \c alg is not a supported
1276 * key derivation algorithm identifier.
1277 */
1278#define PSA_ALG_IS_HKDF(alg) \
1279 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_HKDF_BASE)
1280#define PSA_ALG_HKDF_GET_HASH(hkdf_alg) \
1281 (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK))
1282
Gilles Peskine6843c292019-01-18 16:44:49 +01001283#define PSA_ALG_TLS12_PRF_BASE ((psa_algorithm_t)0x20000200)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001284/** Macro to build a TLS-1.2 PRF algorithm.
1285 *
1286 * TLS 1.2 uses a custom pseudorandom function (PRF) for key schedule,
1287 * specified in Section 5 of RFC 5246. It is based on HMAC and can be
1288 * used with either SHA-256 or SHA-384.
1289 *
1290 * For the application to TLS-1.2, the salt and label arguments passed
1291 * to psa_key_derivation() are what's called 'seed' and 'label' in RFC 5246,
1292 * respectively. For example, for TLS key expansion, the salt is the
1293 * concatenation of ServerHello.Random + ClientHello.Random,
1294 * while the label is "key expansion".
1295 *
1296 * For example, `PSA_ALG_TLS12_PRF(PSA_ALG_SHA256)` represents the
1297 * TLS 1.2 PRF using HMAC-SHA-256.
1298 *
1299 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1300 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
1301 *
1302 * \return The corresponding TLS-1.2 PRF algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001303 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001304 * hash algorithm.
1305 */
1306#define PSA_ALG_TLS12_PRF(hash_alg) \
1307 (PSA_ALG_TLS12_PRF_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1308
1309/** Whether the specified algorithm is a TLS-1.2 PRF algorithm.
1310 *
1311 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1312 *
1313 * \return 1 if \c alg is a TLS-1.2 PRF algorithm, 0 otherwise.
1314 * This macro may return either 0 or 1 if \c alg is not a supported
1315 * key derivation algorithm identifier.
1316 */
1317#define PSA_ALG_IS_TLS12_PRF(alg) \
1318 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_TLS12_PRF_BASE)
1319#define PSA_ALG_TLS12_PRF_GET_HASH(hkdf_alg) \
1320 (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK))
1321
Gilles Peskine6843c292019-01-18 16:44:49 +01001322#define PSA_ALG_TLS12_PSK_TO_MS_BASE ((psa_algorithm_t)0x20000300)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001323/** Macro to build a TLS-1.2 PSK-to-MasterSecret algorithm.
1324 *
1325 * In a pure-PSK handshake in TLS 1.2, the master secret is derived
1326 * from the PreSharedKey (PSK) through the application of padding
1327 * (RFC 4279, Section 2) and the TLS-1.2 PRF (RFC 5246, Section 5).
1328 * The latter is based on HMAC and can be used with either SHA-256
1329 * or SHA-384.
1330 *
1331 * For the application to TLS-1.2, the salt passed to psa_key_derivation()
1332 * (and forwarded to the TLS-1.2 PRF) is the concatenation of the
1333 * ClientHello.Random + ServerHello.Random, while the label is "master secret"
1334 * or "extended master secret".
1335 *
1336 * For example, `PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA256)` represents the
1337 * TLS-1.2 PSK to MasterSecret derivation PRF using HMAC-SHA-256.
1338 *
1339 * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
1340 * #PSA_ALG_IS_HASH(\p hash_alg) is true).
1341 *
1342 * \return The corresponding TLS-1.2 PSK to MS algorithm.
Gilles Peskine3be6b7f2019-03-05 19:32:26 +01001343 * \return Unspecified if \p hash_alg is not a supported
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001344 * hash algorithm.
1345 */
1346#define PSA_ALG_TLS12_PSK_TO_MS(hash_alg) \
1347 (PSA_ALG_TLS12_PSK_TO_MS_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
1348
1349/** Whether the specified algorithm is a TLS-1.2 PSK to MS algorithm.
1350 *
1351 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1352 *
1353 * \return 1 if \c alg is a TLS-1.2 PSK to MS algorithm, 0 otherwise.
1354 * This macro may return either 0 or 1 if \c alg is not a supported
1355 * key derivation algorithm identifier.
1356 */
1357#define PSA_ALG_IS_TLS12_PSK_TO_MS(alg) \
1358 (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_TLS12_PSK_TO_MS_BASE)
1359#define PSA_ALG_TLS12_PSK_TO_MS_GET_HASH(hkdf_alg) \
1360 (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK))
1361
Gilles Peskinea52460c2019-04-12 00:11:21 +02001362#define PSA_ALG_KEY_DERIVATION_MASK ((psa_algorithm_t)0x0803ffff)
1363#define PSA_ALG_KEY_AGREEMENT_MASK ((psa_algorithm_t)0x10fc0000)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001364
Gilles Peskine6843c292019-01-18 16:44:49 +01001365/** Macro to build a combined algorithm that chains a key agreement with
1366 * a key derivation.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001367 *
Gilles Peskine6843c292019-01-18 16:44:49 +01001368 * \param ka_alg A key agreement algorithm (\c PSA_ALG_XXX value such
1369 * that #PSA_ALG_IS_KEY_AGREEMENT(\p ka_alg) is true).
1370 * \param kdf_alg A key derivation algorithm (\c PSA_ALG_XXX value such
1371 * that #PSA_ALG_IS_KEY_DERIVATION(\p kdf_alg) is true).
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001372 *
Gilles Peskine6843c292019-01-18 16:44:49 +01001373 * \return The corresponding key agreement and derivation
1374 * algorithm.
1375 * \return Unspecified if \p ka_alg is not a supported
1376 * key agreement algorithm or \p kdf_alg is not a
1377 * supported key derivation algorithm.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001378 */
Gilles Peskine6843c292019-01-18 16:44:49 +01001379#define PSA_ALG_KEY_AGREEMENT(ka_alg, kdf_alg) \
1380 ((ka_alg) | (kdf_alg))
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001381
1382#define PSA_ALG_KEY_AGREEMENT_GET_KDF(alg) \
1383 (((alg) & PSA_ALG_KEY_DERIVATION_MASK) | PSA_ALG_CATEGORY_KEY_DERIVATION)
1384
Gilles Peskine6843c292019-01-18 16:44:49 +01001385#define PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) \
1386 (((alg) & PSA_ALG_KEY_AGREEMENT_MASK) | PSA_ALG_CATEGORY_KEY_AGREEMENT)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001387
Gilles Peskine47e79fb2019-02-08 11:24:59 +01001388/** Whether the specified algorithm is a raw key agreement algorithm.
1389 *
1390 * A raw key agreement algorithm is one that does not specify
1391 * a key derivation function.
1392 * Usually, raw key agreement algorithms are constructed directly with
1393 * a \c PSA_ALG_xxx macro while non-raw key agreement algorithms are
1394 * constructed with PSA_ALG_KEY_AGREEMENT().
1395 *
1396 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1397 *
1398 * \return 1 if \p alg is a raw key agreement algorithm, 0 otherwise.
1399 * This macro may return either 0 or 1 if \p alg is not a supported
1400 * algorithm identifier.
1401 */
Gilles Peskine6843c292019-01-18 16:44:49 +01001402#define PSA_ALG_IS_RAW_KEY_AGREEMENT(alg) \
Gilles Peskine47e79fb2019-02-08 11:24:59 +01001403 (PSA_ALG_IS_KEY_AGREEMENT(alg) && \
1404 PSA_ALG_KEY_AGREEMENT_GET_KDF(alg) == PSA_ALG_CATEGORY_KEY_DERIVATION)
Gilles Peskine6843c292019-01-18 16:44:49 +01001405
1406#define PSA_ALG_IS_KEY_DERIVATION_OR_AGREEMENT(alg) \
1407 ((PSA_ALG_IS_KEY_DERIVATION(alg) || PSA_ALG_IS_KEY_AGREEMENT(alg)))
1408
1409/** The finite-field Diffie-Hellman (DH) key agreement algorithm.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001410 *
Gilles Peskine2e37c0d2019-03-05 19:32:02 +01001411 * The shared secret produced by key agreement is
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001412 * `g^{ab}` in big-endian format.
1413 * It is `ceiling(m / 8)` bytes long where `m` is the size of the prime `p`
1414 * in bits.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001415 */
Gilles Peskine6843c292019-01-18 16:44:49 +01001416#define PSA_ALG_FFDH ((psa_algorithm_t)0x30100000)
1417
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001418/** Whether the specified algorithm is a finite field Diffie-Hellman algorithm.
1419 *
Gilles Peskine2e37c0d2019-03-05 19:32:02 +01001420 * This includes the raw finite field Diffie-Hellman algorithm as well as
1421 * finite-field Diffie-Hellman followed by any supporter key derivation
1422 * algorithm.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001423 *
1424 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1425 *
1426 * \return 1 if \c alg is a finite field Diffie-Hellman algorithm, 0 otherwise.
1427 * This macro may return either 0 or 1 if \c alg is not a supported
1428 * key agreement algorithm identifier.
1429 */
1430#define PSA_ALG_IS_FFDH(alg) \
Gilles Peskine6843c292019-01-18 16:44:49 +01001431 (PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_FFDH)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001432
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001433/** The elliptic curve Diffie-Hellman (ECDH) key agreement algorithm.
1434 *
Gilles Peskine6843c292019-01-18 16:44:49 +01001435 * The shared secret produced by key agreement is the x-coordinate of
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001436 * the shared secret point. It is always `ceiling(m / 8)` bytes long where
1437 * `m` is the bit size associated with the curve, i.e. the bit size of the
1438 * order of the curve's coordinate field. When `m` is not a multiple of 8,
1439 * the byte containing the most significant bit of the shared secret
1440 * is padded with zero bits. The byte order is either little-endian
1441 * or big-endian depending on the curve type.
1442 *
1443 * - For Montgomery curves (curve types `PSA_ECC_CURVE_CURVEXXX`),
1444 * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
1445 * in little-endian byte order.
1446 * The bit size is 448 for Curve448 and 255 for Curve25519.
1447 * - For Weierstrass curves over prime fields (curve types
1448 * `PSA_ECC_CURVE_SECPXXX` and `PSA_ECC_CURVE_BRAINPOOL_PXXX`),
1449 * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
1450 * in big-endian byte order.
1451 * The bit size is `m = ceiling(log_2(p))` for the field `F_p`.
1452 * - For Weierstrass curves over binary fields (curve types
1453 * `PSA_ECC_CURVE_SECTXXX`),
1454 * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
1455 * in big-endian byte order.
1456 * The bit size is `m` for the field `F_{2^m}`.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001457 */
Gilles Peskine6843c292019-01-18 16:44:49 +01001458#define PSA_ALG_ECDH ((psa_algorithm_t)0x30200000)
1459
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001460/** Whether the specified algorithm is an elliptic curve Diffie-Hellman
1461 * algorithm.
1462 *
Gilles Peskine2e37c0d2019-03-05 19:32:02 +01001463 * This includes the raw elliptic curve Diffie-Hellman algorithm as well as
1464 * elliptic curve Diffie-Hellman followed by any supporter key derivation
1465 * algorithm.
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001466 *
1467 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1468 *
1469 * \return 1 if \c alg is an elliptic curve Diffie-Hellman algorithm,
1470 * 0 otherwise.
1471 * This macro may return either 0 or 1 if \c alg is not a supported
1472 * key agreement algorithm identifier.
1473 */
1474#define PSA_ALG_IS_ECDH(alg) \
Gilles Peskine6843c292019-01-18 16:44:49 +01001475 (PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_ECDH)
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001476
Gilles Peskine30f77cd2019-01-14 16:06:39 +01001477/** Whether the specified algorithm encoding is a wildcard.
1478 *
1479 * Wildcard values may only be used to set the usage algorithm field in
1480 * a policy, not to perform an operation.
1481 *
1482 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
1483 *
1484 * \return 1 if \c alg is a wildcard algorithm encoding.
1485 * \return 0 if \c alg is a non-wildcard algorithm encoding (suitable for
1486 * an operation).
1487 * \return This macro may return either 0 or 1 if \c alg is not a supported
1488 * algorithm identifier.
1489 */
1490#define PSA_ALG_IS_WILDCARD(alg) \
1491 (PSA_ALG_IS_HASH_AND_SIGN(alg) ? \
1492 PSA_ALG_SIGN_GET_HASH(alg) == PSA_ALG_ANY_HASH : \
1493 (alg) == PSA_ALG_ANY_HASH)
1494
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001495/**@}*/
1496
1497/** \defgroup key_lifetimes Key lifetimes
1498 * @{
1499 */
1500
1501/** A volatile key only exists as long as the handle to it is not closed.
1502 * The key material is guaranteed to be erased on a power reset.
1503 */
1504#define PSA_KEY_LIFETIME_VOLATILE ((psa_key_lifetime_t)0x00000000)
1505
1506/** The default storage area for persistent keys.
1507 *
1508 * A persistent key remains in storage until it is explicitly destroyed or
1509 * until the corresponding storage area is wiped. This specification does
1510 * not define any mechanism to wipe a storage area, but implementations may
1511 * provide their own mechanism (for example to perform a factory reset,
1512 * to prepare for device refurbishment, or to uninstall an application).
1513 *
1514 * This lifetime value is the default storage area for the calling
1515 * application. Implementations may offer other storage areas designated
1516 * by other lifetime values as implementation-specific extensions.
1517 */
1518#define PSA_KEY_LIFETIME_PERSISTENT ((psa_key_lifetime_t)0x00000001)
1519
Gilles Peskine4a231b82019-05-06 18:56:14 +02001520/** The minimum value for a key identifier chosen by the application.
1521 */
Gilles Peskinef9fbc382019-05-15 18:42:09 +02001522#define PSA_KEY_ID_USER_MIN ((psa_key_id_t)0x00000001)
Gilles Peskine280948a2019-05-16 15:27:14 +02001523/** The maximum value for a key identifier chosen by the application.
Gilles Peskine4a231b82019-05-06 18:56:14 +02001524 */
1525#define PSA_KEY_ID_USER_MAX ((psa_key_id_t)0x3fffffff)
Gilles Peskine280948a2019-05-16 15:27:14 +02001526/** The minimum value for a key identifier chosen by the implementation.
Gilles Peskine4a231b82019-05-06 18:56:14 +02001527 */
1528#define PSA_KEY_ID_VENDOR_MIN ((psa_key_id_t)0x40000000)
Gilles Peskine280948a2019-05-16 15:27:14 +02001529/** The maximum value for a key identifier chosen by the implementation.
Gilles Peskine4a231b82019-05-06 18:56:14 +02001530 */
1531#define PSA_KEY_ID_VENDOR_MAX ((psa_key_id_t)0x7fffffff)
1532
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001533/**@}*/
1534
1535/** \defgroup policy Key policies
1536 * @{
1537 */
1538
1539/** Whether the key may be exported.
1540 *
1541 * A public key or the public part of a key pair may always be exported
1542 * regardless of the value of this permission flag.
1543 *
1544 * If a key does not have export permission, implementations shall not
1545 * allow the key to be exported in plain form from the cryptoprocessor,
1546 * whether through psa_export_key() or through a proprietary interface.
1547 * The key may however be exportable in a wrapped form, i.e. in a form
1548 * where it is encrypted by another key.
1549 */
1550#define PSA_KEY_USAGE_EXPORT ((psa_key_usage_t)0x00000001)
1551
Gilles Peskine8e0206a2019-05-14 14:24:28 +02001552/** Whether the key may be copied.
1553 *
Gilles Peskined6a8f5f2019-05-14 16:25:50 +02001554 * This flag allows the use of psa_copy_key() to make a copy of the key
Gilles Peskine8e0206a2019-05-14 14:24:28 +02001555 * with the same policy or a more restrictive policy.
1556 *
Gilles Peskined6a8f5f2019-05-14 16:25:50 +02001557 * For lifetimes for which the key is located in a secure element which
1558 * enforce the non-exportability of keys, copying a key outside the secure
1559 * element also requires the usage flag #PSA_KEY_USAGE_EXPORT.
1560 * Copying the key inside the secure element is permitted with just
1561 * #PSA_KEY_USAGE_COPY if the secure element supports it.
1562 * For keys with the lifetime #PSA_KEY_LIFETIME_VOLATILE or
Gilles Peskine8e0206a2019-05-14 14:24:28 +02001563 * #PSA_KEY_LIFETIME_PERSISTENT, the usage flag #PSA_KEY_USAGE_COPY
1564 * is sufficient to permit the copy.
1565 */
1566#define PSA_KEY_USAGE_COPY ((psa_key_usage_t)0x00000002)
1567
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001568/** Whether the key may be used to encrypt a message.
1569 *
1570 * This flag allows the key to be used for a symmetric encryption operation,
1571 * for an AEAD encryption-and-authentication operation,
1572 * or for an asymmetric encryption operation,
1573 * if otherwise permitted by the key's type and policy.
1574 *
1575 * For a key pair, this concerns the public key.
1576 */
1577#define PSA_KEY_USAGE_ENCRYPT ((psa_key_usage_t)0x00000100)
1578
1579/** Whether the key may be used to decrypt a message.
1580 *
1581 * This flag allows the key to be used for a symmetric decryption operation,
1582 * for an AEAD decryption-and-verification operation,
1583 * or for an asymmetric decryption operation,
1584 * if otherwise permitted by the key's type and policy.
1585 *
1586 * For a key pair, this concerns the private key.
1587 */
1588#define PSA_KEY_USAGE_DECRYPT ((psa_key_usage_t)0x00000200)
1589
1590/** Whether the key may be used to sign a message.
1591 *
1592 * This flag allows the key to be used for a MAC calculation operation
1593 * or for an asymmetric signature operation,
1594 * if otherwise permitted by the key's type and policy.
1595 *
1596 * For a key pair, this concerns the private key.
1597 */
1598#define PSA_KEY_USAGE_SIGN ((psa_key_usage_t)0x00000400)
1599
1600/** Whether the key may be used to verify a message signature.
1601 *
1602 * This flag allows the key to be used for a MAC verification operation
1603 * or for an asymmetric signature verification operation,
1604 * if otherwise permitted by by the key's type and policy.
1605 *
1606 * For a key pair, this concerns the public key.
1607 */
1608#define PSA_KEY_USAGE_VERIFY ((psa_key_usage_t)0x00000800)
1609
1610/** Whether the key may be used to derive other keys.
1611 */
1612#define PSA_KEY_USAGE_DERIVE ((psa_key_usage_t)0x00001000)
1613
1614/**@}*/
1615
Gilles Peskineb70a0fd2019-01-07 22:59:38 +01001616/** \defgroup derivation Key derivation
1617 * @{
1618 */
1619
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001620/** A secret input for key derivation.
1621 *
1622 * This must be a key of type #PSA_KEY_TYPE_DERIVE.
1623 */
Gilles Peskinecf7292e2019-05-16 17:53:40 +02001624#define PSA_KEY_DERIVATION_INPUT_SECRET ((psa_key_derivation_step_t)0x0101)
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001625
1626/** A label for key derivation.
1627 *
1628 * This must be a direct input.
1629 */
Gilles Peskinecf7292e2019-05-16 17:53:40 +02001630#define PSA_KEY_DERIVATION_INPUT_LABEL ((psa_key_derivation_step_t)0x0201)
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001631
1632/** A salt for key derivation.
1633 *
1634 * This must be a direct input.
1635 */
Gilles Peskinecf7292e2019-05-16 17:53:40 +02001636#define PSA_KEY_DERIVATION_INPUT_SALT ((psa_key_derivation_step_t)0x0202)
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001637
1638/** An information string for key derivation.
1639 *
1640 * This must be a direct input.
1641 */
Gilles Peskinecf7292e2019-05-16 17:53:40 +02001642#define PSA_KEY_DERIVATION_INPUT_INFO ((psa_key_derivation_step_t)0x0203)
Gilles Peskine6cdfdb72019-01-08 10:31:27 +01001643
Gilles Peskineb70a0fd2019-01-07 22:59:38 +01001644/**@}*/
1645
Gilles Peskinef3b731e2018-12-12 13:38:31 +01001646#endif /* PSA_CRYPTO_VALUES_H */