blob: a2ce15665c9dac5be1a36e7b207629c7d38c2351 [file] [log] [blame]
Gilles Peskinee59236f2018-01-27 23:32:46 +01001/**
2 * \file psa/crypto.h
3 * \brief Platform Security Architecture cryptography module
4 */
5
6#ifndef PSA_CRYPTO_H
7#define PSA_CRYPTO_H
8
9#include "crypto_platform.h"
10
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +010011#include <stddef.h>
12
Gilles Peskine62a7e7e2018-02-07 21:54:47 +010013#ifdef __DOXYGEN_ONLY__
Gilles Peskinef5b9fa12018-03-07 16:40:18 +010014/* This __DOXYGEN_ONLY__ block contains mock definitions for things that
15 * must be defined in the crypto_platform.h header. These mock definitions
16 * are present in this file as a convenience to generate pretty-printed
17 * documentation that includes those definitions. */
18
Gilles Peskine62a7e7e2018-02-07 21:54:47 +010019/** \defgroup platform Implementation-specific definitions
20 * @{
21 */
22
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +010023/** \brief Key slot number.
24 *
25 * This type represents key slots. It must be an unsigned integral
Gilles Peskine308b91d2018-02-08 09:47:44 +010026 * type. The choice of type is implementation-dependent.
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +010027 * 0 is not a valid key slot number. The meaning of other values is
28 * implementation dependent.
29 *
30 * At any given point in time, each key slot either contains a
31 * cryptographic object, or is empty. Key slots are persistent:
32 * once set, the cryptographic object remains in the key slot until
33 * explicitly destroyed.
34 */
35typedef _unsigned_integral_type_ psa_key_slot_t;
36
Gilles Peskine62a7e7e2018-02-07 21:54:47 +010037/**@}*/
Gilles Peskinef5b9fa12018-03-07 16:40:18 +010038#endif /* __DOXYGEN_ONLY__ */
Gilles Peskine62a7e7e2018-02-07 21:54:47 +010039
Gilles Peskinee59236f2018-01-27 23:32:46 +010040#ifdef __cplusplus
41extern "C" {
42#endif
43
44/** \defgroup basic Basic definitions
45 * @{
46 */
47
48/**
49 * \brief Function return status.
50 *
51 * Zero indicates success, anything else indicates an error.
52 */
53typedef enum {
54 /** The action was completed successfully. */
55 PSA_SUCCESS = 0,
56 /** The requested operation or a parameter is not supported
Gilles Peskine65eb8582018-04-19 08:28:58 +020057 * by this implementation.
58 *
59 * Implementations should return this error code when an enumeration
60 * parameter such as a key type, algorithm, etc. is not recognized.
61 * If a combination of parameters is recognized and identified as
62 * not valid, return #PSA_ERROR_INVALID_ARGUMENT instead. */
Gilles Peskinee59236f2018-01-27 23:32:46 +010063 PSA_ERROR_NOT_SUPPORTED,
Gilles Peskine65eb8582018-04-19 08:28:58 +020064 /** 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. */
Gilles Peskinee59236f2018-01-27 23:32:46 +010075 PSA_ERROR_NOT_PERMITTED,
Gilles Peskine65eb8582018-04-19 08:28:58 +020076 /** An output buffer is too small.
77 *
78 * Applications can call the `PSA_xxx_SIZE` macro listed in the function
79 * description to determine a sufficient buffer size.
80 *
81 * Implementations should preferably return this error code only
82 * in cases when performing the operation with a larger output
83 * buffer would succeed. However implementations may return this
84 * error if a function has invalid or unsupported parameters in addition
85 * to the parameters that determine the necessary output buffer size. */
Gilles Peskinee59236f2018-01-27 23:32:46 +010086 PSA_ERROR_BUFFER_TOO_SMALL,
87 /** A slot is occupied, but must be empty to carry out the
Gilles Peskine65eb8582018-04-19 08:28:58 +020088 * requested action.
89 *
90 * If the slot number is invalid (i.e. the requested action could
91 * not be performed even after erasing the slot's content),
92 * implementations shall return #PSA_ERROR_INVALID_ARGUMENT instead. */
Gilles Peskinee59236f2018-01-27 23:32:46 +010093 PSA_ERROR_OCCUPIED_SLOT,
94 /** A slot is empty, but must be occupied to carry out the
Gilles Peskine65eb8582018-04-19 08:28:58 +020095 * requested action.
96 *
97 * If the slot number is invalid (i.e. the requested action could
98 * not be performed even after creating appropriate content in the slot),
99 * implementations shall return #PSA_ERROR_INVALID_ARGUMENT instead. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100100 PSA_ERROR_EMPTY_SLOT,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200101 /** 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,
109 * but shall return #PSA_ERROR_OCCUPIED_SLOT or #PSA_ERROR_EMPTY_SLOT
110 * as applicable. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100111 PSA_ERROR_BAD_STATE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200112 /** The parameters passed to the function are invalid.
113 *
114 * Implementations may return this error any time a parameter or
115 * combination of parameters are recognized as invalid.
116 *
117 * Implementations shall not return this error code to indicate
118 * that a key slot is occupied when it needs to be free or vice versa,
119 * but shall return #PSA_ERROR_OCCUPIED_SLOT or #PSA_ERROR_EMPTY_SLOT
120 * as applicable. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100121 PSA_ERROR_INVALID_ARGUMENT,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200122 /** There is not enough runtime memory.
123 *
124 * If the action is carried out across multiple security realms, this
125 * error can refer to available memory in any of the security realms. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100126 PSA_ERROR_INSUFFICIENT_MEMORY,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200127 /** There is not enough persistent storage.
128 *
129 * Functions that modify the key storage return this error code if
130 * there is insufficient storage space on the host media. In addition,
131 * many functions that do not otherwise access storage may return this
132 * error code if the implementation requires a mandatory log entry for
133 * the requested action and the log storage space is full. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100134 PSA_ERROR_INSUFFICIENT_STORAGE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200135 /** There was a communication failure inside the implementation.
136 *
137 * This can indicate a communication failure between the application
138 * and an external cryptoprocessor or between the cryptoprocessor and
139 * an external volatile or persistent memory. A communication failure
140 * may be transient or permanent depending on the cause.
141 *
142 * \warning If a function returns this error, it is undetermined
143 * whether the requested action has completed or not. Implementations
144 * should return #PSA_SUCCESS on successful completion whenver
145 * possible, however functions may return #PSA_ERROR_COMMUNICATION_FAILURE
146 * if the requested action was completed successfully in an external
147 * cryptoprocessor but there was a breakdown of communication before
148 * the cryptoprocessor could report the status to the application.
149 */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100150 PSA_ERROR_COMMUNICATION_FAILURE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200151 /** There was a storage failure that may have led to data loss.
152 *
153 * This error indicates that some persistent storage is corrupted.
154 * It should not be used for a corruption of volatile memory
155 * (use #PSA_ERROR_TAMPERING_DETECTED), for a communication error
156 * between the cryptoprocessor and its external storage (use
157 * #PSA_ERROR_COMMUNICATION_FAILURE), or when the storage is
158 * in a valid state but is full (use #PSA_ERROR_INSUFFICIENT_STORAGE).
159 *
160 * Note that a storage failure does not indicate that any data that was
161 * previously read is invalid. However this previously read data may no
162 * longer be readable from storage.
163 *
164 * When a storage failure occurs, it is no longer possible to ensure
165 * the global integrity of the keystore. Depending on the global
166 * integrity guarantees offered by the implementation, access to other
167 * data may or may not fail even if the data is still readable but
168 * its integrity canont be guaranteed.
169 *
170 * Implementations should only use this error code to report a
171 * permanent storage corruption. However application writers should
172 * keep in mind that transient errors while reading the storage may be
173 * reported using this error code. */
Gilles Peskinea5905292018-02-07 20:59:33 +0100174 PSA_ERROR_STORAGE_FAILURE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200175 /** A hardware failure was detected.
176 *
177 * A hardware failure may be transient or permanent depending on the
178 * cause. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100179 PSA_ERROR_HARDWARE_FAILURE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200180 /** A tampering attempt was detected.
181 *
182 * If an application receives this error code, there is no guarantee
183 * that previously accessed or computed data was correct and remains
184 * confidential. Applications should not perform any security function
185 * and should enter a safe failure state.
186 *
187 * Implementations may return this error code if they detect an invalid
188 * state that cannot happen during normal operation and that indicates
189 * that the implementation's security guarantees no longer hold. Depending
190 * on the implementation architecture and on its security and safety goals,
191 * the implementation may forcibly terminate the application.
192 *
193 * This error code is intended as a last resort when a security breach
194 * is detected and it is unsure whether the keystore data is still
195 * protected. Implementations shall only return this error code
196 * to report an alarm from a tampering detector, to indicate that
197 * the confidentiality of stored data can no longer be guaranteed,
198 * or to indicate that the integrity of previously returned data is now
199 * considered compromised. Implementations shall not use this error code
200 * to indicate a hardware failure that merely makes it impossible to
201 * perform the requested operation (use #PSA_ERROR_COMMUNICATION_FAILURE,
202 * #PSA_ERROR_STORAGE_FAILURE, #PSA_ERROR_HARDWARE_FAILURE,
203 * #PSA_ERROR_INSUFFICIENT_ENTROPY or other applicable error code
204 * instead).
205 *
206 * This error indicates an attack against the application. Implementations
207 * shall not return this error code as a consequence of the behavior of
208 * the application itself. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100209 PSA_ERROR_TAMPERING_DETECTED,
210 /** There is not enough entropy to generate random data needed
Gilles Peskine65eb8582018-04-19 08:28:58 +0200211 * for the requested action.
212 *
213 * This error indicates a failure of a hardware random generator.
214 * Application writers should note that this error can be returned not
215 * only by functions whose purpose is to generate random data, such
216 * as key, IV or nonce generation, but also by functions that execute
217 * an algorithm with a randomized result, as well as functions that
218 * use randomization of intermediate computations as a countermeasure
219 * to certain attacks.
220 *
221 * Implementations should avoid returning this error after psa_crypto_init()
222 * has succeeded. Implementations should generate sufficient
223 * entropy during initialization and subsequently use a cryptographically
224 * secure pseudorandom generator (PRNG). However implementations may return
225 * this error at any time if a policy requires the PRNG to be reseeded
226 * during normal operation. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100227 PSA_ERROR_INSUFFICIENT_ENTROPY,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200228 /** The signature, MAC or hash is incorrect.
229 *
230 * Verification functions return this error if the verification
231 * calculations completed successfully, and the value to be verified
232 * was determined to be incorrect.
233 *
234 * If the value to verify has an invalid size, implementations may return
235 * either #PSA_ERROR_INVALID_ARGUMENT or #PSA_ERROR_INVALID_SIGNATURE. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100236 PSA_ERROR_INVALID_SIGNATURE,
Gilles Peskine65eb8582018-04-19 08:28:58 +0200237 /** The decrypted padding is incorrect.
238 *
239 * \warning In some protocols, when decrypting data, it is essential that
240 * the behavior of the application does not depend on whether the padding
241 * is correct, down to precise timing. Applications should prefer
242 * protocols that use authenticated encryption rather than plain
243 * encryption. If the application must perform a decryption of
244 * unauthenticated data, the application writer should take care not
245 * to reveal whether the padding is invalid.
246 *
247 * Implementations should strive to make valid and invalid padding
248 * as close as possible to indistinguishable to an external observer.
249 * In particular, the timing of a decryption operation should not
250 * depend on the validity of the padding. */
Gilles Peskinea5905292018-02-07 20:59:33 +0100251 PSA_ERROR_INVALID_PADDING,
Gilles Peskinee59236f2018-01-27 23:32:46 +0100252 /** An error occurred that does not correspond to any defined
Gilles Peskine65eb8582018-04-19 08:28:58 +0200253 * failure cause.
254 *
255 * Implementations may use this error code if none of the other standard
256 * error codes are applicable. */
Gilles Peskinee59236f2018-01-27 23:32:46 +0100257 PSA_ERROR_UNKNOWN_ERROR,
258} psa_status_t;
259
260/**
261 * \brief Library initialization.
262 *
263 * Applications must call this function before calling any other
264 * function in this module.
265 *
266 * Applications may call this function more than once. Once a call
267 * succeeds, subsequent calls are guaranteed to succeed.
268 *
Gilles Peskine308b91d2018-02-08 09:47:44 +0100269 * \retval PSA_SUCCESS
270 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
271 * \retval PSA_ERROR_COMMUNICATION_FAILURE
272 * \retval PSA_ERROR_HARDWARE_FAILURE
273 * \retval PSA_ERROR_TAMPERING_DETECTED
274 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
Gilles Peskinee59236f2018-01-27 23:32:46 +0100275 */
276psa_status_t psa_crypto_init(void);
277
Gilles Peskine2905a7a2018-03-07 16:39:31 +0100278#define PSA_BITS_TO_BYTES(bits) (((bits) + 7) / 8)
279#define PSA_BYTES_TO_BITS(bytes) ((bytes) * 8)
Gilles Peskine0189e752018-02-03 23:57:22 +0100280
Gilles Peskinee59236f2018-01-27 23:32:46 +0100281/**@}*/
282
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100283/** \defgroup crypto_types Key and algorithm types
284 * @{
285 */
286
Gilles Peskine308b91d2018-02-08 09:47:44 +0100287/** \brief Encoding of a key type.
288 */
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100289typedef uint32_t psa_key_type_t;
290
Gilles Peskinef5b9fa12018-03-07 16:40:18 +0100291/** An invalid key type value.
292 *
293 * Zero is not the encoding of any key type.
294 */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100295#define PSA_KEY_TYPE_NONE ((psa_key_type_t)0x00000000)
Gilles Peskinef5b9fa12018-03-07 16:40:18 +0100296
297/** Vendor-defined flag
298 *
299 * Key types defined by this standard will never have the
300 * #PSA_KEY_TYPE_VENDOR_FLAG bit set. Vendors who define additional key types
301 * must use an encoding with the #PSA_KEY_TYPE_VENDOR_FLAG bit set and should
302 * respect the bitwise structure used by standard encodings whenever practical.
303 */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100304#define PSA_KEY_TYPE_VENDOR_FLAG ((psa_key_type_t)0x80000000)
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100305
Gilles Peskine98f0a242018-02-06 18:57:29 +0100306#define PSA_KEY_TYPE_CATEGORY_MASK ((psa_key_type_t)0x7e000000)
Gilles Peskine35855962018-04-19 08:39:16 +0200307/** Raw data.
308 *
309 * A "key" of this type cannot be used for any cryptographic operation.
310 * Applications may use this type to store arbitrary data in the keystore. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100311#define PSA_KEY_TYPE_RAW_DATA ((psa_key_type_t)0x02000000)
312#define PSA_KEY_TYPE_CATEGORY_SYMMETRIC ((psa_key_type_t)0x04000000)
313#define PSA_KEY_TYPE_CATEGORY_ASYMMETRIC ((psa_key_type_t)0x06000000)
314#define PSA_KEY_TYPE_PAIR_FLAG ((psa_key_type_t)0x01000000)
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100315
Gilles Peskine35855962018-04-19 08:39:16 +0200316/** HMAC key.
317 *
318 * The key policy determines which underlying hash algorithm the key can be
319 * used for.
320 *
321 * HMAC keys should generally have the same size as the underlying hash.
322 * This size can be calculated with `PSA_HASH_SIZE(alg)` where
323 * `alg` is the HMAC algorithm or the underlying hash algorithm. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100324#define PSA_KEY_TYPE_HMAC ((psa_key_type_t)0x02000001)
Gilles Peskine35855962018-04-19 08:39:16 +0200325/** Key for an cipher, AEAD or MAC algorithm based on the AES block cipher.
326 *
327 * The size of the key can be 16 bytes (AES-128), 24 bytes (AES-192) or
328 * 32 bytes (AES-256).
329 */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100330#define PSA_KEY_TYPE_AES ((psa_key_type_t)0x04000001)
Gilles Peskine35855962018-04-19 08:39:16 +0200331/** Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES).
332 *
333 * The size of the key can be 8 bytes (single DES), 16 bytes (2-key 3DES) or
334 * 24 bytes (3-key 3DES).
335 *
336 * Note that single DES and 2-key 3DES are weak and strongly
337 * deprecated and should only be used to decrypt legacy data. 3-key 3DES
338 * is weak and deprecated and should only be used in legacy protocols.
339 */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100340#define PSA_KEY_TYPE_DES ((psa_key_type_t)0x04000002)
Gilles Peskine35855962018-04-19 08:39:16 +0200341/** Key for an cipher, AEAD or MAC algorithm based on the
342 * Camellia block cipher. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100343#define PSA_KEY_TYPE_CAMELLIA ((psa_key_type_t)0x04000003)
Gilles Peskine35855962018-04-19 08:39:16 +0200344/** Key for the RC4 stream cipher.
345 *
346 * Note that RC4 is weak and deprecated and should only be used in
347 * legacy protocols. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100348#define PSA_KEY_TYPE_ARC4 ((psa_key_type_t)0x04000004)
349
Gilles Peskine308b91d2018-02-08 09:47:44 +0100350/** RSA public key. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100351#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x06010000)
Gilles Peskine308b91d2018-02-08 09:47:44 +0100352/** RSA key pair (private and public key). */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100353#define PSA_KEY_TYPE_RSA_KEYPAIR ((psa_key_type_t)0x07010000)
Gilles Peskine06dc2632018-03-08 07:47:25 +0100354/** DSA public key. */
355#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x06020000)
356/** DSA key pair (private and public key). */
357#define PSA_KEY_TYPE_DSA_KEYPAIR ((psa_key_type_t)0x07020000)
358#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x06030000)
359#define PSA_KEY_TYPE_ECC_KEYPAIR_BASE ((psa_key_type_t)0x07030000)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100360#define PSA_KEY_TYPE_ECC_CURVE_MASK ((psa_key_type_t)0x0000ffff)
Gilles Peskine06dc2632018-03-08 07:47:25 +0100361#define PSA_KEY_TYPE_ECC_KEYPAIR(curve) \
362 (PSA_KEY_TYPE_ECC_KEYPAIR_BASE | (curve))
363#define PSA_KEY_TYPE_ECC_PUBLIC_KEY(curve) \
364 (PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE | (curve))
Gilles Peskine98f0a242018-02-06 18:57:29 +0100365
Gilles Peskinef5b9fa12018-03-07 16:40:18 +0100366/** Whether a key type is vendor-defined. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100367#define PSA_KEY_TYPE_IS_VENDOR_DEFINED(type) \
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100368 (((type) & PSA_KEY_TYPE_VENDOR_FLAG) != 0)
Gilles Peskine8c9def32018-02-08 10:02:12 +0100369#define PSA_KEY_TYPE_IS_RAW_BYTES(type) \
370 (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_RAW_DATA || \
371 ((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_SYMMETRIC)
Gilles Peskine06dc2632018-03-08 07:47:25 +0100372
373/** Whether a key type is asymmetric: either a key pair or a public key. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100374#define PSA_KEY_TYPE_IS_ASYMMETRIC(type) \
375 (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_ASYMMETRIC)
Gilles Peskine06dc2632018-03-08 07:47:25 +0100376/** Whether a key type is the public part of a key pair. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100377#define PSA_KEY_TYPE_IS_PUBLIC_KEY(type) \
378 (((type) & (PSA_KEY_TYPE_CATEGORY_MASK | PSA_KEY_TYPE_PAIR_FLAG) == \
379 PSA_KEY_TYPE_CATEGORY_ASYMMETRIC))
Gilles Peskine06dc2632018-03-08 07:47:25 +0100380/** Whether a key type is a key pair containing a private part and a public
381 * part. */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100382#define PSA_KEY_TYPE_IS_KEYPAIR(type) \
383 (((type) & (PSA_KEY_TYPE_CATEGORY_MASK | PSA_KEY_TYPE_PAIR_FLAG)) == \
384 (PSA_KEY_TYPE_CATEGORY_ASYMMETRIC | PSA_KEY_TYPE_PAIR_FLAG))
Gilles Peskine06dc2632018-03-08 07:47:25 +0100385/** Whether a key type is an RSA key pair or public key. */
386/** The key pair type corresponding to a public key type. */
387#define PSA_KEY_TYPE_KEYPAIR_OF_PUBLIC_KEY(type) \
388 ((type) | PSA_KEY_TYPE_PAIR_FLAG)
389/** The public key type corresponding to a key pair type. */
390#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) \
391 ((type) & ~PSA_KEY_TYPE_PAIR_FLAG)
Gilles Peskine0189e752018-02-03 23:57:22 +0100392#define PSA_KEY_TYPE_IS_RSA(type) \
Gilles Peskine06dc2632018-03-08 07:47:25 +0100393 (PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY)
394/** Whether a key type is an elliptic curve key pair or public key. */
Gilles Peskinec66ea6a2018-02-03 22:43:28 +0100395#define PSA_KEY_TYPE_IS_ECC(type) \
Gilles Peskine06dc2632018-03-08 07:47:25 +0100396 ((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) & \
397 ~PSA_KEY_TYPE_ECC_CURVE_MASK) == PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE)
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100398
Gilles Peskine7e198532018-03-08 07:50:30 +0100399/** The block size of a block cipher.
400 *
401 * \param type A cipher key type (value of type #psa_key_type_t).
402 *
403 * \return The block size for a block cipher, or 1 for a stream cipher.
Gilles Peskine35855962018-04-19 08:39:16 +0200404 * The return value is undefined if \c type is not a supported
405 * cipher key type.
406 *
407 * \note It is possible to build stream cipher algorithms on top of a block
408 * cipher, for example CTR mode (#PSA_ALG_CTR).
409 * This macro only takes the key type into account, so it cannot be
410 * used to determine the size of the data that #psa_cipher_update()
411 * might buffer for future processing in general.
Gilles Peskine7e198532018-03-08 07:50:30 +0100412 *
413 * \note This macro returns a compile-time constant if its argument is one.
414 *
415 * \warning This macro may evaluate its argument multiple times.
416 */
Gilles Peskine03182e92018-03-07 16:40:52 +0100417#define PSA_BLOCK_CIPHER_BLOCK_SIZE(type) \
Gilles Peskine8c9def32018-02-08 10:02:12 +0100418 ( \
419 (type) == PSA_KEY_TYPE_AES ? 16 : \
420 (type) == PSA_KEY_TYPE_DES ? 8 : \
421 (type) == PSA_KEY_TYPE_CAMELLIA ? 16 : \
Gilles Peskine7e198532018-03-08 07:50:30 +0100422 (type) == PSA_KEY_TYPE_ARC4 ? 1 : \
Gilles Peskine8c9def32018-02-08 10:02:12 +0100423 0)
424
Gilles Peskine308b91d2018-02-08 09:47:44 +0100425/** \brief Encoding of a cryptographic algorithm.
426 *
427 * For algorithms that can be applied to multiple key types, this type
428 * does not encode the key type. For example, for symmetric ciphers
429 * based on a block cipher, #psa_algorithm_t encodes the block cipher
430 * mode and the padding mode while the block cipher itself is encoded
431 * via #psa_key_type_t.
432 */
Gilles Peskine20035e32018-02-03 22:44:14 +0100433typedef uint32_t psa_algorithm_t;
434
Gilles Peskine98f0a242018-02-06 18:57:29 +0100435#define PSA_ALG_VENDOR_FLAG ((psa_algorithm_t)0x80000000)
436#define PSA_ALG_CATEGORY_MASK ((psa_algorithm_t)0x7f000000)
437#define PSA_ALG_CATEGORY_HASH ((psa_algorithm_t)0x01000000)
438#define PSA_ALG_CATEGORY_MAC ((psa_algorithm_t)0x02000000)
439#define PSA_ALG_CATEGORY_CIPHER ((psa_algorithm_t)0x04000000)
440#define PSA_ALG_CATEGORY_AEAD ((psa_algorithm_t)0x06000000)
441#define PSA_ALG_CATEGORY_SIGN ((psa_algorithm_t)0x10000000)
442#define PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION ((psa_algorithm_t)0x12000000)
443#define PSA_ALG_CATEGORY_KEY_AGREEMENT ((psa_algorithm_t)0x22000000)
444#define PSA_ALG_CATEGORY_KEY_DERIVATION ((psa_algorithm_t)0x30000000)
Gilles Peskine20035e32018-02-03 22:44:14 +0100445
Gilles Peskine98f0a242018-02-06 18:57:29 +0100446#define PSA_ALG_IS_VENDOR_DEFINED(alg) \
447 (((alg) & PSA_ALG_VENDOR_FLAG) != 0)
Gilles Peskine308b91d2018-02-08 09:47:44 +0100448/** Whether the specified algorithm is a hash algorithm.
449 *
Gilles Peskine7e198532018-03-08 07:50:30 +0100450 * \param alg An algorithm identifier (value of type #psa_algorithm_t).
Gilles Peskine308b91d2018-02-08 09:47:44 +0100451 *
452 * \return 1 if \c alg is a hash algorithm, 0 otherwise.
453 * This macro may return either 0 or 1 if \c alg is not a valid
Gilles Peskine7e198532018-03-08 07:50:30 +0100454 * algorithm identifier.
455 */
Gilles Peskine98f0a242018-02-06 18:57:29 +0100456#define PSA_ALG_IS_HASH(alg) \
457 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_HASH)
458#define PSA_ALG_IS_MAC(alg) \
459 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_MAC)
460#define PSA_ALG_IS_CIPHER(alg) \
461 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_CIPHER)
462#define PSA_ALG_IS_AEAD(alg) \
463 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_AEAD)
464#define PSA_ALG_IS_SIGN(alg) \
465 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_SIGN)
466#define PSA_ALG_IS_ASYMMETRIC_ENCRYPTION(alg) \
467 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION)
468#define PSA_ALG_IS_KEY_AGREEMENT(alg) \
469 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_AGREEMENT)
470#define PSA_ALG_IS_KEY_DERIVATION(alg) \
471 (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_DERIVATION)
472
473#define PSA_ALG_HASH_MASK ((psa_algorithm_t)0x000000ff)
474#define PSA_ALG_MD2 ((psa_algorithm_t)0x01000001)
475#define PSA_ALG_MD4 ((psa_algorithm_t)0x01000002)
476#define PSA_ALG_MD5 ((psa_algorithm_t)0x01000003)
Gilles Peskinee3f694f2018-03-08 07:48:40 +0100477#define PSA_ALG_RIPEMD160 ((psa_algorithm_t)0x01000004)
478#define PSA_ALG_SHA_1 ((psa_algorithm_t)0x01000005)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100479#define PSA_ALG_SHA_224 ((psa_algorithm_t)0x01000008)
480#define PSA_ALG_SHA_256 ((psa_algorithm_t)0x01000009)
481#define PSA_ALG_SHA_384 ((psa_algorithm_t)0x0100000a)
482#define PSA_ALG_SHA_512 ((psa_algorithm_t)0x0100000b)
483#define PSA_ALG_SHA_512_224 ((psa_algorithm_t)0x0100000c)
484#define PSA_ALG_SHA_512_256 ((psa_algorithm_t)0x0100000d)
485#define PSA_ALG_SHA3_224 ((psa_algorithm_t)0x01000010)
486#define PSA_ALG_SHA3_256 ((psa_algorithm_t)0x01000011)
487#define PSA_ALG_SHA3_384 ((psa_algorithm_t)0x01000012)
488#define PSA_ALG_SHA3_512 ((psa_algorithm_t)0x01000013)
489
Gilles Peskine8c9def32018-02-08 10:02:12 +0100490#define PSA_ALG_MAC_SUBCATEGORY_MASK ((psa_algorithm_t)0x00c00000)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100491#define PSA_ALG_HMAC_BASE ((psa_algorithm_t)0x02800000)
Gilles Peskine35855962018-04-19 08:39:16 +0200492/** Macro to build an HMAC algorithm.
493 *
494 * For example, `PSA_ALG_HMAC(PSA_ALG_SHA256)` is HMAC-SHA-256.
495 *
496 * \param alg A hash algorithm (\c PSA_ALG_XXX value such that
497 * #PSA_ALG_IS_HASH(alg) is true).
498 *
499 * \return The corresponding HMAC algorithm.
500 * \return Unspecified if \p alg is not a hash algorithm.
501 */
502#define PSA_ALG_HMAC(hash_alg) \
Gilles Peskine8c9def32018-02-08 10:02:12 +0100503 (PSA_ALG_HMAC_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
504#define PSA_ALG_HMAC_HASH(hmac_alg) \
505 (PSA_ALG_CATEGORY_HASH | ((hmac_alg) & PSA_ALG_HASH_MASK))
506#define PSA_ALG_IS_HMAC(alg) \
507 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
508 PSA_ALG_HMAC_BASE)
509#define PSA_ALG_CIPHER_MAC_BASE ((psa_algorithm_t)0x02c00000)
510#define PSA_ALG_CBC_MAC ((psa_algorithm_t)0x02c00001)
511#define PSA_ALG_CMAC ((psa_algorithm_t)0x02c00002)
512#define PSA_ALG_GMAC ((psa_algorithm_t)0x02c00003)
513#define PSA_ALG_IS_CIPHER_MAC(alg) \
514 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
515 PSA_ALG_CIPHER_MAC_BASE)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100516
Gilles Peskine8c9def32018-02-08 10:02:12 +0100517#define PSA_ALG_CIPHER_SUBCATEGORY_MASK ((psa_algorithm_t)0x00c00000)
Gilles Peskine428dc5a2018-03-03 21:27:18 +0100518#define PSA_ALG_BLOCK_CIPHER_BASE ((psa_algorithm_t)0x04000000)
Gilles Peskine8c9def32018-02-08 10:02:12 +0100519#define PSA_ALG_BLOCK_CIPHER_MODE_MASK ((psa_algorithm_t)0x000000ff)
Gilles Peskine428dc5a2018-03-03 21:27:18 +0100520#define PSA_ALG_BLOCK_CIPHER_PADDING_MASK ((psa_algorithm_t)0x003f0000)
521#define PSA_ALG_BLOCK_CIPHER_PAD_NONE ((psa_algorithm_t)0x00000000)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100522#define PSA_ALG_BLOCK_CIPHER_PAD_PKCS7 ((psa_algorithm_t)0x00010000)
Gilles Peskine8c9def32018-02-08 10:02:12 +0100523#define PSA_ALG_IS_BLOCK_CIPHER(alg) \
524 (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_CIPHER_SUBCATEGORY_MASK)) == \
525 PSA_ALG_BLOCK_CIPHER_BASE)
526
Gilles Peskine98f0a242018-02-06 18:57:29 +0100527#define PSA_ALG_CBC_BASE ((psa_algorithm_t)0x04000001)
Gilles Peskine8c9def32018-02-08 10:02:12 +0100528#define PSA_ALG_CFB_BASE ((psa_algorithm_t)0x04000002)
529#define PSA_ALG_OFB_BASE ((psa_algorithm_t)0x04000003)
530#define PSA_ALG_XTS_BASE ((psa_algorithm_t)0x04000004)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100531#define PSA_ALG_STREAM_CIPHER ((psa_algorithm_t)0x04800000)
532#define PSA_ALG_CTR ((psa_algorithm_t)0x04800001)
Gilles Peskine8c9def32018-02-08 10:02:12 +0100533#define PSA_ALG_ARC4 ((psa_algorithm_t)0x04800002)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100534
Gilles Peskine8c9def32018-02-08 10:02:12 +0100535#define PSA_ALG_CCM ((psa_algorithm_t)0x06000001)
536#define PSA_ALG_GCM ((psa_algorithm_t)0x06000002)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100537
Gilles Peskinea5926232018-03-28 14:16:50 +0200538#define PSA_ALG_RSA_PKCS1V15_SIGN_RAW ((psa_algorithm_t)0x10010000)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100539#define PSA_ALG_RSA_PSS_MGF1 ((psa_algorithm_t)0x10020000)
Gilles Peskine6944f9a2018-03-28 14:18:39 +0200540#define PSA_ALG_RSA_PKCS1V15_CRYPT ((psa_algorithm_t)0x12010000)
541#define PSA_ALG_RSA_OAEP_MGF1_BASE ((psa_algorithm_t)0x12020000)
Gilles Peskinea5926232018-03-28 14:16:50 +0200542#define PSA_ALG_RSA_PKCS1V15_SIGN(hash_alg) \
543 (PSA_ALG_RSA_PKCS1V15_SIGN_RAW | ((hash_alg) & PSA_ALG_HASH_MASK))
544#define PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) \
545 (((alg) & 0x7fffff00) == PSA_ALG_RSA_PKCS1V15_SIGN_RAW)
Gilles Peskine98f0a242018-02-06 18:57:29 +0100546#define PSA_ALG_RSA_GET_HASH(alg) \
547 (((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH)
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100548
549/**@}*/
550
551/** \defgroup key_management Key management
552 * @{
553 */
554
555/**
556 * \brief Import a key in binary format.
557 *
Gilles Peskinef5b9fa12018-03-07 16:40:18 +0100558 * This function supports any output from psa_export_key(). Refer to the
559 * documentation of psa_export_key() for the format for each key type.
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100560 *
Gilles Peskine308b91d2018-02-08 09:47:44 +0100561 * \param key Slot where the key will be stored. This must be a
562 * valid slot for a key of the chosen type. It must
563 * be unoccupied.
564 * \param type Key type (a \c PSA_KEY_TYPE_XXX value).
565 * \param data Buffer containing the key data.
566 * \param data_length Size of the \c data buffer in bytes.
567 *
568 * \retval PSA_SUCCESS
569 * Success.
570 * \retval PSA_ERROR_NOT_SUPPORTED
Gilles Peskine65eb8582018-04-19 08:28:58 +0200571 * The key type or key size is not supported, either by the
572 * implementation in general or in this particular slot.
Gilles Peskine308b91d2018-02-08 09:47:44 +0100573 * \retval PSA_ERROR_INVALID_ARGUMENT
574 * The key slot is invalid,
575 * or the key data is not correctly formatted.
576 * \retval PSA_ERROR_OCCUPIED_SLOT
Gilles Peskine65eb8582018-04-19 08:28:58 +0200577 * There is already a key in the specified slot.
Gilles Peskine308b91d2018-02-08 09:47:44 +0100578 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
Gilles Peskine65eb8582018-04-19 08:28:58 +0200579 * \retval PSA_ERROR_INSUFFICIENT_STORAGE
Gilles Peskine308b91d2018-02-08 09:47:44 +0100580 * \retval PSA_ERROR_COMMUNICATION_FAILURE
581 * \retval PSA_ERROR_HARDWARE_FAILURE
582 * \retval PSA_ERROR_TAMPERING_DETECTED
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100583 */
584psa_status_t psa_import_key(psa_key_slot_t key,
585 psa_key_type_t type,
586 const uint8_t *data,
587 size_t data_length);
588
589/**
Gilles Peskine154bd952018-04-19 08:38:16 +0200590 * \brief Destroy a key and restore the slot to its default state.
591 *
592 * This function destroys the content of the key slot from both volatile
593 * memory and, if applicable, non-volatile storage. Implementations shall
594 * make a best effort to ensure that any previous content of the slot is
595 * unrecoverable.
596 *
597 * This function also erases any metadata such as policies. It returns the
598 * specified slot to its default state.
599 *
600 * \param key The key slot to erase.
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100601 *
Gilles Peskine308b91d2018-02-08 09:47:44 +0100602 * \retval PSA_SUCCESS
Gilles Peskine65eb8582018-04-19 08:28:58 +0200603 * The slot's content, if any, has been erased.
604 * \retval PSA_ERROR_NOT_PERMITTED
605 * The slot holds content and cannot be erased because it is
606 * read-only, either due to a policy or due to physical restrictions.
607 * \retval PSA_ERROR_INVALID_ARGUMENT
608 * The specified slot number does not designate a valid slot.
Gilles Peskine308b91d2018-02-08 09:47:44 +0100609 * \retval PSA_ERROR_COMMUNICATION_FAILURE
Gilles Peskine65eb8582018-04-19 08:28:58 +0200610 * There was an failure in communication with the cryptoprocessor.
611 * The key material may still be present in the cryptoprocessor.
612 * \retval PSA_ERROR_STORAGE_FAILURE
613 * The storage is corrupted. Implementations shall make a best effort
614 * to erase key material even in this stage, however applications
615 * should be aware that it may be impossible to guarantee that the
616 * key material is not recoverable in such cases.
Gilles Peskine308b91d2018-02-08 09:47:44 +0100617 * \retval PSA_ERROR_TAMPERING_DETECTED
Gilles Peskine65eb8582018-04-19 08:28:58 +0200618 * An unexpected condition which is not a storage corruption or
619 * a communication failure occurred. The cryptoprocessor may have
620 * been compromised.
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100621 */
622psa_status_t psa_destroy_key(psa_key_slot_t key);
623
624/**
625 * \brief Get basic metadata about a key.
626 *
Gilles Peskine308b91d2018-02-08 09:47:44 +0100627 * \param key Slot whose content is queried. This must
628 * be an occupied key slot.
629 * \param type On success, the key type (a \c PSA_KEY_TYPE_XXX value).
630 * This may be a null pointer, in which case the key type
631 * is not written.
632 * \param bits On success, the key size in bits.
Gilles Peskine9a1ba0d2018-03-21 20:49:16 +0100633 * This may be a null pointer, in which case the key size
Gilles Peskine308b91d2018-02-08 09:47:44 +0100634 * is not written.
635 *
636 * \retval PSA_SUCCESS
637 * \retval PSA_ERROR_EMPTY_SLOT
638 * \retval PSA_ERROR_COMMUNICATION_FAILURE
639 * \retval PSA_ERROR_HARDWARE_FAILURE
640 * \retval PSA_ERROR_TAMPERING_DETECTED
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100641 */
642psa_status_t psa_get_key_information(psa_key_slot_t key,
643 psa_key_type_t *type,
644 size_t *bits);
645
646/**
647 * \brief Export a key in binary format.
648 *
649 * The output of this function can be passed to psa_import_key() to
650 * create an equivalent object.
651 *
652 * If a key is created with psa_import_key() and then exported with
653 * this function, it is not guaranteed that the resulting data is
654 * identical: the implementation may choose a different representation
Gilles Peskine92b30732018-03-03 21:29:30 +0100655 * of the same key if the format permits it.
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100656 *
Gilles Peskine308b91d2018-02-08 09:47:44 +0100657 * For standard key types, the output format is as follows:
658 *
659 * - For symmetric keys (including MAC keys), the format is the
660 * raw bytes of the key.
661 * - For DES, the key data consists of 8 bytes. The parity bits must be
662 * correct.
663 * - For Triple-DES, the format is the concatenation of the
664 * two or three DES keys.
Gilles Peskine92b30732018-03-03 21:29:30 +0100665 * - For RSA key pairs (#PSA_KEY_TYPE_RSA_KEYPAIR), the format
Gilles Peskine308b91d2018-02-08 09:47:44 +0100666 * is the non-encrypted DER representation defined by PKCS\#8 (RFC 5208)
667 * as PrivateKeyInfo.
668 * - For RSA public keys (#PSA_KEY_TYPE_RSA_PUBLIC_KEY), the format
Gilles Peskine971f7062018-03-20 17:52:58 +0100669 * is the DER representation defined by RFC 5280 as SubjectPublicKeyInfo.
Gilles Peskine308b91d2018-02-08 09:47:44 +0100670 *
671 * \param key Slot whose content is to be exported. This must
672 * be an occupied key slot.
673 * \param data Buffer where the key data is to be written.
674 * \param data_size Size of the \c data buffer in bytes.
675 * \param data_length On success, the number of bytes
676 * that make up the key data.
677 *
678 * \retval PSA_SUCCESS
679 * \retval PSA_ERROR_EMPTY_SLOT
Gilles Peskine92b30732018-03-03 21:29:30 +0100680 * \retval PSA_ERROR_NOT_PERMITTED
Gilles Peskine308b91d2018-02-08 09:47:44 +0100681 * \retval PSA_ERROR_COMMUNICATION_FAILURE
682 * \retval PSA_ERROR_HARDWARE_FAILURE
683 * \retval PSA_ERROR_TAMPERING_DETECTED
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +0100684 */
685psa_status_t psa_export_key(psa_key_slot_t key,
686 uint8_t *data,
687 size_t data_size,
688 size_t *data_length);
689
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100690/**
691 * \brief Export a public key or the public part of a key pair in binary format.
692 *
693 * The output of this function can be passed to psa_import_key() to
694 * create an object that is equivalent to the public key.
695 *
696 * For standard key types, the output format is as follows:
697 *
698 * - For RSA keys (#PSA_KEY_TYPE_RSA_KEYPAIR or #PSA_KEY_TYPE_RSA_PUBLIC_KEY),
Gilles Peskine971f7062018-03-20 17:52:58 +0100699 * is the DER representation of the public key defined by RFC 5280
700 * as SubjectPublicKeyInfo.
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100701 *
702 * \param key Slot whose content is to be exported. This must
703 * be an occupied key slot.
704 * \param data Buffer where the key data is to be written.
705 * \param data_size Size of the \c data buffer in bytes.
706 * \param data_length On success, the number of bytes
707 * that make up the key data.
708 *
709 * \retval PSA_SUCCESS
710 * \retval PSA_ERROR_EMPTY_SLOT
711 * \retval PSA_ERROR_INVALID_ARGUMENT
712 * \retval PSA_ERROR_COMMUNICATION_FAILURE
713 * \retval PSA_ERROR_HARDWARE_FAILURE
714 * \retval PSA_ERROR_TAMPERING_DETECTED
715 */
716psa_status_t psa_export_public_key(psa_key_slot_t key,
717 uint8_t *data,
718 size_t data_size,
719 size_t *data_length);
720
721/**@}*/
722
723/** \defgroup policy Key policies
724 * @{
725 */
726
727/** \brief Encoding of permitted usage on a key. */
728typedef uint32_t psa_key_usage_t;
729
Gilles Peskine7e198532018-03-08 07:50:30 +0100730/** Whether the key may be exported.
731 *
732 * A public key or the public part of a key pair may always be exported
733 * regardless of the value of this permission flag.
734 *
735 * If a key does not have export permission, implementations shall not
736 * allow the key to be exported in plain form from the cryptoprocessor,
737 * whether through psa_export_key() or through a proprietary interface.
738 * The key may however be exportable in a wrapped form, i.e. in a form
739 * where it is encrypted by another key.
740 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100741#define PSA_KEY_USAGE_EXPORT ((psa_key_usage_t)0x00000001)
742
Gilles Peskine7e198532018-03-08 07:50:30 +0100743/** Whether the key may be used to encrypt a message.
744 *
745 * For a key pair, this concerns the public key.
746 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100747#define PSA_KEY_USAGE_ENCRYPT ((psa_key_usage_t)0x00000100)
Gilles Peskine7e198532018-03-08 07:50:30 +0100748
749/** Whether the key may be used to decrypt a message.
750 *
751 * For a key pair, this concerns the private key.
752 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100753#define PSA_KEY_USAGE_DECRYPT ((psa_key_usage_t)0x00000200)
Gilles Peskine7e198532018-03-08 07:50:30 +0100754
755/** Whether the key may be used to sign a message.
756 *
757 * For a key pair, this concerns the private key.
758 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100759#define PSA_KEY_USAGE_SIGN ((psa_key_usage_t)0x00000400)
Gilles Peskine7e198532018-03-08 07:50:30 +0100760
761/** Whether the key may be used to verify a message signature.
762 *
763 * For a key pair, this concerns the public key.
764 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100765#define PSA_KEY_USAGE_VERIFY ((psa_key_usage_t)0x00000800)
766
767/** The type of the key policy data structure.
768 *
769 * This is an implementation-defined \c struct. Applications should not
770 * make any assumptions about the content of this structure except
771 * as directed by the documentation of a specific implementation. */
772typedef struct psa_key_policy_s psa_key_policy_t;
773
774/** \brief Initialize a key policy structure to a default that forbids all
775 * usage of the key. */
776void psa_key_policy_init(psa_key_policy_t *policy);
777
Gilles Peskine7e198532018-03-08 07:50:30 +0100778/** \brief Set the standard fields of a policy structure.
779 *
780 * Note that this function does not make any consistency check of the
781 * parameters. The values are only checked when applying the policy to
782 * a key slot with psa_set_key_policy().
783 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100784void psa_key_policy_set_usage(psa_key_policy_t *policy,
785 psa_key_usage_t usage,
786 psa_algorithm_t alg);
787
788psa_key_usage_t psa_key_policy_get_usage(psa_key_policy_t *policy);
789
790psa_algorithm_t psa_key_policy_get_algorithm(psa_key_policy_t *policy);
791
792/** \brief Set the usage policy on a key slot.
793 *
794 * This function must be called on an empty key slot, before importing,
795 * generating or creating a key in the slot. Changing the policy of an
796 * existing key is not permitted.
Gilles Peskine7e198532018-03-08 07:50:30 +0100797 *
798 * Implementations may set restrictions on supported key policies
799 * depending on the key type and the key slot.
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100800 */
801psa_status_t psa_set_key_policy(psa_key_slot_t key,
802 const psa_key_policy_t *policy);
803
Gilles Peskine7e198532018-03-08 07:50:30 +0100804/** \brief Get the usage policy for a key slot.
805 */
Gilles Peskine7698bcf2018-03-03 21:30:44 +0100806psa_status_t psa_get_key_policy(psa_key_slot_t key,
807 psa_key_policy_t *policy);
Gilles Peskine20035e32018-02-03 22:44:14 +0100808
809/**@}*/
810
Gilles Peskine609b6a52018-03-03 21:31:50 +0100811/** \defgroup persistence Key lifetime
812 * @{
813 */
814
815/** Encoding of key lifetimes.
816 */
817typedef uint32_t psa_key_lifetime_t;
818
819/** A volatile key slot retains its content as long as the application is
820 * running. It is guaranteed to be erased on a power reset.
821 */
822#define PSA_KEY_LIFETIME_VOLATILE ((psa_key_lifetime_t)0x00000000)
823
824/** A persistent key slot retains its content as long as it is not explicitly
825 * destroyed.
826 */
827#define PSA_KEY_LIFETIME_PERSISTENT ((psa_key_lifetime_t)0x00000001)
828
829/** A write-once key slot may not be modified once a key has been set.
830 * It will retain its content as long as the device remains operational.
831 */
832#define PSA_KEY_LIFETIME_WRITE_ONCE ((psa_key_lifetime_t)0x7fffffff)
833
Gilles Peskined393e182018-03-08 07:49:16 +0100834/** \brief Retrieve the lifetime of a key slot.
835 *
836 * The assignment of lifetimes to slots is implementation-dependent.
837 */
Gilles Peskine609b6a52018-03-03 21:31:50 +0100838psa_status_t psa_get_key_lifetime(psa_key_slot_t key,
839 psa_key_lifetime_t *lifetime);
840
Gilles Peskined393e182018-03-08 07:49:16 +0100841/** \brief Change the lifetime of a key slot.
842 *
843 * Whether the lifetime of a key slot can be changed at all, and if so
Gilles Peskine19067982018-03-20 17:54:53 +0100844 * whether the lifetime of an occupied key slot can be changed, is
Gilles Peskined393e182018-03-08 07:49:16 +0100845 * implementation-dependent.
846 */
847psa_status_t psa_set_key_lifetime(psa_key_slot_t key,
848 const psa_key_lifetime_t *lifetime);
849
Gilles Peskine609b6a52018-03-03 21:31:50 +0100850/**@}*/
851
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100852/** \defgroup hash Message digests
853 * @{
854 */
855
Gilles Peskine308b91d2018-02-08 09:47:44 +0100856/** The type of the state data structure for multipart hash operations.
857 *
Gilles Peskine92b30732018-03-03 21:29:30 +0100858 * This is an implementation-defined \c struct. Applications should not
Gilles Peskine308b91d2018-02-08 09:47:44 +0100859 * make any assumptions about the content of this structure except
860 * as directed by the documentation of a specific implementation. */
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100861typedef struct psa_hash_operation_s psa_hash_operation_t;
862
Gilles Peskine308b91d2018-02-08 09:47:44 +0100863/** The size of the output of psa_hash_finish(), in bytes.
864 *
865 * This is also the hash size that psa_hash_verify() expects.
866 *
867 * \param alg A hash algorithm (\c PSA_ALG_XXX value such that
Gilles Peskine35855962018-04-19 08:39:16 +0200868 * #PSA_ALG_IS_HASH(alg) is true), or an HMAC algorithm
869 * (`PSA_ALG_HMAC(hash_alg)` where `hash_alg` is a
870 * hash algorithm).
Gilles Peskine308b91d2018-02-08 09:47:44 +0100871 *
872 * \return The hash size for the specified hash algorithm.
873 * If the hash algorithm is not recognized, return 0.
874 * An implementation may return either 0 or the correct size
875 * for a hash algorithm that it recognizes, but does not support.
876 */
Gilles Peskine71bb7b72018-04-19 08:29:59 +0200877#define PSA_HASH_SIZE(alg) \
878 ( \
879 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_MD2 ? 16 : \
880 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_MD4 ? 16 : \
881 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_MD5 ? 16 : \
882 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_RIPEMD160 ? 20 : \
883 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_1 ? 20 : \
884 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_224 ? 28 : \
885 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_256 ? 32 : \
886 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_384 ? 48 : \
887 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_512 ? 64 : \
888 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_512_224 ? 28 : \
889 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA_512_256 ? 32 : \
890 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA3_224 ? 28 : \
891 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA3_256 ? 32 : \
892 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA3_384 ? 48 : \
893 PSA_ALG_RSA_GET_HASH(alg) == PSA_ALG_SHA3_512 ? 64 : \
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100894 0)
895
Gilles Peskine308b91d2018-02-08 09:47:44 +0100896/** Start a multipart hash operation.
897 *
898 * The sequence of operations to calculate a hash (message digest)
899 * is as follows:
900 * -# Allocate an operation object which will be passed to all the functions
901 * listed here.
902 * -# Call psa_hash_start() to specify the algorithm.
Gilles Peskine7e4acc52018-02-16 21:24:11 +0100903 * -# Call psa_hash_update() zero, one or more times, passing a fragment
Gilles Peskine308b91d2018-02-08 09:47:44 +0100904 * of the message each time. The hash that is calculated is the hash
905 * of the concatenation of these messages in order.
906 * -# To calculate the hash, call psa_hash_finish().
907 * To compare the hash with an expected value, call psa_hash_verify().
908 *
909 * The application may call psa_hash_abort() at any time after the operation
910 * has been initialized with psa_hash_start().
911 *
912 * After a successful call to psa_hash_start(), the application must
Gilles Peskineed522972018-03-20 17:54:15 +0100913 * eventually terminate the operation. The following events terminate an
914 * operation:
Gilles Peskine308b91d2018-02-08 09:47:44 +0100915 * - A failed call to psa_hash_update().
Gilles Peskine19067982018-03-20 17:54:53 +0100916 * - A call to psa_hash_finish(), psa_hash_verify() or psa_hash_abort().
Gilles Peskine308b91d2018-02-08 09:47:44 +0100917 *
918 * \param operation
919 * \param alg The hash algorithm to compute (\c PSA_ALG_XXX value
920 * such that #PSA_ALG_IS_HASH(alg) is true).
921 *
922 * \retval PSA_SUCCESS
923 * Success.
924 * \retval PSA_ERROR_NOT_SUPPORTED
925 * \c alg is not supported or is not a hash algorithm.
926 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
927 * \retval PSA_ERROR_COMMUNICATION_FAILURE
928 * \retval PSA_ERROR_HARDWARE_FAILURE
929 * \retval PSA_ERROR_TAMPERING_DETECTED
930 */
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100931psa_status_t psa_hash_start(psa_hash_operation_t *operation,
932 psa_algorithm_t alg);
933
Gilles Peskine308b91d2018-02-08 09:47:44 +0100934/** Add a message fragment to a multipart hash operation.
935 *
936 * The application must call psa_hash_start() before calling this function.
937 *
938 * If this function returns an error status, the operation becomes inactive.
939 *
940 * \param operation Active hash operation.
941 * \param input Buffer containing the message fragment to hash.
942 * \param input_length Size of the \c input buffer in bytes.
943 *
944 * \retval PSA_SUCCESS
945 * Success.
946 * \retval PSA_ERROR_BAD_STATE
947 * The operation state is not valid (not started, or already completed).
948 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
949 * \retval PSA_ERROR_COMMUNICATION_FAILURE
950 * \retval PSA_ERROR_HARDWARE_FAILURE
951 * \retval PSA_ERROR_TAMPERING_DETECTED
952 */
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100953psa_status_t psa_hash_update(psa_hash_operation_t *operation,
954 const uint8_t *input,
955 size_t input_length);
956
Gilles Peskine308b91d2018-02-08 09:47:44 +0100957/** Finish the calculation of the hash of a message.
958 *
959 * The application must call psa_hash_start() before calling this function.
960 * This function calculates the hash of the message formed by concatenating
961 * the inputs passed to preceding calls to psa_hash_update().
962 *
963 * When this function returns, the operation becomes inactive.
964 *
965 * \warning Applications should not call this function if they expect
966 * a specific value for the hash. Call psa_hash_verify() instead.
967 * Beware that comparing integrity or authenticity data such as
968 * hash values with a function such as \c memcmp is risky
969 * because the time taken by the comparison may leak information
970 * about the hashed data which could allow an attacker to guess
971 * a valid hash and thereby bypass security controls.
972 *
973 * \param operation Active hash operation.
974 * \param hash Buffer where the hash is to be written.
975 * \param hash_size Size of the \c hash buffer in bytes.
976 * \param hash_length On success, the number of bytes
977 * that make up the hash value. This is always
Gilles Peskine71bb7b72018-04-19 08:29:59 +0200978 * #PSA_HASH_SIZE(alg) where \c alg is the
Gilles Peskine308b91d2018-02-08 09:47:44 +0100979 * hash algorithm that is calculated.
980 *
981 * \retval PSA_SUCCESS
982 * Success.
983 * \retval PSA_ERROR_BAD_STATE
984 * The operation state is not valid (not started, or already completed).
985 * \retval PSA_ERROR_BUFFER_TOO_SMALL
986 * The size of the \c hash buffer is too small. You can determine a
Gilles Peskine71bb7b72018-04-19 08:29:59 +0200987 * sufficient buffer size by calling #PSA_HASH_SIZE(alg)
Gilles Peskine308b91d2018-02-08 09:47:44 +0100988 * where \c alg is the hash algorithm that is calculated.
989 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
990 * \retval PSA_ERROR_COMMUNICATION_FAILURE
991 * \retval PSA_ERROR_HARDWARE_FAILURE
992 * \retval PSA_ERROR_TAMPERING_DETECTED
993 */
Gilles Peskine9ef733f2018-02-07 21:05:37 +0100994psa_status_t psa_hash_finish(psa_hash_operation_t *operation,
995 uint8_t *hash,
996 size_t hash_size,
997 size_t *hash_length);
998
Gilles Peskine308b91d2018-02-08 09:47:44 +0100999/** Finish the calculation of the hash of a message and compare it with
1000 * an expected value.
1001 *
1002 * The application must call psa_hash_start() before calling this function.
1003 * This function calculates the hash of the message formed by concatenating
1004 * the inputs passed to preceding calls to psa_hash_update(). It then
1005 * compares the calculated hash with the expected hash passed as a
1006 * parameter to this function.
1007 *
1008 * When this function returns, the operation becomes inactive.
1009 *
Gilles Peskine19067982018-03-20 17:54:53 +01001010 * \note Implementations shall make the best effort to ensure that the
Gilles Peskine308b91d2018-02-08 09:47:44 +01001011 * comparison between the actual hash and the expected hash is performed
1012 * in constant time.
1013 *
1014 * \param operation Active hash operation.
1015 * \param hash Buffer containing the expected hash value.
1016 * \param hash_length Size of the \c hash buffer in bytes.
1017 *
1018 * \retval PSA_SUCCESS
1019 * The expected hash is identical to the actual hash of the message.
1020 * \retval PSA_ERROR_INVALID_SIGNATURE
1021 * The hash of the message was calculated successfully, but it
1022 * differs from the expected hash.
1023 * \retval PSA_ERROR_BAD_STATE
1024 * The operation state is not valid (not started, or already completed).
1025 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1026 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1027 * \retval PSA_ERROR_HARDWARE_FAILURE
1028 * \retval PSA_ERROR_TAMPERING_DETECTED
1029 */
Gilles Peskine9ef733f2018-02-07 21:05:37 +01001030psa_status_t psa_hash_verify(psa_hash_operation_t *operation,
1031 const uint8_t *hash,
1032 size_t hash_length);
1033
Gilles Peskine308b91d2018-02-08 09:47:44 +01001034/** Abort a hash operation.
1035 *
1036 * This function may be called at any time after psa_hash_start().
1037 * Aborting an operation frees all associated resources except for the
1038 * \c operation structure itself.
1039 *
1040 * Implementation should strive to be robust and handle inactive hash
1041 * operations safely (do nothing and return #PSA_ERROR_BAD_STATE). However,
1042 * application writers should beware that uninitialized memory may happen
1043 * to be indistinguishable from an active hash operation, and the behavior
1044 * of psa_hash_abort() is undefined in this case.
1045 *
1046 * \param operation Active hash operation.
1047 *
1048 * \retval PSA_SUCCESS
1049 * \retval PSA_ERROR_BAD_STATE
1050 * \c operation is not an active hash operation.
1051 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1052 * \retval PSA_ERROR_HARDWARE_FAILURE
1053 * \retval PSA_ERROR_TAMPERING_DETECTED
1054 */
1055psa_status_t psa_hash_abort(psa_hash_operation_t *operation);
Gilles Peskine9ef733f2018-02-07 21:05:37 +01001056
1057/**@}*/
1058
Gilles Peskine8c9def32018-02-08 10:02:12 +01001059/** \defgroup MAC Message authentication codes
1060 * @{
1061 */
1062
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001063/** The type of the state data structure for multipart MAC operations.
1064 *
Gilles Peskine92b30732018-03-03 21:29:30 +01001065 * This is an implementation-defined \c struct. Applications should not
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001066 * make any assumptions about the content of this structure except
1067 * as directed by the documentation of a specific implementation. */
Gilles Peskine8c9def32018-02-08 10:02:12 +01001068typedef struct psa_mac_operation_s psa_mac_operation_t;
1069
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001070/** The size of the output of psa_mac_finish(), in bytes.
1071 *
1072 * This is also the MAC size that psa_mac_verify() expects.
1073 *
1074 * \param alg A MAC algorithm (\c PSA_ALG_XXX value such that
1075 * #PSA_ALG_IS_MAC(alg) is true).
1076 *
1077 * \return The MAC size for the specified algorithm.
1078 * If the MAC algorithm is not recognized, return 0.
1079 * An implementation may return either 0 or the correct size
1080 * for a MAC algorithm that it recognizes, but does not support.
1081 */
Gilles Peskine8c9def32018-02-08 10:02:12 +01001082#define PSA_MAC_FINAL_SIZE(key_type, key_bits, alg) \
Gilles Peskine71bb7b72018-04-19 08:29:59 +02001083 (PSA_ALG_IS_HMAC(alg) ? PSA_HASH_SIZE(PSA_ALG_HMAC_HASH(alg)) : \
Gilles Peskine8c9def32018-02-08 10:02:12 +01001084 PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) ? PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) : \
1085 0)
1086
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001087/** Start a multipart MAC operation.
1088 *
1089 * The sequence of operations to calculate a MAC (message authentication code)
1090 * is as follows:
1091 * -# Allocate an operation object which will be passed to all the functions
1092 * listed here.
1093 * -# Call psa_mac_start() to specify the algorithm and key.
1094 * The key remains associated with the operation even if the content
1095 * of the key slot changes.
1096 * -# Call psa_mac_update() zero, one or more times, passing a fragment
1097 * of the message each time. The MAC that is calculated is the MAC
1098 * of the concatenation of these messages in order.
1099 * -# To calculate the MAC, call psa_mac_finish().
1100 * To compare the MAC with an expected value, call psa_mac_verify().
1101 *
1102 * The application may call psa_mac_abort() at any time after the operation
1103 * has been initialized with psa_mac_start().
1104 *
1105 * After a successful call to psa_mac_start(), the application must
Gilles Peskineed522972018-03-20 17:54:15 +01001106 * eventually terminate the operation. The following events terminate an
1107 * operation:
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001108 * - A failed call to psa_mac_update().
Gilles Peskine19067982018-03-20 17:54:53 +01001109 * - A call to psa_mac_finish(), psa_mac_verify() or psa_mac_abort().
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001110 *
1111 * \param operation
1112 * \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
1113 * such that #PSA_ALG_IS_MAC(alg) is true).
1114 *
1115 * \retval PSA_SUCCESS
1116 * Success.
1117 * \retval PSA_ERROR_EMPTY_SLOT
Gilles Peskine92b30732018-03-03 21:29:30 +01001118 * \retval PSA_ERROR_NOT_PERMITTED
Gilles Peskine7e4acc52018-02-16 21:24:11 +01001119 * \retval PSA_ERROR_INVALID_ARGUMENT
1120 * \c key is not compatible with \c alg.
1121 * \retval PSA_ERROR_NOT_SUPPORTED
1122 * \c alg is not supported or is not a MAC algorithm.
1123 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1124 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1125 * \retval PSA_ERROR_HARDWARE_FAILURE
1126 * \retval PSA_ERROR_TAMPERING_DETECTED
1127 */
Gilles Peskine8c9def32018-02-08 10:02:12 +01001128psa_status_t psa_mac_start(psa_mac_operation_t *operation,
1129 psa_key_slot_t key,
1130 psa_algorithm_t alg);
1131
1132psa_status_t psa_mac_update(psa_mac_operation_t *operation,
1133 const uint8_t *input,
1134 size_t input_length);
1135
1136psa_status_t psa_mac_finish(psa_mac_operation_t *operation,
1137 uint8_t *mac,
1138 size_t mac_size,
1139 size_t *mac_length);
1140
1141psa_status_t psa_mac_verify(psa_mac_operation_t *operation,
1142 const uint8_t *mac,
1143 size_t mac_length);
1144
1145psa_status_t psa_mac_abort(psa_mac_operation_t *operation);
1146
1147/**@}*/
1148
Gilles Peskine428dc5a2018-03-03 21:27:18 +01001149/** \defgroup cipher Symmetric ciphers
1150 * @{
1151 */
1152
1153/** The type of the state data structure for multipart cipher operations.
1154 *
1155 * This is an implementation-defined \c struct. Applications should not
1156 * make any assumptions about the content of this structure except
1157 * as directed by the documentation of a specific implementation. */
1158typedef struct psa_cipher_operation_s psa_cipher_operation_t;
1159
1160/** Set the key for a multipart symmetric encryption operation.
1161 *
1162 * The sequence of operations to encrypt a message with a symmetric cipher
1163 * is as follows:
1164 * -# Allocate an operation object which will be passed to all the functions
1165 * listed here.
1166 * -# Call psa_encrypt_setup() to specify the algorithm and key.
1167 * The key remains associated with the operation even if the content
1168 * of the key slot changes.
1169 * -# Call either psa_encrypt_generate_iv() or psa_encrypt_set_iv() to
1170 * generate or set the IV (initialization vector). You should use
1171 * psa_encrypt_generate_iv() unless the protocol you are implementing
1172 * requires a specific IV value.
1173 * -# Call psa_cipher_update() zero, one or more times, passing a fragment
1174 * of the message each time.
1175 * -# Call psa_cipher_finish().
1176 *
1177 * The application may call psa_cipher_abort() at any time after the operation
1178 * has been initialized with psa_encrypt_setup().
1179 *
1180 * After a successful call to psa_encrypt_setup(), the application must
Gilles Peskineed522972018-03-20 17:54:15 +01001181 * eventually terminate the operation. The following events terminate an
1182 * operation:
Gilles Peskine428dc5a2018-03-03 21:27:18 +01001183 * - A failed call to psa_encrypt_generate_iv(), psa_encrypt_set_iv()
1184 * or psa_cipher_update().
Gilles Peskine19067982018-03-20 17:54:53 +01001185 * - A call to psa_cipher_finish() or psa_cipher_abort().
Gilles Peskine428dc5a2018-03-03 21:27:18 +01001186 *
1187 * \param operation
1188 * \param alg The cipher algorithm to compute (\c PSA_ALG_XXX value
1189 * such that #PSA_ALG_IS_CIPHER(alg) is true).
1190 *
1191 * \retval PSA_SUCCESS
1192 * Success.
1193 * \retval PSA_ERROR_EMPTY_SLOT
1194 * \retval PSA_ERROR_NOT_PERMITTED
1195 * \retval PSA_ERROR_INVALID_ARGUMENT
1196 * \c key is not compatible with \c alg.
1197 * \retval PSA_ERROR_NOT_SUPPORTED
1198 * \c alg is not supported or is not a cipher algorithm.
1199 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1200 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1201 * \retval PSA_ERROR_HARDWARE_FAILURE
1202 * \retval PSA_ERROR_TAMPERING_DETECTED
1203 */
1204psa_status_t psa_encrypt_setup(psa_cipher_operation_t *operation,
1205 psa_key_slot_t key,
1206 psa_algorithm_t alg);
1207
1208/** Set the key for a multipart symmetric decryption operation.
1209 *
1210 * The sequence of operations to decrypt a message with a symmetric cipher
1211 * is as follows:
1212 * -# Allocate an operation object which will be passed to all the functions
1213 * listed here.
1214 * -# Call psa_decrypt_setup() to specify the algorithm and key.
1215 * The key remains associated with the operation even if the content
1216 * of the key slot changes.
1217 * -# Call psa_cipher_update() with the IV (initialization vector) for the
1218 * decryption. If the IV is prepended to the ciphertext, you can call
1219 * psa_cipher_update() on a buffer containing the IV followed by the
1220 * beginning of the message.
1221 * -# Call psa_cipher_update() zero, one or more times, passing a fragment
1222 * of the message each time.
1223 * -# Call psa_cipher_finish().
1224 *
1225 * The application may call psa_cipher_abort() at any time after the operation
1226 * has been initialized with psa_encrypt_setup().
1227 *
1228 * After a successful call to psa_decrypt_setup(), the application must
Gilles Peskineed522972018-03-20 17:54:15 +01001229 * eventually terminate the operation. The following events terminate an
1230 * operation:
Gilles Peskine428dc5a2018-03-03 21:27:18 +01001231 * - A failed call to psa_cipher_update().
Gilles Peskine19067982018-03-20 17:54:53 +01001232 * - A call to psa_cipher_finish() or psa_cipher_abort().
Gilles Peskine428dc5a2018-03-03 21:27:18 +01001233 *
1234 * \param operation
1235 * \param alg The cipher algorithm to compute (\c PSA_ALG_XXX value
1236 * such that #PSA_ALG_IS_CIPHER(alg) is true).
1237 *
1238 * \retval PSA_SUCCESS
1239 * Success.
1240 * \retval PSA_ERROR_EMPTY_SLOT
1241 * \retval PSA_ERROR_NOT_PERMITTED
1242 * \retval PSA_ERROR_INVALID_ARGUMENT
1243 * \c key is not compatible with \c alg.
1244 * \retval PSA_ERROR_NOT_SUPPORTED
1245 * \c alg is not supported or is not a cipher algorithm.
1246 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1247 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1248 * \retval PSA_ERROR_HARDWARE_FAILURE
1249 * \retval PSA_ERROR_TAMPERING_DETECTED
1250 */
1251psa_status_t psa_decrypt_setup(psa_cipher_operation_t *operation,
1252 psa_key_slot_t key,
1253 psa_algorithm_t alg);
1254
1255psa_status_t psa_encrypt_generate_iv(psa_cipher_operation_t *operation,
1256 unsigned char *iv,
1257 size_t iv_size,
1258 size_t *iv_length);
1259
1260psa_status_t psa_encrypt_set_iv(psa_cipher_operation_t *operation,
1261 const unsigned char *iv,
1262 size_t iv_length);
1263
1264psa_status_t psa_cipher_update(psa_cipher_operation_t *operation,
1265 const uint8_t *input,
1266 size_t input_length);
1267
1268psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation,
1269 uint8_t *mac,
1270 size_t mac_size,
1271 size_t *mac_length);
1272
1273psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation);
1274
1275/**@}*/
1276
Gilles Peskine3b555712018-03-03 21:27:57 +01001277/** \defgroup aead Authenticated encryption with associated data (AEAD)
1278 * @{
1279 */
1280
1281/** The type of the state data structure for multipart AEAD operations.
1282 *
1283 * This is an implementation-defined \c struct. Applications should not
1284 * make any assumptions about the content of this structure except
1285 * as directed by the documentation of a specific implementation. */
1286typedef struct psa_aead_operation_s psa_aead_operation_t;
1287
1288/** Set the key for a multipart authenticated encryption operation.
1289 *
1290 * The sequence of operations to authenticate-and-encrypt a message
1291 * is as follows:
1292 * -# Allocate an operation object which will be passed to all the functions
1293 * listed here.
1294 * -# Call psa_aead_encrypt_setup() to specify the algorithm and key.
1295 * The key remains associated with the operation even if the content
1296 * of the key slot changes.
1297 * -# Call either psa_aead_generate_iv() or psa_aead_set_iv() to
1298 * generate or set the IV (initialization vector). You should use
1299 * psa_encrypt_generate_iv() unless the protocol you are implementing
1300 * requires a specific IV value.
1301 * -# Call psa_aead_update_ad() to pass the associated data that is
1302 * to be authenticated but not encrypted. You may omit this step if
1303 * there is no associated data.
1304 * -# Call psa_aead_update() zero, one or more times, passing a fragment
1305 * of the data to encrypt each time.
1306 * -# Call psa_aead_finish().
1307 *
1308 * The application may call psa_aead_abort() at any time after the operation
1309 * has been initialized with psa_aead_encrypt_setup().
1310 *
Gilles Peskineed522972018-03-20 17:54:15 +01001311 * After a successful call to psa_aead_encrypt_setup(), the application must
1312 * eventually terminate the operation. The following events terminate an
1313 * operation:
Gilles Peskine3b555712018-03-03 21:27:57 +01001314 * - A failed call to psa_aead_generate_iv(), psa_aead_set_iv(),
1315 * psa_aead_update_ad() or psa_aead_update().
Gilles Peskine19067982018-03-20 17:54:53 +01001316 * - A call to psa_aead_finish() or psa_aead_abort().
Gilles Peskine3b555712018-03-03 21:27:57 +01001317 *
1318 * \param operation
1319 * \param alg The AEAD algorithm to compute (\c PSA_ALG_XXX value
1320 * such that #PSA_ALG_IS_AEAD(alg) is true).
1321 *
1322 * \retval PSA_SUCCESS
1323 * Success.
1324 * \retval PSA_ERROR_EMPTY_SLOT
1325 * \retval PSA_ERROR_NOT_PERMITTED
1326 * \retval PSA_ERROR_INVALID_ARGUMENT
1327 * \c key is not compatible with \c alg.
1328 * \retval PSA_ERROR_NOT_SUPPORTED
1329 * \c alg is not supported or is not an AEAD algorithm.
1330 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1331 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1332 * \retval PSA_ERROR_HARDWARE_FAILURE
1333 * \retval PSA_ERROR_TAMPERING_DETECTED
1334 */
1335psa_status_t psa_aead_encrypt_setup(psa_aead_operation_t *operation,
1336 psa_key_slot_t key,
1337 psa_algorithm_t alg);
1338
1339/** Set the key for a multipart authenticated decryption operation.
1340 *
1341 * The sequence of operations to authenticated and decrypt a message
1342 * is as follows:
1343 * -# Allocate an operation object which will be passed to all the functions
1344 * listed here.
1345 * -# Call psa_aead_decrypt_setup() to specify the algorithm and key.
1346 * The key remains associated with the operation even if the content
1347 * of the key slot changes.
1348 * -# Call psa_aead_set_iv() to pass the initialization vector (IV)
1349 * for the authenticated decryption.
1350 * -# Call psa_aead_update_ad() to pass the associated data that is
1351 * to be authenticated but not encrypted. You may omit this step if
1352 * there is no associated data.
1353 * -# Call psa_aead_update() zero, one or more times, passing a fragment
1354 * of the data to decrypt each time.
1355 * -# Call psa_aead_finish().
1356 *
1357 * The application may call psa_aead_abort() at any time after the operation
1358 * has been initialized with psa_aead_decrypt_setup().
1359 *
Gilles Peskineed522972018-03-20 17:54:15 +01001360 * After a successful call to psa_aead_decrypt_setup(), the application must
1361 * eventually terminate the operation. The following events terminate an
1362 * operation:
Gilles Peskine3b555712018-03-03 21:27:57 +01001363 * - A failed call to psa_aead_update().
Gilles Peskine19067982018-03-20 17:54:53 +01001364 * - A call to psa_aead_finish() or psa_aead_abort().
Gilles Peskine3b555712018-03-03 21:27:57 +01001365 *
1366 * \param operation
Gilles Peskine19067982018-03-20 17:54:53 +01001367 * \param alg The AEAD algorithm to compute (\c PSA_ALG_XXX value
1368 * such that #PSA_ALG_IS_AEAD(alg) is true).
Gilles Peskine3b555712018-03-03 21:27:57 +01001369 *
1370 * \retval PSA_SUCCESS
1371 * Success.
1372 * \retval PSA_ERROR_EMPTY_SLOT
1373 * \retval PSA_ERROR_NOT_PERMITTED
1374 * \retval PSA_ERROR_INVALID_ARGUMENT
1375 * \c key is not compatible with \c alg.
1376 * \retval PSA_ERROR_NOT_SUPPORTED
Gilles Peskine19067982018-03-20 17:54:53 +01001377 * \c alg is not supported or is not an AEAD algorithm.
Gilles Peskine3b555712018-03-03 21:27:57 +01001378 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1379 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1380 * \retval PSA_ERROR_HARDWARE_FAILURE
1381 * \retval PSA_ERROR_TAMPERING_DETECTED
1382 */
1383psa_status_t psa_aead_decrypt_setup(psa_aead_operation_t *operation,
1384 psa_key_slot_t key,
1385 psa_algorithm_t alg);
1386
1387psa_status_t psa_aead_generate_iv(psa_aead_operation_t *operation,
1388 unsigned char *iv,
1389 size_t iv_size,
1390 size_t *iv_length);
1391
1392psa_status_t psa_aead_set_iv(psa_aead_operation_t *operation,
1393 const unsigned char *iv,
1394 size_t iv_length);
1395
1396psa_status_t psa_aead_update_ad(psa_aead_operation_t *operation,
1397 const uint8_t *input,
1398 size_t input_length);
1399
1400psa_status_t psa_aead_update(psa_aead_operation_t *operation,
1401 const uint8_t *input,
1402 size_t input_length);
1403
1404psa_status_t psa_aead_finish(psa_aead_operation_t *operation,
1405 uint8_t *tag,
1406 size_t tag_size,
1407 size_t *tag_length);
1408
1409psa_status_t psa_aead_verify(psa_aead_operation_t *operation,
1410 uint8_t *tag,
1411 size_t tag_length);
1412
1413psa_status_t psa_aead_abort(psa_aead_operation_t *operation);
1414
1415/**@}*/
1416
Gilles Peskine20035e32018-02-03 22:44:14 +01001417/** \defgroup asymmetric Asymmetric cryptography
1418 * @{
1419 */
1420
1421/**
Gilles Peskine0189e752018-02-03 23:57:22 +01001422 * \brief Maximum ECDSA signature size for a given curve bit size
1423 *
1424 * \param curve_bits Curve size in bits
1425 * \return Maximum signature size in bytes
1426 *
1427 * \note This macro returns a compile-time constant if its argument is one.
1428 *
1429 * \warning This macro may evaluate its argument multiple times.
1430 */
1431/*
1432 * RFC 4492 page 20:
1433 *
1434 * Ecdsa-Sig-Value ::= SEQUENCE {
1435 * r INTEGER,
1436 * s INTEGER
1437 * }
1438 *
1439 * Size is at most
1440 * 1 (tag) + 1 (len) + 1 (initial 0) + curve_bytes for each of r and s,
1441 * twice that + 1 (tag) + 2 (len) for the sequence
1442 * (assuming curve_bytes is less than 126 for r and s,
1443 * and less than 124 (total len <= 255) for the sequence)
1444 */
1445#define PSA_ECDSA_SIGNATURE_SIZE(curve_bits) \
1446 ( /*T,L of SEQUENCE*/ ((curve_bits) >= 61 * 8 ? 3 : 2) + \
1447 /*T,L of r,s*/ 2 * (((curve_bits) >= 127 * 8 ? 3 : 2) + \
1448 /*V of r,s*/ ((curve_bits) + 8) / 8))
1449
1450
Gilles Peskine308b91d2018-02-08 09:47:44 +01001451/** Safe signature buffer size for psa_asymmetric_sign().
1452 *
1453 * This macro returns a safe buffer size for a signature using a key
1454 * of the specified type and size, with the specified algorithm.
1455 * Note that the actual size of the signature may be smaller
1456 * (some algorithms produce a variable-size signature).
1457 *
1458 * \warning This function may call its arguments multiple times or
1459 * zero times, so you should not pass arguments that contain
1460 * side effects.
1461 *
1462 * \param key_type An asymmetric key type (this may indifferently be a
1463 * key pair type or a public key type).
1464 * \param key_bits The size of the key in bits.
1465 * \param alg The signature algorithm.
1466 *
1467 * \return If the parameters are valid and supported, return
1468 * a buffer size in bytes that guarantees that
1469 * psa_asymmetric_sign() will not fail with
1470 * #PSA_ERROR_BUFFER_TOO_SMALL.
1471 * If the parameters are a valid combination that is not supported
1472 * by the implementation, this macro either shall return either a
1473 * sensible size or 0.
1474 * If the parameters are not valid, the
1475 * return value is unspecified.
1476 *
1477 */
Gilles Peskine0189e752018-02-03 23:57:22 +01001478#define PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE(key_type, key_bits, alg) \
Gilles Peskine2905a7a2018-03-07 16:39:31 +01001479 (PSA_KEY_TYPE_IS_RSA(key_type) ? ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \
Gilles Peskine0189e752018-02-03 23:57:22 +01001480 PSA_KEY_TYPE_IS_ECC(key_type) ? PSA_ECDSA_SIGNATURE_SIZE(key_bits) : \
Gilles Peskine84845652018-03-28 14:17:40 +02001481 ((void)alg, 0))
Gilles Peskine0189e752018-02-03 23:57:22 +01001482
1483/**
Gilles Peskine20035e32018-02-03 22:44:14 +01001484 * \brief Sign a hash or short message with a private key.
1485 *
Gilles Peskine308b91d2018-02-08 09:47:44 +01001486 * \param key Key slot containing an asymmetric key pair.
1487 * \param alg A signature algorithm that is compatible with
1488 * the type of \c key.
1489 * \param hash The message to sign.
1490 * \param hash_length Size of the \c hash buffer in bytes.
1491 * \param salt A salt or label, if supported by the signature
1492 * algorithm.
1493 * If the signature algorithm does not support a
1494 * salt, pass \c NULL.
1495 * If the signature algorithm supports an optional
1496 * salt and you do not want to pass a salt,
1497 * pass \c NULL.
1498 * \param salt_length Size of the \c salt buffer in bytes.
1499 * If \c salt is \c NULL, pass 0.
1500 * \param signature Buffer where the signature is to be written.
1501 * \param signature_size Size of the \c signature buffer in bytes.
1502 * \param signature_length On success, the number of bytes
1503 * that make up the returned signature value.
Gilles Peskine308b91d2018-02-08 09:47:44 +01001504 *
1505 * \retval PSA_SUCCESS
1506 * \retval PSA_ERROR_BUFFER_TOO_SMALL
1507 * The size of the \c signature buffer is too small. You can
1508 * determine a sufficient buffer size by calling
1509 * #PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE(key_type, key_bits, alg)
1510 * where \c key_type and \c key_bits are the type and bit-size
1511 * respectively of \c key.
1512 * \retval PSA_ERROR_NOT_SUPPORTED
1513 * \retval PSA_ERROR_INVALID_ARGUMENT
1514 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1515 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1516 * \retval PSA_ERROR_HARDWARE_FAILURE
1517 * \retval PSA_ERROR_TAMPERING_DETECTED
1518 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
Gilles Peskine20035e32018-02-03 22:44:14 +01001519 */
1520psa_status_t psa_asymmetric_sign(psa_key_slot_t key,
1521 psa_algorithm_t alg,
1522 const uint8_t *hash,
1523 size_t hash_length,
1524 const uint8_t *salt,
1525 size_t salt_length,
1526 uint8_t *signature,
1527 size_t signature_size,
1528 size_t *signature_length);
1529
1530/**
1531 * \brief Verify the signature a hash or short message using a public key.
1532 *
Gilles Peskine308b91d2018-02-08 09:47:44 +01001533 * \param key Key slot containing a public key or an
1534 * asymmetric key pair.
1535 * \param alg A signature algorithm that is compatible with
1536 * the type of \c key.
1537 * \param hash The message whose signature is to be verified.
1538 * \param hash_length Size of the \c hash buffer in bytes.
1539 * \param salt A salt or label, if supported by the signature
1540 * algorithm.
1541 * If the signature algorithm does not support a
1542 * salt, pass \c NULL.
1543 * If the signature algorithm supports an optional
1544 * salt and you do not want to pass a salt,
1545 * pass \c NULL.
1546 * \param salt_length Size of the \c salt buffer in bytes.
1547 * If \c salt is \c NULL, pass 0.
1548 * \param signature Buffer containing the signature to verify.
1549 * \param signature_size Size of the \c signature buffer in bytes.
1550 *
1551 * \retval PSA_SUCCESS
1552 * The signature is valid.
1553 * \retval PSA_ERROR_INVALID_SIGNATURE
1554 * The calculation was perfomed successfully, but the passed
1555 * signature is not a valid signature.
1556 * \retval PSA_ERROR_NOT_SUPPORTED
1557 * \retval PSA_ERROR_INVALID_ARGUMENT
1558 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1559 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1560 * \retval PSA_ERROR_HARDWARE_FAILURE
1561 * \retval PSA_ERROR_TAMPERING_DETECTED
Gilles Peskine20035e32018-02-03 22:44:14 +01001562 */
1563psa_status_t psa_asymmetric_verify(psa_key_slot_t key,
1564 psa_algorithm_t alg,
1565 const uint8_t *hash,
1566 size_t hash_length,
1567 const uint8_t *salt,
1568 size_t salt_length,
1569 uint8_t *signature,
1570 size_t signature_size);
1571
Gilles Peskine6944f9a2018-03-28 14:18:39 +02001572#define PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \
1573 (PSA_KEY_TYPE_IS_RSA(key_type) ? ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \
1574 ((void)alg, 0))
1575#define PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \
1576 PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(key_type, key_bits, alg)
1577
1578/**
1579 * \brief Encrypt a short message with a public key.
1580 *
1581 * \param key Key slot containing a public key or an asymmetric
1582 * key pair.
1583 * \param alg An asymmetric encryption algorithm that is
1584 * compatible with the type of \c key.
1585 * \param input The message to encrypt.
1586 * \param input_length Size of the \c input buffer in bytes.
1587 * \param salt A salt or label, if supported by the encryption
1588 * algorithm.
1589 * If the algorithm does not support a
1590 * salt, pass \c NULL.
1591 * If the algorithm supports an optional
1592 * salt and you do not want to pass a salt,
1593 * pass \c NULL.
1594 *
1595 * - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is
1596 * supported.
1597 * \param salt_length Size of the \c salt buffer in bytes.
1598 * If \c salt is \c NULL, pass 0.
1599 * \param output Buffer where the encrypted message is to be written.
1600 * \param output_size Size of the \c output buffer in bytes.
1601 * \param output_length On success, the number of bytes
1602 * that make up the returned output.
1603 *
1604 * \retval PSA_SUCCESS
1605 * \retval PSA_ERROR_BUFFER_TOO_SMALL
1606 * The size of the \c output buffer is too small. You can
1607 * determine a sufficient buffer size by calling
1608 * #PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(key_type, key_bits, alg)
1609 * where \c key_type and \c key_bits are the type and bit-size
1610 * respectively of \c key.
1611 * \retval PSA_ERROR_NOT_SUPPORTED
1612 * \retval PSA_ERROR_INVALID_ARGUMENT
1613 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1614 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1615 * \retval PSA_ERROR_HARDWARE_FAILURE
1616 * \retval PSA_ERROR_TAMPERING_DETECTED
1617 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
1618 */
1619psa_status_t psa_asymmetric_encrypt(psa_key_slot_t key,
1620 psa_algorithm_t alg,
1621 const uint8_t *input,
1622 size_t input_length,
1623 const uint8_t *salt,
1624 size_t salt_length,
1625 uint8_t *output,
1626 size_t output_size,
1627 size_t *output_length);
1628
1629/**
1630 * \brief Decrypt a short message with a private key.
1631 *
1632 * \param key Key slot containing an asymmetric key pair.
1633 * \param alg An asymmetric encryption algorithm that is
1634 * compatible with the type of \c key.
1635 * \param input The message to decrypt.
1636 * \param input_length Size of the \c input buffer in bytes.
1637 * \param salt A salt or label, if supported by the encryption
1638 * algorithm.
1639 * If the algorithm does not support a
1640 * salt, pass \c NULL.
1641 * If the algorithm supports an optional
1642 * salt and you do not want to pass a salt,
1643 * pass \c NULL.
1644 *
1645 * - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is
1646 * supported.
1647 * \param salt_length Size of the \c salt buffer in bytes.
1648 * If \c salt is \c NULL, pass 0.
Gilles Peskinef48af7f2018-03-28 18:44:14 +02001649 * \param output Buffer where the decrypted message is to be written.
Gilles Peskine6944f9a2018-03-28 14:18:39 +02001650 * \param output_size Size of the \c output buffer in bytes.
1651 * \param output_length On success, the number of bytes
1652 * that make up the returned output.
1653 *
1654 * \retval PSA_SUCCESS
1655 * \retval PSA_ERROR_BUFFER_TOO_SMALL
1656 * The size of the \c output buffer is too small. You can
1657 * determine a sufficient buffer size by calling
1658 * #PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(key_type, key_bits, alg)
1659 * where \c key_type and \c key_bits are the type and bit-size
1660 * respectively of \c key.
1661 * \retval PSA_ERROR_NOT_SUPPORTED
1662 * \retval PSA_ERROR_INVALID_ARGUMENT
1663 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1664 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1665 * \retval PSA_ERROR_HARDWARE_FAILURE
1666 * \retval PSA_ERROR_TAMPERING_DETECTED
1667 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
1668 * \retval PSA_ERROR_INVALID_PADDING
1669 */
1670psa_status_t psa_asymmetric_decrypt(psa_key_slot_t key,
1671 psa_algorithm_t alg,
1672 const uint8_t *input,
1673 size_t input_length,
1674 const uint8_t *salt,
1675 size_t salt_length,
1676 uint8_t *output,
1677 size_t output_size,
1678 size_t *output_length);
1679
Gilles Peskine2f9c4dc2018-01-28 13:16:24 +01001680/**@}*/
1681
Gilles Peskine9e7dc712018-03-28 14:18:50 +02001682/** \defgroup generation Key generation
1683 * @{
1684 */
1685
1686/**
1687 * \brief Generate random bytes.
1688 *
1689 * \warning This function **can** fail! Callers MUST check the return status
1690 * and MUST NOT use the content of the output buffer if the return
1691 * status is not #PSA_SUCCESS.
1692 *
1693 * \note To generate a key, use psa_generate_key() instead.
1694 *
1695 * \param output Output buffer for the generated data.
1696 * \param output_size Number of bytes to generate and output.
1697 *
1698 * \retval PSA_SUCCESS
1699 * \retval PSA_ERROR_NOT_SUPPORTED
1700 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
1701 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1702 * \retval PSA_ERROR_HARDWARE_FAILURE
1703 * \retval PSA_ERROR_TAMPERING_DETECTED
1704 */
1705psa_status_t psa_generate_random(uint8_t *output,
1706 size_t output_size);
1707
1708/**
1709 * \brief Generate a key or key pair.
1710 *
1711 * \param key Slot where the key will be stored. This must be a
1712 * valid slot for a key of the chosen type. It must
1713 * be unoccupied.
1714 * \param type Key type (a \c PSA_KEY_TYPE_XXX value).
1715 * \param bits Key size in bits.
1716 * \param parameters Extra parameters for key generation. The interpretation
1717 * of this parameter depends on \c type. All types support
1718 * \c NULL to use default parameters specified below.
1719 *
1720 * For any symmetric key type (type such that
1721 * `PSA_KEY_TYPE_IS_ASYMMETRIC(type)` is false), \c parameters must be
1722 * \c NULL. For asymmetric key types defined by this specification,
1723 * the parameter type and the default parameters are defined by the
1724 * table below. For vendor-defined key types, the vendor documentation
1725 * shall define the parameter type and the default parameters.
1726 *
Gilles Peskinef48af7f2018-03-28 18:44:14 +02001727 * Type | Parameter type | Meaning | Parameters used if `parameters == NULL`
1728 * ---- | -------------- | ------- | ---------------------------------------
1729 * `PSA_KEY_TYPE_RSA_KEYPAIR` | `unsigned int` | Public exponent | 65537
Gilles Peskine9e7dc712018-03-28 14:18:50 +02001730 *
1731 * \retval PSA_SUCCESS
1732 * \retval PSA_ERROR_NOT_SUPPORTED
1733 * \retval PSA_ERROR_INVALID_ARGUMENT
1734 * \retval PSA_ERROR_INSUFFICIENT_MEMORY
1735 * \retval PSA_ERROR_INSUFFICIENT_ENTROPY
1736 * \retval PSA_ERROR_COMMUNICATION_FAILURE
1737 * \retval PSA_ERROR_HARDWARE_FAILURE
1738 * \retval PSA_ERROR_TAMPERING_DETECTED
1739 */
1740psa_status_t psa_generate_key(psa_key_slot_t key,
1741 psa_key_type_t type,
1742 size_t bits,
1743 const void *parameters);
1744
1745/**@}*/
1746
Gilles Peskinee59236f2018-01-27 23:32:46 +01001747#ifdef __cplusplus
1748}
1749#endif
1750
Gilles Peskine9ef733f2018-02-07 21:05:37 +01001751/* The file "crypto_struct.h" contains definitions for
1752 * implementation-specific structs that are declared above. */
1753#include "crypto_struct.h"
1754
1755/* The file "crypto_extra.h" contains vendor-specific definitions. This
1756 * can include vendor-defined algorithms, extra functions, etc. */
Gilles Peskinee59236f2018-01-27 23:32:46 +01001757#include "crypto_extra.h"
1758
1759#endif /* PSA_CRYPTO_H */