2018-01-27 23:32:46 +01:00
|
|
|
/**
|
|
|
|
* \file psa/crypto.h
|
|
|
|
* \brief Platform Security Architecture cryptography module
|
|
|
|
*/
|
2018-07-25 14:26:13 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018, ARM Limited, All Rights Reserved
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2018-01-27 23:32:46 +01:00
|
|
|
|
|
|
|
#ifndef PSA_CRYPTO_H
|
|
|
|
#define PSA_CRYPTO_H
|
|
|
|
|
|
|
|
#include "crypto_platform.h"
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2018-02-07 21:54:47 +01:00
|
|
|
#ifdef __DOXYGEN_ONLY__
|
2018-03-07 16:40:18 +01:00
|
|
|
/* This __DOXYGEN_ONLY__ block contains mock definitions for things that
|
|
|
|
* must be defined in the crypto_platform.h header. These mock definitions
|
|
|
|
* are present in this file as a convenience to generate pretty-printed
|
|
|
|
* documentation that includes those definitions. */
|
|
|
|
|
2018-02-07 21:54:47 +01:00
|
|
|
/** \defgroup platform Implementation-specific definitions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/** \brief Key slot number.
|
|
|
|
*
|
|
|
|
* This type represents key slots. It must be an unsigned integral
|
2018-02-08 09:47:44 +01:00
|
|
|
* type. The choice of type is implementation-dependent.
|
2018-01-28 13:16:24 +01:00
|
|
|
* 0 is not a valid key slot number. The meaning of other values is
|
|
|
|
* implementation dependent.
|
|
|
|
*
|
|
|
|
* At any given point in time, each key slot either contains a
|
|
|
|
* cryptographic object, or is empty. Key slots are persistent:
|
|
|
|
* once set, the cryptographic object remains in the key slot until
|
|
|
|
* explicitly destroyed.
|
|
|
|
*/
|
|
|
|
typedef _unsigned_integral_type_ psa_key_slot_t;
|
|
|
|
|
2018-02-07 21:54:47 +01:00
|
|
|
/**@}*/
|
2018-03-07 16:40:18 +01:00
|
|
|
#endif /* __DOXYGEN_ONLY__ */
|
2018-02-07 21:54:47 +01:00
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** \defgroup basic Basic definitions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-06-20 13:59:04 +02:00
|
|
|
#if defined(PSA_SUCCESS)
|
|
|
|
/* If PSA_SUCCESS is defined, assume that PSA crypto is being used
|
|
|
|
* together with PSA IPC, which also defines the identifier
|
|
|
|
* PSA_SUCCESS. We must not define PSA_SUCCESS ourselves in that case;
|
|
|
|
* the other error code names don't clash. Also define psa_status_t as
|
|
|
|
* an alias for the type used by PSA IPC. This is a temporary hack
|
2018-08-05 11:09:44 +02:00
|
|
|
* until we unify error reporting in PSA IPC and PSA crypto.
|
2018-06-20 13:59:04 +02:00
|
|
|
*
|
|
|
|
* Note that psa_defs.h must be included before this header!
|
|
|
|
*/
|
|
|
|
typedef psa_error_t psa_status_t;
|
|
|
|
|
|
|
|
#else /* defined(PSA_SUCCESS) */
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
/**
|
|
|
|
* \brief Function return status.
|
|
|
|
*
|
2018-06-20 13:59:04 +02:00
|
|
|
* This is either #PSA_SUCCESS (which is zero), indicating success,
|
|
|
|
* or a nonzero value indicating that an error occurred. Errors are
|
|
|
|
* encoded as one of the \c PSA_ERROR_xxx values defined here.
|
2018-01-27 23:32:46 +01:00
|
|
|
*/
|
2018-06-18 15:20:16 +02:00
|
|
|
typedef int32_t psa_status_t;
|
2018-06-20 13:59:04 +02:00
|
|
|
|
2018-06-18 15:20:16 +02:00
|
|
|
/** The action was completed successfully. */
|
|
|
|
#define PSA_SUCCESS ((psa_status_t)0)
|
2018-06-20 13:59:04 +02:00
|
|
|
|
|
|
|
#endif /* !defined(PSA_SUCCESS) */
|
2018-06-18 15:20:16 +02:00
|
|
|
|
2018-08-01 15:09:08 +02:00
|
|
|
/** An error occurred that does not correspond to any defined
|
|
|
|
* failure cause.
|
|
|
|
*
|
|
|
|
* Implementations may use this error code if none of the other standard
|
|
|
|
* error codes are applicable. */
|
|
|
|
#define PSA_ERROR_UNKNOWN_ERROR ((psa_status_t)1)
|
|
|
|
|
2018-06-18 15:20:16 +02:00
|
|
|
/** The requested operation or a parameter is not supported
|
|
|
|
* by this implementation.
|
|
|
|
*
|
|
|
|
* Implementations should return this error code when an enumeration
|
|
|
|
* parameter such as a key type, algorithm, etc. is not recognized.
|
|
|
|
* If a combination of parameters is recognized and identified as
|
|
|
|
* not valid, return #PSA_ERROR_INVALID_ARGUMENT instead. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_NOT_SUPPORTED ((psa_status_t)2)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** The requested action is denied by a policy.
|
|
|
|
*
|
|
|
|
* Implementations should return this error code when the parameters
|
|
|
|
* are recognized as valid and supported, and a policy explicitly
|
|
|
|
* denies the requested operation.
|
|
|
|
*
|
|
|
|
* If a subset of the parameters of a function call identify a
|
|
|
|
* forbidden operation, and another subset of the parameters are
|
|
|
|
* not valid or not supported, it is unspecified whether the function
|
|
|
|
* returns #PSA_ERROR_NOT_PERMITTED, #PSA_ERROR_NOT_SUPPORTED or
|
|
|
|
* #PSA_ERROR_INVALID_ARGUMENT. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_NOT_PERMITTED ((psa_status_t)3)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** An output buffer is too small.
|
|
|
|
*
|
2018-07-13 14:38:15 +02:00
|
|
|
* Applications can call the \c PSA_xxx_SIZE macro listed in the function
|
2018-06-18 15:20:16 +02:00
|
|
|
* description to determine a sufficient buffer size.
|
|
|
|
*
|
|
|
|
* Implementations should preferably return this error code only
|
|
|
|
* in cases when performing the operation with a larger output
|
|
|
|
* buffer would succeed. However implementations may return this
|
|
|
|
* error if a function has invalid or unsupported parameters in addition
|
|
|
|
* to the parameters that determine the necessary output buffer size. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_BUFFER_TOO_SMALL ((psa_status_t)4)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** A slot is occupied, but must be empty to carry out the
|
|
|
|
* requested action.
|
|
|
|
*
|
|
|
|
* If the slot number is invalid (i.e. the requested action could
|
|
|
|
* not be performed even after erasing the slot's content),
|
|
|
|
* implementations shall return #PSA_ERROR_INVALID_ARGUMENT instead. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_OCCUPIED_SLOT ((psa_status_t)5)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** A slot is empty, but must be occupied to carry out the
|
|
|
|
* requested action.
|
|
|
|
*
|
|
|
|
* If the slot number is invalid (i.e. the requested action could
|
|
|
|
* not be performed even after creating appropriate content in the slot),
|
|
|
|
* implementations shall return #PSA_ERROR_INVALID_ARGUMENT instead. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_EMPTY_SLOT ((psa_status_t)6)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** The requested action cannot be performed in the current state.
|
|
|
|
*
|
|
|
|
* Multipart operations return this error when one of the
|
|
|
|
* functions is called out of sequence. Refer to the function
|
|
|
|
* descriptions for permitted sequencing of functions.
|
|
|
|
*
|
|
|
|
* Implementations shall not return this error code to indicate
|
|
|
|
* that a key slot is occupied when it needs to be free or vice versa,
|
|
|
|
* but shall return #PSA_ERROR_OCCUPIED_SLOT or #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* as applicable. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_BAD_STATE ((psa_status_t)7)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** The parameters passed to the function are invalid.
|
|
|
|
*
|
|
|
|
* Implementations may return this error any time a parameter or
|
|
|
|
* combination of parameters are recognized as invalid.
|
|
|
|
*
|
|
|
|
* Implementations shall not return this error code to indicate
|
|
|
|
* that a key slot is occupied when it needs to be free or vice versa,
|
|
|
|
* but shall return #PSA_ERROR_OCCUPIED_SLOT or #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* as applicable. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INVALID_ARGUMENT ((psa_status_t)8)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** There is not enough runtime memory.
|
|
|
|
*
|
|
|
|
* If the action is carried out across multiple security realms, this
|
|
|
|
* error can refer to available memory in any of the security realms. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INSUFFICIENT_MEMORY ((psa_status_t)9)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** There is not enough persistent storage.
|
|
|
|
*
|
|
|
|
* Functions that modify the key storage return this error code if
|
|
|
|
* there is insufficient storage space on the host media. In addition,
|
|
|
|
* many functions that do not otherwise access storage may return this
|
|
|
|
* error code if the implementation requires a mandatory log entry for
|
|
|
|
* the requested action and the log storage space is full. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INSUFFICIENT_STORAGE ((psa_status_t)10)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** There was a communication failure inside the implementation.
|
|
|
|
*
|
|
|
|
* This can indicate a communication failure between the application
|
|
|
|
* and an external cryptoprocessor or between the cryptoprocessor and
|
|
|
|
* an external volatile or persistent memory. A communication failure
|
|
|
|
* may be transient or permanent depending on the cause.
|
|
|
|
*
|
|
|
|
* \warning If a function returns this error, it is undetermined
|
|
|
|
* whether the requested action has completed or not. Implementations
|
|
|
|
* should return #PSA_SUCCESS on successful completion whenver
|
|
|
|
* possible, however functions may return #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* if the requested action was completed successfully in an external
|
|
|
|
* cryptoprocessor but there was a breakdown of communication before
|
|
|
|
* the cryptoprocessor could report the status to the application.
|
|
|
|
*/
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_COMMUNICATION_FAILURE ((psa_status_t)11)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** There was a storage failure that may have led to data loss.
|
|
|
|
*
|
|
|
|
* This error indicates that some persistent storage is corrupted.
|
|
|
|
* It should not be used for a corruption of volatile memory
|
|
|
|
* (use #PSA_ERROR_TAMPERING_DETECTED), for a communication error
|
|
|
|
* between the cryptoprocessor and its external storage (use
|
|
|
|
* #PSA_ERROR_COMMUNICATION_FAILURE), or when the storage is
|
|
|
|
* in a valid state but is full (use #PSA_ERROR_INSUFFICIENT_STORAGE).
|
|
|
|
*
|
|
|
|
* Note that a storage failure does not indicate that any data that was
|
|
|
|
* previously read is invalid. However this previously read data may no
|
|
|
|
* longer be readable from storage.
|
|
|
|
*
|
|
|
|
* When a storage failure occurs, it is no longer possible to ensure
|
|
|
|
* the global integrity of the keystore. Depending on the global
|
|
|
|
* integrity guarantees offered by the implementation, access to other
|
|
|
|
* data may or may not fail even if the data is still readable but
|
|
|
|
* its integrity canont be guaranteed.
|
|
|
|
*
|
|
|
|
* Implementations should only use this error code to report a
|
|
|
|
* permanent storage corruption. However application writers should
|
|
|
|
* keep in mind that transient errors while reading the storage may be
|
|
|
|
* reported using this error code. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_STORAGE_FAILURE ((psa_status_t)12)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** A hardware failure was detected.
|
|
|
|
*
|
|
|
|
* A hardware failure may be transient or permanent depending on the
|
|
|
|
* cause. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_HARDWARE_FAILURE ((psa_status_t)13)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** A tampering attempt was detected.
|
|
|
|
*
|
|
|
|
* If an application receives this error code, there is no guarantee
|
|
|
|
* that previously accessed or computed data was correct and remains
|
|
|
|
* confidential. Applications should not perform any security function
|
|
|
|
* and should enter a safe failure state.
|
|
|
|
*
|
|
|
|
* Implementations may return this error code if they detect an invalid
|
|
|
|
* state that cannot happen during normal operation and that indicates
|
|
|
|
* that the implementation's security guarantees no longer hold. Depending
|
|
|
|
* on the implementation architecture and on its security and safety goals,
|
|
|
|
* the implementation may forcibly terminate the application.
|
|
|
|
*
|
|
|
|
* This error code is intended as a last resort when a security breach
|
|
|
|
* is detected and it is unsure whether the keystore data is still
|
|
|
|
* protected. Implementations shall only return this error code
|
|
|
|
* to report an alarm from a tampering detector, to indicate that
|
|
|
|
* the confidentiality of stored data can no longer be guaranteed,
|
|
|
|
* or to indicate that the integrity of previously returned data is now
|
|
|
|
* considered compromised. Implementations shall not use this error code
|
|
|
|
* to indicate a hardware failure that merely makes it impossible to
|
|
|
|
* perform the requested operation (use #PSA_ERROR_COMMUNICATION_FAILURE,
|
|
|
|
* #PSA_ERROR_STORAGE_FAILURE, #PSA_ERROR_HARDWARE_FAILURE,
|
|
|
|
* #PSA_ERROR_INSUFFICIENT_ENTROPY or other applicable error code
|
|
|
|
* instead).
|
|
|
|
*
|
|
|
|
* This error indicates an attack against the application. Implementations
|
|
|
|
* shall not return this error code as a consequence of the behavior of
|
|
|
|
* the application itself. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_TAMPERING_DETECTED ((psa_status_t)14)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** There is not enough entropy to generate random data needed
|
|
|
|
* for the requested action.
|
|
|
|
*
|
|
|
|
* This error indicates a failure of a hardware random generator.
|
|
|
|
* Application writers should note that this error can be returned not
|
|
|
|
* only by functions whose purpose is to generate random data, such
|
|
|
|
* as key, IV or nonce generation, but also by functions that execute
|
|
|
|
* an algorithm with a randomized result, as well as functions that
|
|
|
|
* use randomization of intermediate computations as a countermeasure
|
|
|
|
* to certain attacks.
|
|
|
|
*
|
|
|
|
* Implementations should avoid returning this error after psa_crypto_init()
|
|
|
|
* has succeeded. Implementations should generate sufficient
|
|
|
|
* entropy during initialization and subsequently use a cryptographically
|
|
|
|
* secure pseudorandom generator (PRNG). However implementations may return
|
|
|
|
* this error at any time if a policy requires the PRNG to be reseeded
|
|
|
|
* during normal operation. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INSUFFICIENT_ENTROPY ((psa_status_t)15)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** The signature, MAC or hash is incorrect.
|
|
|
|
*
|
|
|
|
* Verification functions return this error if the verification
|
|
|
|
* calculations completed successfully, and the value to be verified
|
|
|
|
* was determined to be incorrect.
|
|
|
|
*
|
|
|
|
* If the value to verify has an invalid size, implementations may return
|
|
|
|
* either #PSA_ERROR_INVALID_ARGUMENT or #PSA_ERROR_INVALID_SIGNATURE. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)16)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
|
|
|
/** The decrypted padding is incorrect.
|
|
|
|
*
|
|
|
|
* \warning In some protocols, when decrypting data, it is essential that
|
|
|
|
* the behavior of the application does not depend on whether the padding
|
|
|
|
* is correct, down to precise timing. Applications should prefer
|
|
|
|
* protocols that use authenticated encryption rather than plain
|
|
|
|
* encryption. If the application must perform a decryption of
|
|
|
|
* unauthenticated data, the application writer should take care not
|
|
|
|
* to reveal whether the padding is invalid.
|
|
|
|
*
|
|
|
|
* Implementations should strive to make valid and invalid padding
|
|
|
|
* as close as possible to indistinguishable to an external observer.
|
|
|
|
* In particular, the timing of a decryption operation should not
|
|
|
|
* depend on the validity of the padding. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INVALID_PADDING ((psa_status_t)17)
|
2018-06-18 15:20:16 +02:00
|
|
|
|
2018-07-12 17:12:33 +02:00
|
|
|
/** The generator has insufficient capacity left.
|
|
|
|
*
|
|
|
|
* Once a function returns this error, attempts to read from the
|
|
|
|
* generator will always return this error. */
|
2018-08-01 15:09:08 +02:00
|
|
|
#define PSA_ERROR_INSUFFICIENT_CAPACITY ((psa_status_t)18)
|
2018-01-27 23:32:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Library initialization.
|
|
|
|
*
|
|
|
|
* Applications must call this function before calling any other
|
|
|
|
* function in this module.
|
|
|
|
*
|
|
|
|
* Applications may call this function more than once. Once a call
|
|
|
|
* succeeds, subsequent calls are guaranteed to succeed.
|
|
|
|
*
|
2018-09-16 11:22:41 +02:00
|
|
|
* If the application calls other functions before calling psa_crypto_init(),
|
|
|
|
* the behavior is undefined. Implementations are encouraged to either perform
|
|
|
|
* the operation as if the library had been initialized or to return
|
|
|
|
* #PSA_ERROR_BAD_STATE or some other applicable error. In particular,
|
|
|
|
* implementations should not return a success status if the lack of
|
|
|
|
* initialization may have security implications, for example due to improper
|
|
|
|
* seeding of the random number generator.
|
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
2018-01-27 23:32:46 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_crypto_init(void);
|
|
|
|
|
2018-03-07 16:39:31 +01:00
|
|
|
#define PSA_BITS_TO_BYTES(bits) (((bits) + 7) / 8)
|
|
|
|
#define PSA_BYTES_TO_BITS(bytes) ((bytes) * 8)
|
2018-02-03 23:57:22 +01:00
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
/**@}*/
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/** \defgroup crypto_types Key and algorithm types
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** \brief Encoding of a key type.
|
|
|
|
*/
|
2018-01-28 13:16:24 +01:00
|
|
|
typedef uint32_t psa_key_type_t;
|
|
|
|
|
2018-03-07 16:40:18 +01:00
|
|
|
/** An invalid key type value.
|
|
|
|
*
|
|
|
|
* Zero is not the encoding of any key type.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_KEY_TYPE_NONE ((psa_key_type_t)0x00000000)
|
2018-03-07 16:40:18 +01:00
|
|
|
|
|
|
|
/** Vendor-defined flag
|
|
|
|
*
|
|
|
|
* Key types defined by this standard will never have the
|
|
|
|
* #PSA_KEY_TYPE_VENDOR_FLAG bit set. Vendors who define additional key types
|
|
|
|
* must use an encoding with the #PSA_KEY_TYPE_VENDOR_FLAG bit set and should
|
|
|
|
* respect the bitwise structure used by standard encodings whenever practical.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_KEY_TYPE_VENDOR_FLAG ((psa_key_type_t)0x80000000)
|
|
|
|
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_CATEGORY_MASK ((psa_key_type_t)0x70000000)
|
|
|
|
#define PSA_KEY_TYPE_CATEGORY_SYMMETRIC ((psa_key_type_t)0x40000000)
|
|
|
|
#define PSA_KEY_TYPE_CATEGORY_RAW ((psa_key_type_t)0x50000000)
|
|
|
|
#define PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY ((psa_key_type_t)0x60000000)
|
|
|
|
#define PSA_KEY_TYPE_CATEGORY_KEY_PAIR ((psa_key_type_t)0x70000000)
|
|
|
|
|
|
|
|
#define PSA_KEY_TYPE_CATEGORY_FLAG_PAIR ((psa_key_type_t)0x10000000)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-08-10 16:10:56 +02:00
|
|
|
/** Whether a key type is vendor-defined. */
|
|
|
|
#define PSA_KEY_TYPE_IS_VENDOR_DEFINED(type) \
|
|
|
|
(((type) & PSA_KEY_TYPE_VENDOR_FLAG) != 0)
|
|
|
|
|
|
|
|
/** Whether a key type is an unstructured array of bytes.
|
|
|
|
*
|
|
|
|
* This encompasses both symmetric keys and non-key data.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_TYPE_IS_UNSTRUCTURED(type) \
|
|
|
|
(((type) & PSA_KEY_TYPE_CATEGORY_MASK & ~(psa_key_type_t)0x10000000) == \
|
|
|
|
PSA_KEY_TYPE_CATEGORY_SYMMETRIC)
|
|
|
|
|
|
|
|
/** Whether a key type is asymmetric: either a key pair or a public key. */
|
|
|
|
#define PSA_KEY_TYPE_IS_ASYMMETRIC(type) \
|
|
|
|
(((type) & PSA_KEY_TYPE_CATEGORY_MASK \
|
|
|
|
& ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR) == \
|
|
|
|
PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY)
|
|
|
|
/** Whether a key type is the public part of a key pair. */
|
|
|
|
#define PSA_KEY_TYPE_IS_PUBLIC_KEY(type) \
|
|
|
|
(((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY)
|
|
|
|
/** Whether a key type is a key pair containing a private part and a public
|
|
|
|
* part. */
|
|
|
|
#define PSA_KEY_TYPE_IS_KEYPAIR(type) \
|
|
|
|
(((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_KEY_PAIR)
|
|
|
|
/** The key pair type corresponding to a public key type.
|
|
|
|
*
|
|
|
|
* You may also pass a key pair type as \p type, it will be left unchanged.
|
|
|
|
*
|
|
|
|
* \param type A public key type or key pair type.
|
|
|
|
*
|
|
|
|
* \return The corresponding key pair type.
|
|
|
|
* If \p type is not a public key or a key pair,
|
|
|
|
* the return value is undefined.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_TYPE_KEYPAIR_OF_PUBLIC_KEY(type) \
|
|
|
|
((type) | PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
|
|
|
|
/** The public key type corresponding to a key pair type.
|
|
|
|
*
|
|
|
|
* You may also pass a key pair type as \p type, it will be left unchanged.
|
|
|
|
*
|
|
|
|
* \param type A public key type or key pair type.
|
|
|
|
*
|
|
|
|
* \return The corresponding public key type.
|
|
|
|
* If \p type is not a public key or a key pair,
|
|
|
|
* the return value is undefined.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) \
|
|
|
|
((type) & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
|
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Raw data.
|
|
|
|
*
|
|
|
|
* A "key" of this type cannot be used for any cryptographic operation.
|
|
|
|
* Applications may use this type to store arbitrary data in the keystore. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_RAW_DATA ((psa_key_type_t)0x50000001)
|
2018-02-06 18:57:29 +01:00
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** HMAC key.
|
|
|
|
*
|
|
|
|
* The key policy determines which underlying hash algorithm the key can be
|
|
|
|
* used for.
|
|
|
|
*
|
|
|
|
* HMAC keys should generally have the same size as the underlying hash.
|
2018-07-13 14:38:15 +02:00
|
|
|
* This size can be calculated with #PSA_HASH_SIZE(\c alg) where
|
|
|
|
* \c alg is the HMAC algorithm or the underlying hash algorithm. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_HMAC ((psa_key_type_t)0x51000000)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/** A secret for key derivation.
|
|
|
|
*
|
|
|
|
* The key policy determines which key derivation algorithm the key
|
|
|
|
* can be used for.
|
|
|
|
*/
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_DERIVE ((psa_key_type_t)0x52000000)
|
2018-07-12 17:17:20 +02:00
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Key for an cipher, AEAD or MAC algorithm based on the AES block cipher.
|
|
|
|
*
|
|
|
|
* The size of the key can be 16 bytes (AES-128), 24 bytes (AES-192) or
|
|
|
|
* 32 bytes (AES-256).
|
|
|
|
*/
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_AES ((psa_key_type_t)0x40000001)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES).
|
|
|
|
*
|
|
|
|
* The size of the key can be 8 bytes (single DES), 16 bytes (2-key 3DES) or
|
|
|
|
* 24 bytes (3-key 3DES).
|
|
|
|
*
|
|
|
|
* Note that single DES and 2-key 3DES are weak and strongly
|
|
|
|
* deprecated and should only be used to decrypt legacy data. 3-key 3DES
|
|
|
|
* is weak and deprecated and should only be used in legacy protocols.
|
|
|
|
*/
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_DES ((psa_key_type_t)0x40000002)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Key for an cipher, AEAD or MAC algorithm based on the
|
|
|
|
* Camellia block cipher. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_CAMELLIA ((psa_key_type_t)0x40000003)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Key for the RC4 stream cipher.
|
|
|
|
*
|
|
|
|
* Note that RC4 is weak and deprecated and should only be used in
|
|
|
|
* legacy protocols. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_ARC4 ((psa_key_type_t)0x40000004)
|
2018-02-06 18:57:29 +01:00
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** RSA public key. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x60010000)
|
2018-02-08 09:47:44 +01:00
|
|
|
/** RSA key pair (private and public key). */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_RSA_KEYPAIR ((psa_key_type_t)0x70010000)
|
2018-08-22 18:21:32 +02:00
|
|
|
/** Whether a key type is an RSA key (pair or public-only). */
|
|
|
|
#define PSA_KEY_TYPE_IS_RSA(type) \
|
|
|
|
(PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-03-08 07:47:25 +01:00
|
|
|
/** DSA public key. */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x60020000)
|
2018-03-08 07:47:25 +01:00
|
|
|
/** DSA key pair (private and public key). */
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_DSA_KEYPAIR ((psa_key_type_t)0x70020000)
|
2018-08-22 18:21:32 +02:00
|
|
|
/** Whether a key type is an DSA key (pair or public-only). */
|
|
|
|
#define PSA_KEY_TYPE_IS_DSA(type) \
|
|
|
|
(PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-08-10 16:03:41 +02:00
|
|
|
#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x60030000)
|
|
|
|
#define PSA_KEY_TYPE_ECC_KEYPAIR_BASE ((psa_key_type_t)0x70030000)
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_KEY_TYPE_ECC_CURVE_MASK ((psa_key_type_t)0x0000ffff)
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Elliptic curve key pair. */
|
2018-03-08 07:47:25 +01:00
|
|
|
#define PSA_KEY_TYPE_ECC_KEYPAIR(curve) \
|
|
|
|
(PSA_KEY_TYPE_ECC_KEYPAIR_BASE | (curve))
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Elliptic curve public key. */
|
2018-03-08 07:47:25 +01:00
|
|
|
#define PSA_KEY_TYPE_ECC_PUBLIC_KEY(curve) \
|
|
|
|
(PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE | (curve))
|
2018-02-06 18:57:29 +01:00
|
|
|
|
2018-06-29 19:51:51 +02:00
|
|
|
/** Whether a key type is an elliptic curve key (pair or public-only). */
|
2018-02-03 22:43:28 +01:00
|
|
|
#define PSA_KEY_TYPE_IS_ECC(type) \
|
2018-03-08 07:47:25 +01:00
|
|
|
((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) & \
|
|
|
|
~PSA_KEY_TYPE_ECC_CURVE_MASK) == PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE)
|
2018-07-16 23:08:16 +02:00
|
|
|
#define PSA_KEY_TYPE_IS_ECC_KEYPAIR(type) \
|
|
|
|
(((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \
|
|
|
|
PSA_KEY_TYPE_ECC_KEYPAIR_BASE)
|
|
|
|
#define PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY(type) \
|
|
|
|
(((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \
|
|
|
|
PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE)
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2018-06-18 20:45:45 +02:00
|
|
|
/** The type of PSA elliptic curve identifiers. */
|
|
|
|
typedef uint16_t psa_ecc_curve_t;
|
|
|
|
/** Extract the curve from an elliptic curve key type. */
|
|
|
|
#define PSA_KEY_TYPE_GET_CURVE(type) \
|
|
|
|
((psa_ecc_curve_t) (PSA_KEY_TYPE_IS_ECC(type) ? \
|
|
|
|
((type) & PSA_KEY_TYPE_ECC_CURVE_MASK) : \
|
|
|
|
0))
|
|
|
|
|
|
|
|
/* The encoding of curve identifiers is currently aligned with the
|
|
|
|
* TLS Supported Groups Registry (formerly known as the
|
|
|
|
* TLS EC Named Curve Registry)
|
|
|
|
* https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8
|
2018-08-22 18:21:57 +02:00
|
|
|
* The values are defined by RFC 8422 and RFC 7027. */
|
2018-06-18 20:45:45 +02:00
|
|
|
#define PSA_ECC_CURVE_SECT163K1 ((psa_ecc_curve_t) 0x0001)
|
|
|
|
#define PSA_ECC_CURVE_SECT163R1 ((psa_ecc_curve_t) 0x0002)
|
|
|
|
#define PSA_ECC_CURVE_SECT163R2 ((psa_ecc_curve_t) 0x0003)
|
|
|
|
#define PSA_ECC_CURVE_SECT193R1 ((psa_ecc_curve_t) 0x0004)
|
|
|
|
#define PSA_ECC_CURVE_SECT193R2 ((psa_ecc_curve_t) 0x0005)
|
|
|
|
#define PSA_ECC_CURVE_SECT233K1 ((psa_ecc_curve_t) 0x0006)
|
|
|
|
#define PSA_ECC_CURVE_SECT233R1 ((psa_ecc_curve_t) 0x0007)
|
|
|
|
#define PSA_ECC_CURVE_SECT239K1 ((psa_ecc_curve_t) 0x0008)
|
|
|
|
#define PSA_ECC_CURVE_SECT283K1 ((psa_ecc_curve_t) 0x0009)
|
|
|
|
#define PSA_ECC_CURVE_SECT283R1 ((psa_ecc_curve_t) 0x000a)
|
|
|
|
#define PSA_ECC_CURVE_SECT409K1 ((psa_ecc_curve_t) 0x000b)
|
|
|
|
#define PSA_ECC_CURVE_SECT409R1 ((psa_ecc_curve_t) 0x000c)
|
|
|
|
#define PSA_ECC_CURVE_SECT571K1 ((psa_ecc_curve_t) 0x000d)
|
|
|
|
#define PSA_ECC_CURVE_SECT571R1 ((psa_ecc_curve_t) 0x000e)
|
|
|
|
#define PSA_ECC_CURVE_SECP160K1 ((psa_ecc_curve_t) 0x000f)
|
|
|
|
#define PSA_ECC_CURVE_SECP160R1 ((psa_ecc_curve_t) 0x0010)
|
|
|
|
#define PSA_ECC_CURVE_SECP160R2 ((psa_ecc_curve_t) 0x0011)
|
|
|
|
#define PSA_ECC_CURVE_SECP192K1 ((psa_ecc_curve_t) 0x0012)
|
|
|
|
#define PSA_ECC_CURVE_SECP192R1 ((psa_ecc_curve_t) 0x0013)
|
|
|
|
#define PSA_ECC_CURVE_SECP224K1 ((psa_ecc_curve_t) 0x0014)
|
|
|
|
#define PSA_ECC_CURVE_SECP224R1 ((psa_ecc_curve_t) 0x0015)
|
|
|
|
#define PSA_ECC_CURVE_SECP256K1 ((psa_ecc_curve_t) 0x0016)
|
|
|
|
#define PSA_ECC_CURVE_SECP256R1 ((psa_ecc_curve_t) 0x0017)
|
|
|
|
#define PSA_ECC_CURVE_SECP384R1 ((psa_ecc_curve_t) 0x0018)
|
|
|
|
#define PSA_ECC_CURVE_SECP521R1 ((psa_ecc_curve_t) 0x0019)
|
|
|
|
#define PSA_ECC_CURVE_BRAINPOOL_P256R1 ((psa_ecc_curve_t) 0x001a)
|
|
|
|
#define PSA_ECC_CURVE_BRAINPOOL_P384R1 ((psa_ecc_curve_t) 0x001b)
|
|
|
|
#define PSA_ECC_CURVE_BRAINPOOL_P512R1 ((psa_ecc_curve_t) 0x001c)
|
|
|
|
#define PSA_ECC_CURVE_CURVE25519 ((psa_ecc_curve_t) 0x001d)
|
|
|
|
#define PSA_ECC_CURVE_CURVE448 ((psa_ecc_curve_t) 0x001e)
|
|
|
|
|
2018-03-08 07:50:30 +01:00
|
|
|
/** The block size of a block cipher.
|
|
|
|
*
|
|
|
|
* \param type A cipher key type (value of type #psa_key_type_t).
|
|
|
|
*
|
|
|
|
* \return The block size for a block cipher, or 1 for a stream cipher.
|
2018-07-12 19:23:03 +02:00
|
|
|
* The return value is undefined if \p type is not a supported
|
2018-04-19 08:39:16 +02:00
|
|
|
* cipher key type.
|
|
|
|
*
|
|
|
|
* \note It is possible to build stream cipher algorithms on top of a block
|
|
|
|
* cipher, for example CTR mode (#PSA_ALG_CTR).
|
|
|
|
* This macro only takes the key type into account, so it cannot be
|
|
|
|
* used to determine the size of the data that #psa_cipher_update()
|
|
|
|
* might buffer for future processing in general.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* \note This macro returns a compile-time constant if its argument is one.
|
|
|
|
*
|
|
|
|
* \warning This macro may evaluate its argument multiple times.
|
|
|
|
*/
|
2018-03-07 16:40:52 +01:00
|
|
|
#define PSA_BLOCK_CIPHER_BLOCK_SIZE(type) \
|
2018-02-08 10:02:12 +01:00
|
|
|
( \
|
|
|
|
(type) == PSA_KEY_TYPE_AES ? 16 : \
|
|
|
|
(type) == PSA_KEY_TYPE_DES ? 8 : \
|
|
|
|
(type) == PSA_KEY_TYPE_CAMELLIA ? 16 : \
|
2018-03-08 07:50:30 +01:00
|
|
|
(type) == PSA_KEY_TYPE_ARC4 ? 1 : \
|
2018-02-08 10:02:12 +01:00
|
|
|
0)
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** \brief Encoding of a cryptographic algorithm.
|
|
|
|
*
|
|
|
|
* For algorithms that can be applied to multiple key types, this type
|
|
|
|
* does not encode the key type. For example, for symmetric ciphers
|
|
|
|
* based on a block cipher, #psa_algorithm_t encodes the block cipher
|
|
|
|
* mode and the padding mode while the block cipher itself is encoded
|
|
|
|
* via #psa_key_type_t.
|
|
|
|
*/
|
2018-02-03 22:44:14 +01:00
|
|
|
typedef uint32_t psa_algorithm_t;
|
|
|
|
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_VENDOR_FLAG ((psa_algorithm_t)0x80000000)
|
|
|
|
#define PSA_ALG_CATEGORY_MASK ((psa_algorithm_t)0x7f000000)
|
|
|
|
#define PSA_ALG_CATEGORY_HASH ((psa_algorithm_t)0x01000000)
|
|
|
|
#define PSA_ALG_CATEGORY_MAC ((psa_algorithm_t)0x02000000)
|
|
|
|
#define PSA_ALG_CATEGORY_CIPHER ((psa_algorithm_t)0x04000000)
|
|
|
|
#define PSA_ALG_CATEGORY_AEAD ((psa_algorithm_t)0x06000000)
|
|
|
|
#define PSA_ALG_CATEGORY_SIGN ((psa_algorithm_t)0x10000000)
|
|
|
|
#define PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION ((psa_algorithm_t)0x12000000)
|
|
|
|
#define PSA_ALG_CATEGORY_KEY_AGREEMENT ((psa_algorithm_t)0x22000000)
|
|
|
|
#define PSA_ALG_CATEGORY_KEY_DERIVATION ((psa_algorithm_t)0x30000000)
|
2018-09-18 11:52:10 +02:00
|
|
|
#define PSA_ALG_CATEGORY_KEY_SELECTION ((psa_algorithm_t)0x31000000)
|
2018-02-06 18:57:29 +01:00
|
|
|
|
|
|
|
#define PSA_ALG_IS_VENDOR_DEFINED(alg) \
|
|
|
|
(((alg) & PSA_ALG_VENDOR_FLAG) != 0)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Whether the specified algorithm is a hash algorithm.
|
|
|
|
*
|
2018-03-08 07:50:30 +01:00
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a hash algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-03-08 07:50:30 +01:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_HASH(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_HASH)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a MAC algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a MAC algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_MAC(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_MAC)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a symmetric cipher algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a symmetric cipher algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_CIPHER(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_CIPHER)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is an authenticated encryption
|
|
|
|
* with associated data (AEAD) algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is an AEAD algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_AEAD(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_AEAD)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a public-key signature algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a public-key signature algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_SIGN(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_SIGN)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a public-key encryption algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a public-key encryption algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_ASYMMETRIC_ENCRYPTION(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-09-18 11:52:10 +02:00
|
|
|
#define PSA_ALG_KEY_SELECTION_FLAG ((psa_algorithm_t)0x01000000)
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Whether the specified algorithm is a key agreement algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a key agreement algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_KEY_AGREEMENT(alg) \
|
2018-09-18 11:52:10 +02:00
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK & ~PSA_ALG_KEY_SELECTION_FLAG) == \
|
|
|
|
PSA_ALG_CATEGORY_KEY_AGREEMENT)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a key derivation algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a key derivation algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_IS_KEY_DERIVATION(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_DERIVATION)
|
|
|
|
|
2018-09-18 11:52:10 +02:00
|
|
|
/** Whether the specified algorithm is a key selection algorithm.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
|
|
|
* \return 1 if \p alg is a key selection algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_IS_KEY_SELECTION(alg) \
|
|
|
|
(((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_SELECTION)
|
|
|
|
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_HASH_MASK ((psa_algorithm_t)0x000000ff)
|
|
|
|
#define PSA_ALG_MD2 ((psa_algorithm_t)0x01000001)
|
|
|
|
#define PSA_ALG_MD4 ((psa_algorithm_t)0x01000002)
|
|
|
|
#define PSA_ALG_MD5 ((psa_algorithm_t)0x01000003)
|
2018-03-08 07:48:40 +01:00
|
|
|
#define PSA_ALG_RIPEMD160 ((psa_algorithm_t)0x01000004)
|
|
|
|
#define PSA_ALG_SHA_1 ((psa_algorithm_t)0x01000005)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-224 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_224 ((psa_algorithm_t)0x01000008)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-256 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_256 ((psa_algorithm_t)0x01000009)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-384 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_384 ((psa_algorithm_t)0x0100000a)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-512 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_512 ((psa_algorithm_t)0x0100000b)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-512/224 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_512_224 ((psa_algorithm_t)0x0100000c)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA2-512/256 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA_512_256 ((psa_algorithm_t)0x0100000d)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA3-224 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA3_224 ((psa_algorithm_t)0x01000010)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA3-256 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA3_256 ((psa_algorithm_t)0x01000011)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA3-384 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA3_384 ((psa_algorithm_t)0x01000012)
|
2018-07-20 17:42:05 +02:00
|
|
|
/** SHA3-512 */
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_SHA3_512 ((psa_algorithm_t)0x01000013)
|
|
|
|
|
2018-02-08 10:02:12 +01:00
|
|
|
#define PSA_ALG_MAC_SUBCATEGORY_MASK ((psa_algorithm_t)0x00c00000)
|
2018-02-06 18:57:29 +01:00
|
|
|
#define PSA_ALG_HMAC_BASE ((psa_algorithm_t)0x02800000)
|
2018-04-19 08:39:16 +02:00
|
|
|
/** Macro to build an HMAC algorithm.
|
|
|
|
*
|
2018-07-12 19:40:46 +02:00
|
|
|
* For example, #PSA_ALG_HMAC(#PSA_ALG_SHA_256) is HMAC-SHA-256.
|
2018-04-19 08:39:16 +02:00
|
|
|
*
|
2018-06-28 13:57:23 +02:00
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-04-19 08:39:16 +02:00
|
|
|
*
|
2018-06-28 13:57:23 +02:00
|
|
|
* \return The corresponding HMAC algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
2018-04-19 08:39:16 +02:00
|
|
|
*/
|
|
|
|
#define PSA_ALG_HMAC(hash_alg) \
|
2018-02-08 10:02:12 +01:00
|
|
|
(PSA_ALG_HMAC_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-08-22 18:25:41 +02:00
|
|
|
#define PSA_ALG_HMAC_GET_HASH(hmac_alg) \
|
2018-02-08 10:02:12 +01:00
|
|
|
(PSA_ALG_CATEGORY_HASH | ((hmac_alg) & PSA_ALG_HASH_MASK))
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is an HMAC algorithm.
|
|
|
|
*
|
|
|
|
* HMAC is a family of MAC algorithms that are based on a hash function.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is an HMAC algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-02-08 10:02:12 +01:00
|
|
|
#define PSA_ALG_IS_HMAC(alg) \
|
|
|
|
(((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
|
|
|
|
PSA_ALG_HMAC_BASE)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-08-21 14:54:54 +02:00
|
|
|
/* In the encoding of a MAC algorithm, the bits corresponding to
|
|
|
|
* PSA_ALG_MAC_TRUNCATION_MASK encode the length to which the MAC is
|
|
|
|
* truncated. As an exception, the value 0 means the untruncated algorithm,
|
|
|
|
* whatever its length is. The length is encoded in 6 bits, so it can
|
|
|
|
* reach up to 63; the largest MAC is 64 bytes so its trivial truncation
|
|
|
|
* to full length is correctly encoded as 0 and any non-trivial truncation
|
|
|
|
* is correctly encoded as a value between 1 and 63. */
|
2018-08-14 15:18:45 +02:00
|
|
|
#define PSA_ALG_MAC_TRUNCATION_MASK ((psa_algorithm_t)0x00003f00)
|
|
|
|
#define PSA_MAC_TRUNCATION_OFFSET 8
|
|
|
|
|
|
|
|
/** Macro to build a truncated MAC algorithm.
|
|
|
|
*
|
|
|
|
* A truncated MAC algorithm is identical to the corresponding MAC
|
|
|
|
* algorithm except that the MAC value for the truncated algorithm
|
|
|
|
* consists of only the first \p mac_length bytes of the MAC value
|
|
|
|
* for the untruncated algorithm.
|
|
|
|
*
|
|
|
|
* \note This macro may allow constructing algorithm identifiers that
|
|
|
|
* are not valid, either because the specified length is larger
|
|
|
|
* than the untruncated MAC or because the specified length is
|
|
|
|
* smaller than permitted by the implementation.
|
|
|
|
*
|
|
|
|
* \note It is implementation-defined whether a truncated MAC that
|
|
|
|
* is truncated to the same length as the MAC of the untruncated
|
|
|
|
* algorithm is considered identical to the untruncated algorithm
|
|
|
|
* for policy comparison purposes.
|
|
|
|
*
|
|
|
|
* \param alg A MAC algorithm identifier (value of type
|
|
|
|
* #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
|
|
|
|
* is true). This may be a truncated or untruncated
|
|
|
|
* MAC algorithm.
|
|
|
|
* \param mac_length Desired length of the truncated MAC in bytes.
|
2018-08-21 14:55:08 +02:00
|
|
|
* This must be at most the full length of the MAC
|
|
|
|
* and must be at least an implementation-specified
|
|
|
|
* minimum. The implementation-specified minimum
|
|
|
|
* shall not be zero.
|
2018-08-14 15:18:45 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding MAC algorithm with the specified
|
|
|
|
* length.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* MAC algorithm or if \p mac_length is too small or
|
|
|
|
* too large for the specified MAC algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_TRUNCATED_MAC(alg, mac_length) \
|
|
|
|
(((alg) & ~PSA_ALG_MAC_TRUNCATION_MASK) | \
|
|
|
|
((mac_length) << PSA_MAC_TRUNCATION_OFFSET & PSA_ALG_MAC_TRUNCATION_MASK))
|
|
|
|
|
2018-10-17 18:28:05 +02:00
|
|
|
/** Macro to build the base MAC algorithm corresponding to a truncated
|
|
|
|
* MAC algorithm.
|
|
|
|
*
|
|
|
|
* \param alg A MAC algorithm identifier (value of type
|
|
|
|
* #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
|
|
|
|
* is true). This may be a truncated or untruncated
|
|
|
|
* MAC algorithm.
|
|
|
|
*
|
|
|
|
* \return The corresponding base MAC algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* MAC algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_FULL_LENGTH_MAC(alg) \
|
|
|
|
((alg) & ~PSA_ALG_MAC_TRUNCATION_MASK)
|
|
|
|
|
2018-08-14 15:18:45 +02:00
|
|
|
/** Length to which a MAC algorithm is truncated.
|
|
|
|
*
|
|
|
|
* \param alg A MAC algorithm identifier (value of type
|
|
|
|
* #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg)
|
|
|
|
* is true).
|
|
|
|
*
|
|
|
|
* \return Length of the truncated MAC in bytes.
|
|
|
|
* \return 0 if \p alg is a non-truncated MAC algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* MAC algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_MAC_TRUNCATED_LENGTH(alg) \
|
|
|
|
(((alg) & PSA_ALG_MAC_TRUNCATION_MASK) >> PSA_MAC_TRUNCATION_OFFSET)
|
|
|
|
|
2018-02-08 10:02:12 +01:00
|
|
|
#define PSA_ALG_CIPHER_MAC_BASE ((psa_algorithm_t)0x02c00000)
|
|
|
|
#define PSA_ALG_CBC_MAC ((psa_algorithm_t)0x02c00001)
|
|
|
|
#define PSA_ALG_CMAC ((psa_algorithm_t)0x02c00002)
|
|
|
|
#define PSA_ALG_GMAC ((psa_algorithm_t)0x02c00003)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
|
|
|
/** Whether the specified algorithm is a MAC algorithm based on a block cipher.
|
2018-07-12 19:47:19 +02:00
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-07-12 19:23:03 +02:00
|
|
|
* \return 1 if \p alg is a MAC algorithm based on a block cipher, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier.
|
|
|
|
*/
|
2018-08-22 18:24:17 +02:00
|
|
|
#define PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) \
|
2018-02-08 10:02:12 +01:00
|
|
|
(((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
|
|
|
|
PSA_ALG_CIPHER_MAC_BASE)
|
|
|
|
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_CIPHER_STREAM_FLAG ((psa_algorithm_t)0x00800000)
|
|
|
|
#define PSA_ALG_CIPHER_FROM_BLOCK_FLAG ((psa_algorithm_t)0x00400000)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-08-21 14:02:45 +02:00
|
|
|
/** Whether the specified algorithm is a stream cipher.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* A stream cipher is a symmetric cipher that encrypts or decrypts messages
|
|
|
|
* by applying a bitwise-xor with a stream of bytes that is generated
|
|
|
|
* from a key.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* \return 1 if \p alg is a stream cipher algorithm, 0 otherwise.
|
2018-07-12 19:23:03 +02:00
|
|
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
2018-07-12 00:30:52 +02:00
|
|
|
* algorithm identifier or if it is not a symmetric cipher algorithm.
|
|
|
|
*/
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_IS_STREAM_CIPHER(alg) \
|
|
|
|
(((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_CIPHER_STREAM_FLAG)) == \
|
|
|
|
(PSA_ALG_CATEGORY_CIPHER | PSA_ALG_CIPHER_STREAM_FLAG))
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2018-08-21 14:02:45 +02:00
|
|
|
/** The ARC4 stream cipher algorithm.
|
2018-07-12 00:30:52 +02:00
|
|
|
*/
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_ARC4 ((psa_algorithm_t)0x04800001)
|
2018-07-12 19:40:46 +02:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** The CTR stream cipher mode.
|
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* CTR is a stream cipher which is built from a block cipher.
|
|
|
|
* The underlying block cipher is determined by the key type.
|
|
|
|
* For example, to use AES-128-CTR, use this algorithm with
|
2018-07-12 00:30:52 +02:00
|
|
|
* a key of type #PSA_KEY_TYPE_AES and a length of 128 bits (16 bytes).
|
|
|
|
*/
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_CTR ((psa_algorithm_t)0x04c00001)
|
2018-07-12 19:40:46 +02:00
|
|
|
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_CFB ((psa_algorithm_t)0x04c00002)
|
|
|
|
|
|
|
|
#define PSA_ALG_OFB ((psa_algorithm_t)0x04c00003)
|
|
|
|
|
|
|
|
/** The XTS cipher mode.
|
|
|
|
*
|
|
|
|
* XTS is a cipher mode which is built from a block cipher. It requires at
|
|
|
|
* least one full block of input, but beyond this minimum the input
|
|
|
|
* does not need to be a whole number of blocks.
|
2018-07-12 00:30:52 +02:00
|
|
|
*/
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_XTS ((psa_algorithm_t)0x044000ff)
|
2018-02-06 18:57:29 +01:00
|
|
|
|
2018-08-21 14:02:45 +02:00
|
|
|
/** The CBC block cipher chaining mode, with no padding.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* The underlying block cipher is determined by the key type.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* This symmetric cipher mode can only be used with messages whose lengths
|
|
|
|
* are whole number of blocks for the chosen block cipher.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_CBC_NO_PADDING ((psa_algorithm_t)0x04600100)
|
|
|
|
|
|
|
|
/** The CBC block cipher chaining mode with PKCS#7 padding.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-08-21 14:02:45 +02:00
|
|
|
* The underlying block cipher is determined by the key type.
|
|
|
|
*
|
|
|
|
* This is the padding method defined by PKCS#7 (RFC 2315) §10.3.
|
2018-07-12 00:30:52 +02:00
|
|
|
*/
|
2018-08-21 14:02:45 +02:00
|
|
|
#define PSA_ALG_CBC_PKCS7 ((psa_algorithm_t)0x04600101)
|
2018-04-22 19:19:20 +02:00
|
|
|
|
2018-08-17 19:47:52 +02:00
|
|
|
#define PSA_ALG_CCM ((psa_algorithm_t)0x06001001)
|
|
|
|
#define PSA_ALG_GCM ((psa_algorithm_t)0x06001002)
|
|
|
|
|
2018-08-21 14:54:54 +02:00
|
|
|
/* In the encoding of a AEAD algorithm, the bits corresponding to
|
|
|
|
* PSA_ALG_AEAD_TAG_LENGTH_MASK encode the length of the AEAD tag.
|
|
|
|
* The constants for default lengths follow this encoding.
|
|
|
|
*/
|
2018-08-17 19:47:52 +02:00
|
|
|
#define PSA_ALG_AEAD_TAG_LENGTH_MASK ((psa_algorithm_t)0x00003f00)
|
|
|
|
#define PSA_AEAD_TAG_LENGTH_OFFSET 8
|
|
|
|
|
|
|
|
/** Macro to build a shortened AEAD algorithm.
|
|
|
|
*
|
|
|
|
* A shortened AEAD algorithm is similar to the corresponding AEAD
|
|
|
|
* algorithm, but has an authentication tag that consists of fewer bytes.
|
|
|
|
* Depending on the algorithm, the tag length may affect the calculation
|
|
|
|
* of the ciphertext.
|
|
|
|
*
|
|
|
|
* \param alg A AEAD algorithm identifier (value of type
|
|
|
|
* #psa_algorithm_t such that #PSA_ALG_IS_AEAD(\p alg)
|
|
|
|
* is true).
|
2018-08-21 14:47:48 +02:00
|
|
|
* \param tag_length Desired length of the authentication tag in bytes.
|
2018-08-17 19:47:52 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding AEAD algorithm with the specified
|
|
|
|
* length.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* AEAD algorithm or if \p tag_length is not valid
|
|
|
|
* for the specified AEAD algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_AEAD_WITH_TAG_LENGTH(alg, tag_length) \
|
|
|
|
(((alg) & ~PSA_ALG_AEAD_TAG_LENGTH_MASK) | \
|
|
|
|
((tag_length) << PSA_AEAD_TAG_LENGTH_OFFSET & \
|
|
|
|
PSA_ALG_AEAD_TAG_LENGTH_MASK))
|
2018-02-06 18:57:29 +01:00
|
|
|
|
2018-08-20 15:07:53 +02:00
|
|
|
/** Calculate the corresponding AEAD algorithm with the default tag length.
|
|
|
|
*
|
|
|
|
* \param alg An AEAD algorithm (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
|
|
|
*
|
|
|
|
* \return The corresponding AEAD algorithm with the default tag length
|
|
|
|
* for that algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(alg) \
|
|
|
|
( \
|
|
|
|
PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(alg, PSA_ALG_CCM) \
|
|
|
|
PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(alg, PSA_ALG_GCM) \
|
|
|
|
0)
|
|
|
|
#define PSA__ALG_AEAD_WITH_DEFAULT_TAG_LENGTH__CASE(alg, ref) \
|
|
|
|
PSA_ALG_AEAD_WITH_TAG_LENGTH(alg, 0) == \
|
|
|
|
PSA_ALG_AEAD_WITH_TAG_LENGTH(ref, 0) ? \
|
|
|
|
ref :
|
|
|
|
|
2018-06-26 15:53:48 +02:00
|
|
|
#define PSA_ALG_RSA_PKCS1V15_SIGN_BASE ((psa_algorithm_t)0x10020000)
|
|
|
|
/** RSA PKCS#1 v1.5 signature with hashing.
|
|
|
|
*
|
|
|
|
* This is the signature scheme defined by RFC 8017
|
|
|
|
* (PKCS#1: RSA Cryptography Specifications) under the name
|
|
|
|
* RSASSA-PKCS1-v1_5.
|
|
|
|
*
|
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-06-26 15:53:48 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding RSA PKCS#1 v1.5 signature algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
2018-03-28 14:16:50 +02:00
|
|
|
#define PSA_ALG_RSA_PKCS1V15_SIGN(hash_alg) \
|
2018-06-26 15:53:48 +02:00
|
|
|
(PSA_ALG_RSA_PKCS1V15_SIGN_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
/** Raw PKCS#1 v1.5 signature.
|
|
|
|
*
|
|
|
|
* The input to this algorithm is the DigestInfo structure used by
|
|
|
|
* RFC 8017 (PKCS#1: RSA Cryptography Specifications), §9.2
|
|
|
|
* steps 3–6.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_RSA_PKCS1V15_SIGN_RAW PSA_ALG_RSA_PKCS1V15_SIGN_BASE
|
2018-03-28 14:16:50 +02:00
|
|
|
#define PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) \
|
2018-06-26 15:53:48 +02:00
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PKCS1V15_SIGN_BASE)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-06-26 15:53:48 +02:00
|
|
|
#define PSA_ALG_RSA_PSS_BASE ((psa_algorithm_t)0x10030000)
|
|
|
|
/** RSA PSS signature with hashing.
|
|
|
|
*
|
|
|
|
* This is the signature scheme defined by RFC 8017
|
|
|
|
* (PKCS#1: RSA Cryptography Specifications) under the name
|
2018-06-29 23:35:02 +02:00
|
|
|
* RSASSA-PSS, with the message generation function MGF1, and with
|
|
|
|
* a salt length equal to the length of the hash. The specified
|
2018-06-26 15:53:48 +02:00
|
|
|
* hash algorithm is used to hash the input message, to create the
|
|
|
|
* salted hash, and for the mask generation.
|
|
|
|
*
|
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-06-26 15:53:48 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding RSA PSS signature algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_RSA_PSS(hash_alg) \
|
|
|
|
(PSA_ALG_RSA_PSS_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
#define PSA_ALG_IS_RSA_PSS(alg) \
|
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PSS_BASE)
|
|
|
|
|
2018-06-26 16:10:23 +02:00
|
|
|
#define PSA_ALG_DSA_BASE ((psa_algorithm_t)0x10040000)
|
|
|
|
/** DSA signature with hashing.
|
|
|
|
*
|
|
|
|
* This is the signature scheme defined by FIPS 186-4,
|
|
|
|
* with a random per-message secret number (*k*).
|
|
|
|
*
|
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-06-26 16:10:23 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding DSA signature algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_DSA(hash_alg) \
|
|
|
|
(PSA_ALG_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
#define PSA_ALG_DETERMINISTIC_DSA_BASE ((psa_algorithm_t)0x10050000)
|
|
|
|
#define PSA_ALG_DSA_DETERMINISTIC_FLAG ((psa_algorithm_t)0x00010000)
|
|
|
|
#define PSA_ALG_DETERMINISTIC_DSA(hash_alg) \
|
|
|
|
(PSA_ALG_DETERMINISTIC_DSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
#define PSA_ALG_IS_DSA(alg) \
|
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_DSA_DETERMINISTIC_FLAG) == \
|
|
|
|
PSA_ALG_DSA_BASE)
|
|
|
|
#define PSA_ALG_DSA_IS_DETERMINISTIC(alg) \
|
|
|
|
(((alg) & PSA_ALG_DSA_DETERMINISTIC_FLAG) != 0)
|
2018-07-16 23:08:16 +02:00
|
|
|
#define PSA_ALG_IS_DETERMINISTIC_DSA(alg) \
|
|
|
|
(PSA_ALG_IS_DSA(alg) && PSA_ALG_DSA_IS_DETERMINISTIC(alg))
|
|
|
|
#define PSA_ALG_IS_RANDOMIZED_DSA(alg) \
|
|
|
|
(PSA_ALG_IS_DSA(alg) && !PSA_ALG_DSA_IS_DETERMINISTIC(alg))
|
2018-06-26 16:10:23 +02:00
|
|
|
|
|
|
|
#define PSA_ALG_ECDSA_BASE ((psa_algorithm_t)0x10060000)
|
|
|
|
/** ECDSA signature with hashing.
|
|
|
|
*
|
|
|
|
* This is the ECDSA signature scheme defined by ANSI X9.62,
|
|
|
|
* with a random per-message secret number (*k*).
|
|
|
|
*
|
2018-06-28 13:56:01 +02:00
|
|
|
* The representation of the signature as a byte string consists of
|
|
|
|
* the concatentation of the signature values *r* and *s*. Each of
|
|
|
|
* *r* and *s* is encoded as an *N*-octet string, where *N* is the length
|
|
|
|
* of the base point of the curve in octets. Each value is represented
|
|
|
|
* in big-endian order (most significant octet first).
|
|
|
|
*
|
2018-06-26 16:10:23 +02:00
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-06-26 16:10:23 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding ECDSA signature algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_ECDSA(hash_alg) \
|
|
|
|
(PSA_ALG_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
/** ECDSA signature without hashing.
|
|
|
|
*
|
2018-06-28 13:56:01 +02:00
|
|
|
* This is the same signature scheme as #PSA_ALG_ECDSA(), but
|
2018-06-26 16:10:23 +02:00
|
|
|
* without specifying a hash algorithm. This algorithm may only be
|
|
|
|
* used to sign or verify a sequence of bytes that should be an
|
|
|
|
* already-calculated hash. Note that the input is padded with
|
|
|
|
* zeros on the left or truncated on the left as required to fit
|
|
|
|
* the curve size.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_ECDSA_ANY PSA_ALG_ECDSA_BASE
|
|
|
|
#define PSA_ALG_DETERMINISTIC_ECDSA_BASE ((psa_algorithm_t)0x10070000)
|
|
|
|
/** Deterministic ECDSA signature with hashing.
|
|
|
|
*
|
|
|
|
* This is the deterministic ECDSA signature scheme defined by RFC 6979.
|
|
|
|
*
|
2018-06-28 13:56:01 +02:00
|
|
|
* The representation of a signature is the same as with #PSA_ALG_ECDSA().
|
|
|
|
*
|
2018-06-26 16:10:23 +02:00
|
|
|
* Note that when this algorithm is used for verification, signatures
|
2018-07-12 19:23:03 +02:00
|
|
|
* made with randomized ECDSA (#PSA_ALG_ECDSA(\p hash_alg)) with the
|
2018-06-26 16:10:23 +02:00
|
|
|
* same private key are accepted. In other words,
|
2018-07-12 19:23:03 +02:00
|
|
|
* #PSA_ALG_DETERMINISTIC_ECDSA(\p hash_alg) differs from
|
|
|
|
* #PSA_ALG_ECDSA(\p hash_alg) only for signature, not for verification.
|
2018-06-26 16:10:23 +02:00
|
|
|
*
|
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
2018-06-26 16:10:23 +02:00
|
|
|
*
|
|
|
|
* \return The corresponding deterministic ECDSA signature
|
|
|
|
* algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_DETERMINISTIC_ECDSA(hash_alg) \
|
|
|
|
(PSA_ALG_DETERMINISTIC_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
#define PSA_ALG_IS_ECDSA(alg) \
|
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_DSA_DETERMINISTIC_FLAG) == \
|
|
|
|
PSA_ALG_ECDSA_BASE)
|
|
|
|
#define PSA_ALG_ECDSA_IS_DETERMINISTIC(alg) \
|
|
|
|
(((alg) & PSA_ALG_DSA_DETERMINISTIC_FLAG) != 0)
|
2018-07-16 23:08:16 +02:00
|
|
|
#define PSA_ALG_IS_DETERMINISTIC_ECDSA(alg) \
|
|
|
|
(PSA_ALG_IS_ECDSA(alg) && PSA_ALG_ECDSA_IS_DETERMINISTIC(alg))
|
|
|
|
#define PSA_ALG_IS_RANDOMIZED_ECDSA(alg) \
|
|
|
|
(PSA_ALG_IS_ECDSA(alg) && !PSA_ALG_ECDSA_IS_DETERMINISTIC(alg))
|
2018-06-26 16:10:23 +02:00
|
|
|
|
2018-06-26 15:50:08 +02:00
|
|
|
/** Get the hash used by a hash-and-sign signature algorithm.
|
|
|
|
*
|
|
|
|
* A hash-and-sign algorithm is a signature algorithm which is
|
|
|
|
* composed of two phases: first a hashing phase which does not use
|
|
|
|
* the key and produces a hash of the input message, then a signing
|
|
|
|
* phase which only uses the hash and the key and not the message
|
|
|
|
* itself.
|
|
|
|
*
|
|
|
|
* \param alg A signature algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_SIGN(\p alg) is true).
|
2018-06-26 15:50:08 +02:00
|
|
|
*
|
|
|
|
* \return The underlying hash algorithm if \p alg is a hash-and-sign
|
|
|
|
* algorithm.
|
|
|
|
* \return 0 if \p alg is a signature algorithm that does not
|
|
|
|
* follow the hash-and-sign structure.
|
|
|
|
* \return Unspecified if \p alg is not a signature algorithm or
|
|
|
|
* if it is not supported by the implementation.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_SIGN_GET_HASH(alg) \
|
2018-06-26 16:10:23 +02:00
|
|
|
(PSA_ALG_IS_RSA_PSS(alg) || PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) || \
|
|
|
|
PSA_ALG_IS_DSA(alg) || PSA_ALG_IS_ECDSA(alg) ? \
|
2018-06-29 22:24:24 +02:00
|
|
|
((alg) & PSA_ALG_HASH_MASK) == 0 ? /*"raw" algorithm*/ 0 : \
|
2018-06-26 15:50:08 +02:00
|
|
|
((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \
|
|
|
|
0)
|
2018-01-28 13:16:24 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** RSA PKCS#1 v1.5 encryption.
|
|
|
|
*/
|
2018-06-26 15:53:48 +02:00
|
|
|
#define PSA_ALG_RSA_PKCS1V15_CRYPT ((psa_algorithm_t)0x12020000)
|
2018-07-12 00:30:52 +02:00
|
|
|
|
2018-06-26 15:53:48 +02:00
|
|
|
#define PSA_ALG_RSA_OAEP_BASE ((psa_algorithm_t)0x12030000)
|
2018-07-12 00:30:52 +02:00
|
|
|
/** RSA OAEP encryption.
|
|
|
|
*
|
|
|
|
* This is the encryption scheme defined by RFC 8017
|
|
|
|
* (PKCS#1: RSA Cryptography Specifications) under the name
|
|
|
|
* RSAES-OAEP, with the message generation function MGF1.
|
|
|
|
*
|
|
|
|
* \param hash_alg The hash algorithm (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true) to use
|
|
|
|
* for MGF1.
|
|
|
|
*
|
|
|
|
* \return The corresponding RSA OAEP signature algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
2018-06-26 15:53:48 +02:00
|
|
|
#define PSA_ALG_RSA_OAEP(hash_alg) \
|
|
|
|
(PSA_ALG_RSA_OAEP_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
#define PSA_ALG_IS_RSA_OAEP(alg) \
|
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_OAEP_BASE)
|
2018-06-30 00:21:29 +02:00
|
|
|
#define PSA_ALG_RSA_OAEP_GET_HASH(alg) \
|
|
|
|
(PSA_ALG_IS_RSA_OAEP(alg) ? \
|
|
|
|
((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \
|
|
|
|
0)
|
2018-06-07 09:49:39 +02:00
|
|
|
|
2018-07-12 17:22:21 +02:00
|
|
|
#define PSA_ALG_HKDF_BASE ((psa_algorithm_t)0x30000100)
|
|
|
|
/** Macro to build an HKDF algorithm.
|
|
|
|
*
|
|
|
|
* For example, `PSA_ALG_HKDF(PSA_ALG_SHA256)` is HKDF using HMAC-SHA-256.
|
|
|
|
*
|
|
|
|
* \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_HASH(\p hash_alg) is true).
|
|
|
|
*
|
|
|
|
* \return The corresponding HKDF algorithm.
|
|
|
|
* \return Unspecified if \p alg is not a supported
|
|
|
|
* hash algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_HKDF(hash_alg) \
|
|
|
|
(PSA_ALG_HKDF_BASE | ((hash_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
/** Whether the specified algorithm is an HKDF algorithm.
|
|
|
|
*
|
|
|
|
* HKDF is a family of key derivation algorithms that are based on a hash
|
|
|
|
* function and the HMAC construction.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
|
|
|
* \return 1 if \c alg is an HKDF algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \c alg is not a supported
|
|
|
|
* key derivation algorithm identifier.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_IS_HKDF(alg) \
|
|
|
|
(((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_HKDF_BASE)
|
|
|
|
#define PSA_ALG_HKDF_GET_HASH(hkdf_alg) \
|
|
|
|
(PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK))
|
|
|
|
|
2018-09-18 11:52:10 +02:00
|
|
|
#define PSA_ALG_KEY_DERIVATION_MASK ((psa_algorithm_t)0x010fffff)
|
|
|
|
|
|
|
|
/** Use a shared secret as is.
|
|
|
|
*
|
|
|
|
* Specify this algorithm as the selection component of a key agreement
|
|
|
|
* to use the raw result of the key agreement as key material.
|
|
|
|
*
|
|
|
|
* \warning The raw result of a key agreement algorithm such as finite-field
|
|
|
|
* Diffie-Hellman or elliptic curve Diffie-Hellman has biases and should
|
|
|
|
* not be used directly as key material. It can however be used as the secret
|
|
|
|
* input in a key derivation algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_SELECT_RAW ((psa_algorithm_t)0x31000001)
|
|
|
|
|
|
|
|
#define PSA_ALG_KEY_AGREEMENT_GET_KDF(alg) \
|
|
|
|
(((alg) & PSA_ALG_KEY_DERIVATION_MASK) | PSA_ALG_CATEGORY_KEY_DERIVATION)
|
|
|
|
|
|
|
|
#define PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) \
|
|
|
|
((alg) & ~PSA_ALG_KEY_DERIVATION_MASK)
|
2018-09-18 11:54:43 +02:00
|
|
|
|
|
|
|
#define PSA_ALG_FFDH_BASE ((psa_algorithm_t)0x22100000)
|
|
|
|
/** The Diffie-Hellman key agreement algorithm.
|
|
|
|
*
|
2018-10-25 22:21:03 +02:00
|
|
|
* This algorithm combines the finite-field Diffie-Hellman (DH) key
|
|
|
|
* agreement, also known as Diffie-Hellman-Merkle (DHM) key agreement,
|
|
|
|
* to produce a shared secret from a private key and the peer's
|
2018-09-18 11:54:43 +02:00
|
|
|
* public key, with a key selection or key derivation algorithm to produce
|
|
|
|
* one or more shared keys and other shared cryptographic material.
|
|
|
|
*
|
2018-11-15 17:47:25 +01:00
|
|
|
* The shared secret produced by key agreement and passed as input to the
|
|
|
|
* derivation or selection algorithm \p kdf_alg is the shared secret
|
|
|
|
* `g^{ab}` in big-endian format.
|
|
|
|
* It is `ceiling(m / 8)` bytes long where `m` is the size of the prime `p`
|
|
|
|
* in bits.
|
2018-10-25 22:22:11 +02:00
|
|
|
*
|
2018-09-18 11:54:43 +02:00
|
|
|
* \param kdf_alg A key derivation algorithm (\c PSA_ALG_XXX value such
|
|
|
|
* that #PSA_ALG_IS_KEY_DERIVATION(\p hash_alg) is true)
|
|
|
|
* or a key selection algorithm (\c PSA_ALG_XXX value such
|
|
|
|
* that #PSA_ALG_IS_SELECTION(\p hash_alg) is true).
|
|
|
|
*
|
|
|
|
* \return The Diffie-Hellman algorithm with the specified
|
|
|
|
* selection or derivation algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_FFDH(kdf_alg) \
|
|
|
|
(PSA_ALG_FFDH_BASE | ((kdf_alg) & PSA_ALG_KEY_DERIVATION_MASK))
|
|
|
|
/** Whether the specified algorithm is a finite field Diffie-Hellman algorithm.
|
|
|
|
*
|
|
|
|
* This includes every supported key selection or key agreement algorithm
|
|
|
|
* for the output of the Diffie-Hellman calculation.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
|
|
|
* \return 1 if \c alg is a finite field Diffie-Hellman algorithm, 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \c alg is not a supported
|
|
|
|
* key agreement algorithm identifier.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_IS_FFDH(alg) \
|
|
|
|
(PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_FFDH_BASE)
|
|
|
|
|
|
|
|
#define PSA_ALG_ECDH_BASE ((psa_algorithm_t)0x22200000)
|
2018-10-25 22:21:03 +02:00
|
|
|
/** The elliptic curve Diffie-Hellman (ECDH) key agreement algorithm.
|
2018-09-18 11:54:43 +02:00
|
|
|
*
|
|
|
|
* This algorithm combines the elliptic curve Diffie-Hellman key
|
|
|
|
* agreement to produce a shared secret from a private key and the peer's
|
|
|
|
* public key, with a key selection or key derivation algorithm to produce
|
|
|
|
* one or more shared keys and other shared cryptographic material.
|
|
|
|
*
|
2018-11-14 21:05:10 +01:00
|
|
|
* The shared secret produced by key agreement and passed as input to the
|
|
|
|
* derivation or selection algorithm \p kdf_alg is the x-coordinate of
|
2018-11-15 17:44:43 +01:00
|
|
|
* the shared secret point. It is always `ceiling(m / 8)` bytes long where
|
|
|
|
* `m` is the bit size associated with the curve, i.e. the bit size of the
|
|
|
|
* order of the curve's coordinate field. When `m` is not a multiple of 8,
|
2018-11-14 21:05:10 +01:00
|
|
|
* the byte containing the most significant bit of the shared secret
|
|
|
|
* is padded with zero bits. The byte order is either little-endian
|
|
|
|
* or big-endian depending on the curve type.
|
|
|
|
*
|
|
|
|
* - For Montgomery curves (curve types `PSA_ECC_CURVE_CURVEXXX`),
|
|
|
|
* the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
|
|
|
|
* in little-endian byte order.
|
|
|
|
* The bit size is 448 for Curve448 and 255 for Curve25519.
|
|
|
|
* - For Weierstrass curves over prime fields (curve types
|
|
|
|
* `PSA_ECC_CURVE_SECPXXX` and `PSA_ECC_CURVE_BRAINPOOL_PXXX`),
|
|
|
|
* the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
|
|
|
|
* in big-endian byte order.
|
2018-11-15 17:44:43 +01:00
|
|
|
* The bit size is `m = ceiling(log_2(p))` for the field `F_p`.
|
2018-11-14 21:05:10 +01:00
|
|
|
* - For Weierstrass curves over binary fields (curve types
|
|
|
|
* `PSA_ECC_CURVE_SECTXXX`),
|
|
|
|
* the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A`
|
|
|
|
* in big-endian byte order.
|
2018-11-15 17:44:43 +01:00
|
|
|
* The bit size is `m` for the field `F_{2^m}`.
|
2018-10-25 22:22:11 +02:00
|
|
|
*
|
2018-09-18 11:54:43 +02:00
|
|
|
* \param kdf_alg A key derivation algorithm (\c PSA_ALG_XXX value such
|
|
|
|
* that #PSA_ALG_IS_KEY_DERIVATION(\p hash_alg) is true)
|
|
|
|
* or a selection algorithm (\c PSA_ALG_XXX value such
|
|
|
|
* that #PSA_ALG_IS_KEY_SELECTION(\p hash_alg) is true).
|
|
|
|
*
|
|
|
|
* \return The Diffie-Hellman algorithm with the specified
|
|
|
|
* selection or derivation algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_ECDH(kdf_alg) \
|
|
|
|
(PSA_ALG_ECDH_BASE | ((kdf_alg) & PSA_ALG_KEY_DERIVATION_MASK))
|
|
|
|
/** Whether the specified algorithm is an elliptic curve Diffie-Hellman
|
|
|
|
* algorithm.
|
|
|
|
*
|
|
|
|
* This includes every supported key selection or key agreement algorithm
|
|
|
|
* for the output of the Diffie-Hellman calculation.
|
|
|
|
*
|
|
|
|
* \param alg An algorithm identifier (value of type #psa_algorithm_t).
|
|
|
|
*
|
|
|
|
* \return 1 if \c alg is an elliptic curve Diffie-Hellman algorithm,
|
|
|
|
* 0 otherwise.
|
|
|
|
* This macro may return either 0 or 1 if \c alg is not a supported
|
|
|
|
* key agreement algorithm identifier.
|
|
|
|
*/
|
|
|
|
#define PSA_ALG_IS_ECDH(alg) \
|
|
|
|
(PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_ECDH_BASE)
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/**@}*/
|
|
|
|
|
|
|
|
/** \defgroup key_management Key management
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Import a key in binary format.
|
|
|
|
*
|
2018-03-07 16:40:18 +01:00
|
|
|
* This function supports any output from psa_export_key(). Refer to the
|
2018-10-31 14:07:52 +01:00
|
|
|
* documentation of psa_export_public_key() for the format of public keys
|
|
|
|
* and to the documentation of psa_export_key() for the format for
|
|
|
|
* other key types.
|
|
|
|
*
|
|
|
|
* This specification supports a single format for each key type.
|
|
|
|
* Implementations may support other formats as long as the standard
|
|
|
|
* format is supported. Implementations that support other formats
|
|
|
|
* should ensure that the formats are clearly unambiguous so as to
|
|
|
|
* minimize the risk that an invalid input is accidentally interpreted
|
|
|
|
* according to a different format.
|
2018-01-28 13:16:24 +01:00
|
|
|
*
|
2018-02-08 09:47:44 +01:00
|
|
|
* \param key Slot where the key will be stored. This must be a
|
|
|
|
* valid slot for a key of the chosen type. It must
|
|
|
|
* be unoccupied.
|
2018-10-31 14:07:52 +01:00
|
|
|
* \param type Key type (a \c PSA_KEY_TYPE_XXX value). On a successful
|
|
|
|
* import, the key slot will contain a key of this type.
|
|
|
|
* \param[in] data Buffer containing the key data. The content of this
|
|
|
|
* buffer is interpreted according to \p type. It must
|
|
|
|
* contain the format described in the documentation
|
|
|
|
* of psa_export_key() or psa_export_public_key() for
|
|
|
|
* the chosen type.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param data_length Size of the \p data buffer in bytes.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-04-19 08:28:58 +02:00
|
|
|
* The key type or key size is not supported, either by the
|
|
|
|
* implementation in general or in this particular slot.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-02-08 09:47:44 +01:00
|
|
|
* The key slot is invalid,
|
|
|
|
* or the key data is not correctly formatted.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
2018-04-19 08:28:58 +02:00
|
|
|
* There is already a key in the specified slot.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_STORAGE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-01-28 13:16:24 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_import_key(psa_key_slot_t key,
|
|
|
|
psa_key_type_t type,
|
|
|
|
const uint8_t *data,
|
|
|
|
size_t data_length);
|
|
|
|
|
|
|
|
/**
|
2018-04-19 08:38:16 +02:00
|
|
|
* \brief Destroy a key and restore the slot to its default state.
|
|
|
|
*
|
|
|
|
* This function destroys the content of the key slot from both volatile
|
|
|
|
* memory and, if applicable, non-volatile storage. Implementations shall
|
|
|
|
* make a best effort to ensure that any previous content of the slot is
|
|
|
|
* unrecoverable.
|
|
|
|
*
|
|
|
|
* This function also erases any metadata such as policies. It returns the
|
|
|
|
* specified slot to its default state.
|
|
|
|
*
|
|
|
|
* \param key The key slot to erase.
|
2018-01-28 13:16:24 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-04-19 08:28:58 +02:00
|
|
|
* The slot's content, if any, has been erased.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
2018-04-19 08:28:58 +02:00
|
|
|
* The slot holds content and cannot be erased because it is
|
|
|
|
* read-only, either due to a policy or due to physical restrictions.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-04-19 08:28:58 +02:00
|
|
|
* The specified slot number does not designate a valid slot.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
2018-04-19 08:28:58 +02:00
|
|
|
* There was an failure in communication with the cryptoprocessor.
|
|
|
|
* The key material may still be present in the cryptoprocessor.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_STORAGE_FAILURE
|
2018-04-19 08:28:58 +02:00
|
|
|
* The storage is corrupted. Implementations shall make a best effort
|
|
|
|
* to erase key material even in this stage, however applications
|
|
|
|
* should be aware that it may be impossible to guarantee that the
|
|
|
|
* key material is not recoverable in such cases.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-04-19 08:28:58 +02:00
|
|
|
* An unexpected condition which is not a storage corruption or
|
|
|
|
* a communication failure occurred. The cryptoprocessor may have
|
|
|
|
* been compromised.
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-01-28 13:16:24 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_destroy_key(psa_key_slot_t key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Get basic metadata about a key.
|
|
|
|
*
|
2018-02-08 09:47:44 +01:00
|
|
|
* \param key Slot whose content is queried. This must
|
|
|
|
* be an occupied key slot.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] type On success, the key type (a \c PSA_KEY_TYPE_XXX value).
|
2018-02-08 09:47:44 +01:00
|
|
|
* This may be a null pointer, in which case the key type
|
|
|
|
* is not written.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] bits On success, the key size in bits.
|
2018-03-21 20:49:16 +01:00
|
|
|
* This may be a null pointer, in which case the key size
|
2018-02-08 09:47:44 +01:00
|
|
|
* is not written.
|
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-01-28 13:16:24 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_get_key_information(psa_key_slot_t key,
|
|
|
|
psa_key_type_t *type,
|
|
|
|
size_t *bits);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Export a key in binary format.
|
|
|
|
*
|
|
|
|
* The output of this function can be passed to psa_import_key() to
|
|
|
|
* create an equivalent object.
|
|
|
|
*
|
2018-10-31 14:07:52 +01:00
|
|
|
* If the implementation of psa_import_key() supports other formats
|
|
|
|
* beyond the format specified here, the output from psa_export_key()
|
|
|
|
* must use the representation specified here, not the original
|
|
|
|
* representation.
|
2018-01-28 13:16:24 +01:00
|
|
|
*
|
2018-02-08 09:47:44 +01:00
|
|
|
* For standard key types, the output format is as follows:
|
|
|
|
*
|
|
|
|
* - For symmetric keys (including MAC keys), the format is the
|
|
|
|
* raw bytes of the key.
|
|
|
|
* - For DES, the key data consists of 8 bytes. The parity bits must be
|
|
|
|
* correct.
|
|
|
|
* - For Triple-DES, the format is the concatenation of the
|
|
|
|
* two or three DES keys.
|
2018-03-03 21:29:30 +01:00
|
|
|
* - For RSA key pairs (#PSA_KEY_TYPE_RSA_KEYPAIR), the format
|
2018-08-10 18:57:40 +02:00
|
|
|
* is the non-encrypted DER encoding of the representation defined by
|
|
|
|
* PKCS\#1 (RFC 8017) as `RSAPrivateKey`, version 0.
|
|
|
|
* ```
|
|
|
|
* RSAPrivateKey ::= SEQUENCE {
|
2018-08-11 01:17:53 +02:00
|
|
|
* version INTEGER, -- must be 0
|
2018-08-10 18:57:40 +02:00
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER, -- e
|
|
|
|
* privateExponent INTEGER, -- d
|
|
|
|
* prime1 INTEGER, -- p
|
|
|
|
* prime2 INTEGER, -- q
|
|
|
|
* exponent1 INTEGER, -- d mod (p-1)
|
|
|
|
* exponent2 INTEGER, -- d mod (q-1)
|
|
|
|
* coefficient INTEGER, -- (inverse of q) mod p
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* - For DSA private keys (#PSA_KEY_TYPE_DSA_KEYPAIR), the format
|
|
|
|
* is the non-encrypted DER encoding of the representation used by
|
2018-08-13 17:24:59 +02:00
|
|
|
* OpenSSL and OpenSSH, whose structure is described in ASN.1 as follows:
|
2018-08-10 18:57:40 +02:00
|
|
|
* ```
|
|
|
|
* DSAPrivateKey ::= SEQUENCE {
|
2018-08-11 01:17:53 +02:00
|
|
|
* version INTEGER, -- must be 0
|
2018-08-10 18:57:40 +02:00
|
|
|
* prime INTEGER, -- p
|
|
|
|
* subprime INTEGER, -- q
|
|
|
|
* generator INTEGER, -- g
|
|
|
|
* public INTEGER, -- y
|
|
|
|
* private INTEGER, -- x
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* - For elliptic curve key pairs (key types for which
|
2018-10-29 19:24:33 +01:00
|
|
|
* #PSA_KEY_TYPE_IS_ECC_KEYPAIR is true), the format is
|
2018-11-15 17:44:43 +01:00
|
|
|
* a representation of the private value as a `ceiling(m/8)`-byte string
|
|
|
|
* where `m` is the bit size associated with the curve, i.e. the bit size
|
|
|
|
* of the order of the curve's coordinate field. This byte string is
|
|
|
|
* in little-endian order for Montgomery curves (curve types
|
|
|
|
* `PSA_ECC_CURVE_CURVEXXX`), and in big-endian order for Weierstrass
|
|
|
|
* curves (curve types `PSA_ECC_CURVE_SECTXXX`, `PSA_ECC_CURVE_SECPXXX`
|
|
|
|
* and `PSA_ECC_CURVE_BRAINPOOL_PXXX`).
|
2018-10-29 19:24:33 +01:00
|
|
|
* This is the content of the `privateKey` field of the `ECPrivateKey`
|
|
|
|
* format defined by RFC 5915.
|
2018-08-10 18:57:40 +02:00
|
|
|
* - For public keys (key types for which #PSA_KEY_TYPE_IS_PUBLIC_KEY is
|
|
|
|
* true), the format is the same as for psa_export_public_key().
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param key Slot whose content is to be exported. This must
|
|
|
|
* be an occupied key slot.
|
|
|
|
* \param[out] data Buffer where the key data is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param data_size Size of the \p data buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] data_length On success, the number of bytes
|
|
|
|
* that make up the key data.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
2018-07-24 17:33:30 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-08-10 19:06:59 +02:00
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p data buffer is too small. You can determine a
|
|
|
|
* sufficient buffer size by calling
|
|
|
|
* #PSA_KEY_EXPORT_MAX_SIZE(\c type, \c bits)
|
|
|
|
* where \c type is the key type
|
|
|
|
* and \c bits is the key size in bits.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-01-28 13:16:24 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_export_key(psa_key_slot_t key,
|
|
|
|
uint8_t *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t *data_length);
|
|
|
|
|
2018-03-03 21:30:44 +01:00
|
|
|
/**
|
|
|
|
* \brief Export a public key or the public part of a key pair in binary format.
|
|
|
|
*
|
|
|
|
* The output of this function can be passed to psa_import_key() to
|
|
|
|
* create an object that is equivalent to the public key.
|
|
|
|
*
|
2018-08-10 18:57:40 +02:00
|
|
|
* The format is the DER representation defined by RFC 5280 as
|
|
|
|
* `SubjectPublicKeyInfo`, with the `subjectPublicKey` format
|
|
|
|
* specified below.
|
|
|
|
* ```
|
|
|
|
* SubjectPublicKeyInfo ::= SEQUENCE {
|
|
|
|
* algorithm AlgorithmIdentifier,
|
|
|
|
* subjectPublicKey BIT STRING }
|
|
|
|
* AlgorithmIdentifier ::= SEQUENCE {
|
|
|
|
* algorithm OBJECT IDENTIFIER,
|
|
|
|
* parameters ANY DEFINED BY algorithm OPTIONAL }
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* - For RSA public keys (#PSA_KEY_TYPE_RSA_PUBLIC_KEY),
|
|
|
|
* the `subjectPublicKey` format is defined by RFC 3279 §2.3.1 as
|
|
|
|
* `RSAPublicKey`,
|
|
|
|
* with the OID `rsaEncryption`,
|
|
|
|
* and with the parameters `NULL`.
|
|
|
|
* ```
|
|
|
|
* pkcs-1 OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
|
|
|
|
* rsadsi(113549) pkcs(1) 1 }
|
|
|
|
* rsaEncryption OBJECT IDENTIFIER ::= { pkcs-1 1 }
|
|
|
|
*
|
|
|
|
* RSAPublicKey ::= SEQUENCE {
|
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER } -- e
|
|
|
|
* ```
|
|
|
|
* - For DSA public keys (#PSA_KEY_TYPE_DSA_PUBLIC_KEY),
|
|
|
|
* the `subjectPublicKey` format is defined by RFC 3279 §2.3.2 as
|
|
|
|
* `DSAPublicKey`,
|
|
|
|
* with the OID `id-dsa`,
|
|
|
|
* and with the parameters `DSS-Parms`.
|
|
|
|
* ```
|
|
|
|
* id-dsa OBJECT IDENTIFIER ::= {
|
|
|
|
* iso(1) member-body(2) us(840) x9-57(10040) x9cm(4) 1 }
|
|
|
|
*
|
|
|
|
* Dss-Parms ::= SEQUENCE {
|
|
|
|
* p INTEGER,
|
|
|
|
* q INTEGER,
|
|
|
|
* g INTEGER }
|
|
|
|
* DSAPublicKey ::= INTEGER -- public key, Y
|
|
|
|
* ```
|
|
|
|
* - For elliptic curve public keys (key types for which
|
|
|
|
* #PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY is true),
|
|
|
|
* the `subjectPublicKey` format is defined by RFC 3279 §2.3.5 as
|
2018-08-11 01:17:53 +02:00
|
|
|
* `ECPoint`, which contains the uncompressed
|
2018-08-10 18:57:40 +02:00
|
|
|
* representation defined by SEC1 §2.3.3.
|
|
|
|
* The OID is `id-ecPublicKey`,
|
2018-08-11 01:17:53 +02:00
|
|
|
* and the parameters must be given as a `namedCurve` OID as specified in
|
2018-08-13 17:24:59 +02:00
|
|
|
* RFC 5480 §2.1.1.1 or other applicable standards.
|
2018-08-10 18:57:40 +02:00
|
|
|
* ```
|
|
|
|
* ansi-X9-62 OBJECT IDENTIFIER ::=
|
|
|
|
* { iso(1) member-body(2) us(840) 10045 }
|
|
|
|
* id-public-key-type OBJECT IDENTIFIER ::= { ansi-X9.62 2 }
|
|
|
|
* id-ecPublicKey OBJECT IDENTIFIER ::= { id-publicKeyType 1 }
|
|
|
|
*
|
2018-08-11 01:17:53 +02:00
|
|
|
* ECPoint ::= ...
|
|
|
|
* -- first 8 bits: 0x04;
|
2018-11-15 17:44:43 +01:00
|
|
|
* -- then x_P as a `ceiling(m/8)`-byte string, big endian;
|
|
|
|
* -- then y_P as a `ceiling(m/8)`-byte string, big endian;
|
|
|
|
* -- where `m` is the bit size associated with the curve,
|
2018-11-14 21:05:10 +01:00
|
|
|
* -- i.e. the bit size of `q` for a curve over `F_q`.
|
2018-08-10 18:57:40 +02:00
|
|
|
*
|
|
|
|
* EcpkParameters ::= CHOICE { -- other choices are not allowed
|
|
|
|
* namedCurve OBJECT IDENTIFIER }
|
|
|
|
* ```
|
2018-03-03 21:30:44 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param key Slot whose content is to be exported. This must
|
|
|
|
* be an occupied key slot.
|
|
|
|
* \param[out] data Buffer where the key data is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param data_size Size of the \p data buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] data_length On success, the number of bytes
|
|
|
|
* that make up the key data.
|
2018-03-03 21:30:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-08-10 19:06:59 +02:00
|
|
|
* The key is neither a public key nor a key pair.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p data buffer is too small. You can determine a
|
|
|
|
* sufficient buffer size by calling
|
|
|
|
* #PSA_KEY_EXPORT_MAX_SIZE(#PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(\c type), \c bits)
|
|
|
|
* where \c type is the key type
|
|
|
|
* and \c bits is the key size in bits.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:30:44 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_export_public_key(psa_key_slot_t key,
|
|
|
|
uint8_t *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t *data_length);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
|
|
|
/** \defgroup policy Key policies
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \brief Encoding of permitted usage on a key. */
|
|
|
|
typedef uint32_t psa_key_usage_t;
|
|
|
|
|
2018-03-08 07:50:30 +01:00
|
|
|
/** Whether the key may be exported.
|
|
|
|
*
|
|
|
|
* A public key or the public part of a key pair may always be exported
|
|
|
|
* regardless of the value of this permission flag.
|
|
|
|
*
|
|
|
|
* If a key does not have export permission, implementations shall not
|
|
|
|
* allow the key to be exported in plain form from the cryptoprocessor,
|
|
|
|
* whether through psa_export_key() or through a proprietary interface.
|
|
|
|
* The key may however be exportable in a wrapped form, i.e. in a form
|
|
|
|
* where it is encrypted by another key.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
#define PSA_KEY_USAGE_EXPORT ((psa_key_usage_t)0x00000001)
|
|
|
|
|
2018-03-08 07:50:30 +01:00
|
|
|
/** Whether the key may be used to encrypt a message.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* This flag allows the key to be used for a symmetric encryption operation,
|
|
|
|
* for an AEAD encryption-and-authentication operation,
|
|
|
|
* or for an asymmetric encryption operation,
|
|
|
|
* if otherwise permitted by the key's type and policy.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* For a key pair, this concerns the public key.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
#define PSA_KEY_USAGE_ENCRYPT ((psa_key_usage_t)0x00000100)
|
2018-03-08 07:50:30 +01:00
|
|
|
|
|
|
|
/** Whether the key may be used to decrypt a message.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* This flag allows the key to be used for a symmetric decryption operation,
|
|
|
|
* for an AEAD decryption-and-verification operation,
|
|
|
|
* or for an asymmetric decryption operation,
|
|
|
|
* if otherwise permitted by the key's type and policy.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* For a key pair, this concerns the private key.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
#define PSA_KEY_USAGE_DECRYPT ((psa_key_usage_t)0x00000200)
|
2018-03-08 07:50:30 +01:00
|
|
|
|
|
|
|
/** Whether the key may be used to sign a message.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* This flag allows the key to be used for a MAC calculation operation
|
|
|
|
* or for an asymmetric signature operation,
|
|
|
|
* if otherwise permitted by the key's type and policy.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* For a key pair, this concerns the private key.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
#define PSA_KEY_USAGE_SIGN ((psa_key_usage_t)0x00000400)
|
2018-03-08 07:50:30 +01:00
|
|
|
|
|
|
|
/** Whether the key may be used to verify a message signature.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* This flag allows the key to be used for a MAC verification operation
|
|
|
|
* or for an asymmetric signature verification operation,
|
|
|
|
* if otherwise permitted by by the key's type and policy.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* For a key pair, this concerns the public key.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
#define PSA_KEY_USAGE_VERIFY ((psa_key_usage_t)0x00000800)
|
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/** Whether the key may be used to derive other keys.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_USAGE_DERIVE ((psa_key_usage_t)0x00001000)
|
|
|
|
|
2018-03-03 21:30:44 +01:00
|
|
|
/** The type of the key policy data structure.
|
|
|
|
*
|
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
|
|
|
typedef struct psa_key_policy_s psa_key_policy_t;
|
|
|
|
|
|
|
|
/** \brief Initialize a key policy structure to a default that forbids all
|
2018-07-12 19:47:19 +02:00
|
|
|
* usage of the key.
|
|
|
|
*
|
|
|
|
* \param[out] policy The policy object to initialize.
|
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
void psa_key_policy_init(psa_key_policy_t *policy);
|
|
|
|
|
2018-03-08 07:50:30 +01:00
|
|
|
/** \brief Set the standard fields of a policy structure.
|
|
|
|
*
|
|
|
|
* Note that this function does not make any consistency check of the
|
|
|
|
* parameters. The values are only checked when applying the policy to
|
|
|
|
* a key slot with psa_set_key_policy().
|
2018-07-12 19:47:19 +02:00
|
|
|
*
|
|
|
|
* \param[out] policy The policy object to modify.
|
|
|
|
* \param usage The permitted uses for the key.
|
|
|
|
* \param alg The algorithm that the key may be used for.
|
2018-03-08 07:50:30 +01:00
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
void psa_key_policy_set_usage(psa_key_policy_t *policy,
|
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-07-12 19:47:19 +02:00
|
|
|
/** \brief Retrieve the usage field of a policy structure.
|
|
|
|
*
|
|
|
|
* \param[in] policy The policy object to query.
|
|
|
|
*
|
|
|
|
* \return The permitted uses for a key with this policy.
|
|
|
|
*/
|
2018-07-12 00:54:56 +02:00
|
|
|
psa_key_usage_t psa_key_policy_get_usage(const psa_key_policy_t *policy);
|
2018-03-03 21:30:44 +01:00
|
|
|
|
2018-07-12 19:47:19 +02:00
|
|
|
/** \brief Retrieve the algorithm field of a policy structure.
|
|
|
|
*
|
|
|
|
* \param[in] policy The policy object to query.
|
|
|
|
*
|
|
|
|
* \return The permitted algorithm for a key with this policy.
|
|
|
|
*/
|
2018-07-12 00:54:56 +02:00
|
|
|
psa_algorithm_t psa_key_policy_get_algorithm(const psa_key_policy_t *policy);
|
2018-03-03 21:30:44 +01:00
|
|
|
|
|
|
|
/** \brief Set the usage policy on a key slot.
|
|
|
|
*
|
|
|
|
* This function must be called on an empty key slot, before importing,
|
|
|
|
* generating or creating a key in the slot. Changing the policy of an
|
|
|
|
* existing key is not permitted.
|
2018-03-08 07:50:30 +01:00
|
|
|
*
|
|
|
|
* Implementations may set restrictions on supported key policies
|
|
|
|
* depending on the key type and the key slot.
|
2018-07-12 19:47:19 +02:00
|
|
|
*
|
|
|
|
* \param key The key slot whose policy is to be changed.
|
|
|
|
* \param[in] policy The policy object to query.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:30:44 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_set_key_policy(psa_key_slot_t key,
|
|
|
|
const psa_key_policy_t *policy);
|
|
|
|
|
2018-03-08 07:50:30 +01:00
|
|
|
/** \brief Get the usage policy for a key slot.
|
2018-07-12 19:47:19 +02:00
|
|
|
*
|
|
|
|
* \param key The key slot whose policy is being queried.
|
|
|
|
* \param[out] policy On success, the key's policy.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-08 07:50:30 +01:00
|
|
|
*/
|
2018-03-03 21:30:44 +01:00
|
|
|
psa_status_t psa_get_key_policy(psa_key_slot_t key,
|
|
|
|
psa_key_policy_t *policy);
|
2018-02-03 22:44:14 +01:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-03-03 21:31:50 +01:00
|
|
|
/** \defgroup persistence Key lifetime
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Encoding of key lifetimes.
|
|
|
|
*/
|
|
|
|
typedef uint32_t psa_key_lifetime_t;
|
|
|
|
|
|
|
|
/** A volatile key slot retains its content as long as the application is
|
|
|
|
* running. It is guaranteed to be erased on a power reset.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_LIFETIME_VOLATILE ((psa_key_lifetime_t)0x00000000)
|
|
|
|
|
|
|
|
/** A persistent key slot retains its content as long as it is not explicitly
|
|
|
|
* destroyed.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_LIFETIME_PERSISTENT ((psa_key_lifetime_t)0x00000001)
|
|
|
|
|
|
|
|
/** A write-once key slot may not be modified once a key has been set.
|
|
|
|
* It will retain its content as long as the device remains operational.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_LIFETIME_WRITE_ONCE ((psa_key_lifetime_t)0x7fffffff)
|
|
|
|
|
2018-03-08 07:49:16 +01:00
|
|
|
/** \brief Retrieve the lifetime of a key slot.
|
|
|
|
*
|
|
|
|
* The assignment of lifetimes to slots is implementation-dependent.
|
2018-04-17 14:07:59 +02:00
|
|
|
*
|
2018-04-17 14:09:24 +02:00
|
|
|
* \param key Slot to query.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] lifetime On success, the lifetime value.
|
2018-04-17 14:07:59 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-20 21:44:08 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-04-17 09:40:08 +02:00
|
|
|
* The key slot is invalid.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-08 07:49:16 +01:00
|
|
|
*/
|
2018-03-03 21:31:50 +01:00
|
|
|
psa_status_t psa_get_key_lifetime(psa_key_slot_t key,
|
|
|
|
psa_key_lifetime_t *lifetime);
|
|
|
|
|
2018-03-08 07:49:16 +01:00
|
|
|
/** \brief Change the lifetime of a key slot.
|
|
|
|
*
|
|
|
|
* Whether the lifetime of a key slot can be changed at all, and if so
|
2018-03-20 17:54:53 +01:00
|
|
|
* whether the lifetime of an occupied key slot can be changed, is
|
2018-03-08 07:49:16 +01:00
|
|
|
* implementation-dependent.
|
2018-04-17 14:07:59 +02:00
|
|
|
*
|
2018-04-17 14:09:24 +02:00
|
|
|
* \param key Slot whose lifetime is to be changed.
|
|
|
|
* \param lifetime The lifetime value to set for the given key slot.
|
2018-04-17 14:07:59 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-20 21:44:08 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-03-20 21:44:08 +01:00
|
|
|
* The key slot is invalid,
|
2018-04-17 09:40:08 +02:00
|
|
|
* or the lifetime value is invalid.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-04-17 14:11:07 +02:00
|
|
|
* The implementation does not support the specified lifetime value,
|
|
|
|
* at least for the specified key slot.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
2018-04-17 14:11:07 +02:00
|
|
|
* The slot contains a key, and the implementation does not support
|
|
|
|
* changing the lifetime of an occupied slot.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-08 07:49:16 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_set_key_lifetime(psa_key_slot_t key,
|
2018-04-17 09:31:34 +02:00
|
|
|
psa_key_lifetime_t lifetime);
|
2018-03-08 07:49:16 +01:00
|
|
|
|
2018-03-03 21:31:50 +01:00
|
|
|
/**@}*/
|
|
|
|
|
2018-02-07 21:05:37 +01:00
|
|
|
/** \defgroup hash Message digests
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** The type of the state data structure for multipart hash operations.
|
|
|
|
*
|
2018-03-03 21:29:30 +01:00
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
2018-02-08 09:47:44 +01:00
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
2018-02-07 21:05:37 +01:00
|
|
|
typedef struct psa_hash_operation_s psa_hash_operation_t;
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** The size of the output of psa_hash_finish(), in bytes.
|
|
|
|
*
|
|
|
|
* This is also the hash size that psa_hash_verify() expects.
|
|
|
|
*
|
|
|
|
* \param alg A hash algorithm (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_HASH(\p alg) is true), or an HMAC algorithm
|
2018-07-13 14:38:15 +02:00
|
|
|
* (#PSA_ALG_HMAC(\c hash_alg) where \c hash_alg is a
|
2018-04-19 08:39:16 +02:00
|
|
|
* hash algorithm).
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
|
|
|
* \return The hash size for the specified hash algorithm.
|
|
|
|
* If the hash algorithm is not recognized, return 0.
|
|
|
|
* An implementation may return either 0 or the correct size
|
|
|
|
* for a hash algorithm that it recognizes, but does not support.
|
|
|
|
*/
|
2018-06-26 15:50:08 +02:00
|
|
|
#define PSA_HASH_SIZE(alg) \
|
|
|
|
( \
|
2018-08-22 18:25:41 +02:00
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD2 ? 16 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD4 ? 16 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD5 ? 16 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_RIPEMD160 ? 20 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_1 ? 20 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_224 ? 28 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_256 ? 32 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_384 ? 48 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512 ? 64 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_224 ? 28 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_256 ? 32 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_224 ? 28 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_256 ? 32 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_384 ? 48 : \
|
|
|
|
PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_512 ? 64 : \
|
2018-02-07 21:05:37 +01:00
|
|
|
0)
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Start a multipart hash operation.
|
|
|
|
*
|
|
|
|
* The sequence of operations to calculate a hash (message digest)
|
|
|
|
* is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
2018-07-08 19:46:38 +02:00
|
|
|
* -# Call psa_hash_setup() to specify the algorithm.
|
2018-02-16 21:24:11 +01:00
|
|
|
* -# Call psa_hash_update() zero, one or more times, passing a fragment
|
2018-02-08 09:47:44 +01:00
|
|
|
* of the message each time. The hash that is calculated is the hash
|
|
|
|
* of the concatenation of these messages in order.
|
|
|
|
* -# To calculate the hash, call psa_hash_finish().
|
|
|
|
* To compare the hash with an expected value, call psa_hash_verify().
|
|
|
|
*
|
|
|
|
* The application may call psa_hash_abort() at any time after the operation
|
2018-07-08 19:46:38 +02:00
|
|
|
* has been initialized with psa_hash_setup().
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-08 19:46:38 +02:00
|
|
|
* After a successful call to psa_hash_setup(), the application must
|
2018-03-20 17:54:15 +01:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2018-02-08 09:47:44 +01:00
|
|
|
* - A failed call to psa_hash_update().
|
2018-03-20 17:54:53 +01:00
|
|
|
* - A call to psa_hash_finish(), psa_hash_verify() or psa_hash_abort().
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] operation The operation object to use.
|
|
|
|
* \param alg The hash algorithm to compute (\c PSA_ALG_XXX value
|
|
|
|
* such that #PSA_ALG_IS_HASH(\p alg) is true).
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not a hash algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 09:47:44 +01:00
|
|
|
*/
|
2018-07-08 19:46:38 +02:00
|
|
|
psa_status_t psa_hash_setup(psa_hash_operation_t *operation,
|
2018-02-07 21:05:37 +01:00
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Add a message fragment to a multipart hash operation.
|
|
|
|
*
|
2018-07-08 19:46:38 +02:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active hash operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to hash.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-02-08 09:47:44 +01:00
|
|
|
* The operation state is not valid (not started, or already completed).
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 09:47:44 +01:00
|
|
|
*/
|
2018-02-07 21:05:37 +01:00
|
|
|
psa_status_t psa_hash_update(psa_hash_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length);
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Finish the calculation of the hash of a message.
|
|
|
|
*
|
2018-07-08 19:46:38 +02:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 09:47:44 +01:00
|
|
|
* This function calculates the hash of the message formed by concatenating
|
|
|
|
* the inputs passed to preceding calls to psa_hash_update().
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \warning Applications should not call this function if they expect
|
|
|
|
* a specific value for the hash. Call psa_hash_verify() instead.
|
|
|
|
* Beware that comparing integrity or authenticity data such as
|
|
|
|
* hash values with a function such as \c memcmp is risky
|
|
|
|
* because the time taken by the comparison may leak information
|
|
|
|
* about the hashed data which could allow an attacker to guess
|
|
|
|
* a valid hash and thereby bypass security controls.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active hash operation.
|
|
|
|
* \param[out] hash Buffer where the hash is to be written.
|
|
|
|
* \param hash_size Size of the \p hash buffer in bytes.
|
|
|
|
* \param[out] hash_length On success, the number of bytes
|
|
|
|
* that make up the hash value. This is always
|
2018-07-13 14:38:15 +02:00
|
|
|
* #PSA_HASH_SIZE(\c alg) where \c alg is the
|
2018-07-12 01:08:58 +02:00
|
|
|
* hash algorithm that is calculated.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-02-08 09:47:44 +01:00
|
|
|
* The operation state is not valid (not started, or already completed).
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of the \p hash buffer is too small. You can determine a
|
2018-07-12 00:34:26 +02:00
|
|
|
* sufficient buffer size by calling #PSA_HASH_SIZE(\c alg)
|
2018-02-08 09:47:44 +01:00
|
|
|
* where \c alg is the hash algorithm that is calculated.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 09:47:44 +01:00
|
|
|
*/
|
2018-02-07 21:05:37 +01:00
|
|
|
psa_status_t psa_hash_finish(psa_hash_operation_t *operation,
|
|
|
|
uint8_t *hash,
|
|
|
|
size_t hash_size,
|
|
|
|
size_t *hash_length);
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Finish the calculation of the hash of a message and compare it with
|
|
|
|
* an expected value.
|
|
|
|
*
|
2018-07-08 19:46:38 +02:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 09:47:44 +01:00
|
|
|
* This function calculates the hash of the message formed by concatenating
|
|
|
|
* the inputs passed to preceding calls to psa_hash_update(). It then
|
|
|
|
* compares the calculated hash with the expected hash passed as a
|
|
|
|
* parameter to this function.
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
2018-03-20 17:54:53 +01:00
|
|
|
* \note Implementations shall make the best effort to ensure that the
|
2018-02-08 09:47:44 +01:00
|
|
|
* comparison between the actual hash and the expected hash is performed
|
|
|
|
* in constant time.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active hash operation.
|
|
|
|
* \param[in] hash Buffer containing the expected hash value.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* The expected hash is identical to the actual hash of the message.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-02-08 09:47:44 +01:00
|
|
|
* The hash of the message was calculated successfully, but it
|
|
|
|
* differs from the expected hash.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-02-08 09:47:44 +01:00
|
|
|
* The operation state is not valid (not started, or already completed).
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 09:47:44 +01:00
|
|
|
*/
|
2018-02-07 21:05:37 +01:00
|
|
|
psa_status_t psa_hash_verify(psa_hash_operation_t *operation,
|
|
|
|
const uint8_t *hash,
|
|
|
|
size_t hash_length);
|
|
|
|
|
2018-02-08 09:47:44 +01:00
|
|
|
/** Abort a hash operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 15:33:43 +02:00
|
|
|
* \p operation structure itself. Once aborted, the operation object
|
|
|
|
* can be reused for another operation by calling
|
|
|
|
* psa_hash_setup() again.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-13 15:33:43 +02:00
|
|
|
* You may call this function any time after the operation object has
|
|
|
|
* been initialized by any of the following methods:
|
|
|
|
* - A call to psa_hash_setup(), whether it succeeds or not.
|
|
|
|
* - Initializing the \c struct to all-bits-zero.
|
|
|
|
* - Initializing the \c struct to logical zeros, e.g.
|
|
|
|
* `psa_hash_operation_t operation = {0}`.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-13 15:33:43 +02:00
|
|
|
* In particular, calling psa_hash_abort() after the operation has been
|
|
|
|
* terminated by a call to psa_hash_abort(), psa_hash_finish() or
|
|
|
|
* psa_hash_verify() is safe and has no effect.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Initialized hash operation.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p operation is not an active hash operation.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 09:47:44 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_hash_abort(psa_hash_operation_t *operation);
|
2018-02-07 21:05:37 +01:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-02-08 10:02:12 +01:00
|
|
|
/** \defgroup MAC Message authentication codes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-02-16 21:24:11 +01:00
|
|
|
/** The type of the state data structure for multipart MAC operations.
|
|
|
|
*
|
2018-03-03 21:29:30 +01:00
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
2018-02-16 21:24:11 +01:00
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
2018-02-08 10:02:12 +01:00
|
|
|
typedef struct psa_mac_operation_s psa_mac_operation_t;
|
|
|
|
|
2018-07-08 20:12:23 +02:00
|
|
|
/** Start a multipart MAC calculation operation.
|
2018-02-16 21:24:11 +01:00
|
|
|
*
|
2018-07-08 20:12:23 +02:00
|
|
|
* This function sets up the calculation of the MAC
|
|
|
|
* (message authentication code) of a byte string.
|
|
|
|
* To verify the MAC of a message against an
|
|
|
|
* expected value, use psa_mac_verify_setup() instead.
|
|
|
|
*
|
|
|
|
* The sequence of operations to calculate a MAC is as follows:
|
2018-02-16 21:24:11 +01:00
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
2018-07-08 20:12:23 +02:00
|
|
|
* -# Call psa_mac_sign_setup() to specify the algorithm and key.
|
2018-02-16 21:24:11 +01:00
|
|
|
* The key remains associated with the operation even if the content
|
|
|
|
* of the key slot changes.
|
|
|
|
* -# Call psa_mac_update() zero, one or more times, passing a fragment
|
|
|
|
* of the message each time. The MAC that is calculated is the MAC
|
|
|
|
* of the concatenation of these messages in order.
|
2018-07-08 20:12:23 +02:00
|
|
|
* -# At the end of the message, call psa_mac_sign_finish() to finish
|
|
|
|
* calculating the MAC value and retrieve it.
|
2018-02-16 21:24:11 +01:00
|
|
|
*
|
|
|
|
* The application may call psa_mac_abort() at any time after the operation
|
2018-07-08 20:12:23 +02:00
|
|
|
* has been initialized with psa_mac_sign_setup().
|
2018-02-16 21:24:11 +01:00
|
|
|
*
|
2018-07-08 20:12:23 +02:00
|
|
|
* After a successful call to psa_mac_sign_setup(), the application must
|
|
|
|
* eventually terminate the operation through one of the following methods:
|
|
|
|
* - A failed call to psa_mac_update().
|
|
|
|
* - A call to psa_mac_sign_finish() or psa_mac_abort().
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] operation The operation object to use.
|
|
|
|
* \param key Slot containing the key to use for the operation.
|
|
|
|
* \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
|
|
|
|
* such that #PSA_ALG_IS_MAC(alg) is true).
|
2018-07-08 20:12:23 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-07-08 20:12:23 +02:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not a MAC algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-07-08 20:12:23 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_mac_sign_setup(psa_mac_operation_t *operation,
|
|
|
|
psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
|
|
|
/** Start a multipart MAC verification operation.
|
|
|
|
*
|
|
|
|
* This function sets up the verification of the MAC
|
|
|
|
* (message authentication code) of a byte string against an expected value.
|
|
|
|
*
|
|
|
|
* The sequence of operations to verify a MAC is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
|
|
|
* -# Call psa_mac_verify_setup() to specify the algorithm and key.
|
|
|
|
* The key remains associated with the operation even if the content
|
|
|
|
* of the key slot changes.
|
|
|
|
* -# Call psa_mac_update() zero, one or more times, passing a fragment
|
|
|
|
* of the message each time. The MAC that is calculated is the MAC
|
|
|
|
* of the concatenation of these messages in order.
|
|
|
|
* -# At the end of the message, call psa_mac_verify_finish() to finish
|
|
|
|
* calculating the actual MAC of the message and verify it against
|
|
|
|
* the expected value.
|
|
|
|
*
|
|
|
|
* The application may call psa_mac_abort() at any time after the operation
|
|
|
|
* has been initialized with psa_mac_verify_setup().
|
|
|
|
*
|
|
|
|
* After a successful call to psa_mac_verify_setup(), the application must
|
|
|
|
* eventually terminate the operation through one of the following methods:
|
2018-02-16 21:24:11 +01:00
|
|
|
* - A failed call to psa_mac_update().
|
2018-07-08 20:12:23 +02:00
|
|
|
* - A call to psa_mac_verify_finish() or psa_mac_abort().
|
2018-02-16 21:24:11 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] operation The operation object to use.
|
|
|
|
* \param key Slot containing the key to use for the operation.
|
|
|
|
* \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
|
|
|
|
* such that #PSA_ALG_IS_MAC(\p alg) is true).
|
2018-02-16 21:24:11 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-16 21:24:11 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-02-16 21:24:11 +01:00
|
|
|
* \c key is not compatible with \c alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-02-16 21:24:11 +01:00
|
|
|
* \c alg is not supported or is not a MAC algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-02-16 21:24:11 +01:00
|
|
|
*/
|
2018-07-08 20:12:23 +02:00
|
|
|
psa_status_t psa_mac_verify_setup(psa_mac_operation_t *operation,
|
|
|
|
psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg);
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Add a message fragment to a multipart MAC operation.
|
|
|
|
*
|
|
|
|
* The application must call psa_mac_sign_setup() or psa_mac_verify_setup()
|
|
|
|
* before calling this function.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active MAC operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to add to
|
|
|
|
* the MAC calculation.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, or already completed).
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-02-08 10:02:12 +01:00
|
|
|
psa_status_t psa_mac_update(psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length);
|
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Finish the calculation of the MAC of a message.
|
|
|
|
*
|
|
|
|
* The application must call psa_mac_sign_setup() before calling this function.
|
|
|
|
* This function calculates the MAC of the message formed by concatenating
|
|
|
|
* the inputs passed to preceding calls to psa_mac_update().
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \warning Applications should not call this function if they expect
|
|
|
|
* a specific value for the MAC. Call psa_mac_verify_finish() instead.
|
|
|
|
* Beware that comparing integrity or authenticity data such as
|
|
|
|
* MAC values with a function such as \c memcmp is risky
|
|
|
|
* because the time taken by the comparison may leak information
|
|
|
|
* about the MAC value which could allow an attacker to guess
|
|
|
|
* a valid MAC and thereby bypass security controls.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active MAC operation.
|
|
|
|
* \param[out] mac Buffer where the MAC value is to be written.
|
|
|
|
* \param mac_size Size of the \p mac buffer in bytes.
|
|
|
|
* \param[out] mac_length On success, the number of bytes
|
|
|
|
* that make up the MAC value. This is always
|
2018-07-12 19:40:46 +02:00
|
|
|
* #PSA_MAC_FINAL_SIZE(\c key_type, \c key_bits, \c alg)
|
2018-07-12 01:08:58 +02:00
|
|
|
* where \c key_type and \c key_bits are the type and
|
2018-07-12 19:40:46 +02:00
|
|
|
* bit-size respectively of the key and \c alg is the
|
2018-07-12 01:08:58 +02:00
|
|
|
* MAC algorithm that is calculated.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, or already completed).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of the \p mac buffer is too small. You can determine a
|
2018-07-12 00:30:52 +02:00
|
|
|
* sufficient buffer size by calling PSA_MAC_FINAL_SIZE().
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 19:56:25 +02:00
|
|
|
psa_status_t psa_mac_sign_finish(psa_mac_operation_t *operation,
|
|
|
|
uint8_t *mac,
|
|
|
|
size_t mac_size,
|
|
|
|
size_t *mac_length);
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Finish the calculation of the MAC of a message and compare it with
|
|
|
|
* an expected value.
|
|
|
|
*
|
|
|
|
* The application must call psa_mac_verify_setup() before calling this function.
|
|
|
|
* This function calculates the MAC of the message formed by concatenating
|
|
|
|
* the inputs passed to preceding calls to psa_mac_update(). It then
|
|
|
|
* compares the calculated MAC with the expected MAC passed as a
|
|
|
|
* parameter to this function.
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \note Implementations shall make the best effort to ensure that the
|
|
|
|
* comparison between the actual MAC and the expected MAC is performed
|
|
|
|
* in constant time.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active MAC operation.
|
|
|
|
* \param[in] mac Buffer containing the expected MAC value.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param mac_length Size of the \p mac buffer in bytes.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* The expected MAC is identical to the actual MAC of the message.
|
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
|
|
|
* The MAC of the message was calculated successfully, but it
|
|
|
|
* differs from the expected MAC.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, or already completed).
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 19:56:25 +02:00
|
|
|
psa_status_t psa_mac_verify_finish(psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *mac,
|
|
|
|
size_t mac_length);
|
2018-02-08 10:02:12 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Abort a MAC operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 15:33:43 +02:00
|
|
|
* \p operation structure itself. Once aborted, the operation object
|
|
|
|
* can be reused for another operation by calling
|
|
|
|
* psa_mac_sign_setup() or psa_mac_verify_setup() again.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-07-13 15:33:43 +02:00
|
|
|
* You may call this function any time after the operation object has
|
|
|
|
* been initialized by any of the following methods:
|
|
|
|
* - A call to psa_mac_sign_setup() or psa_mac_verify_setup(), whether
|
|
|
|
* it succeeds or not.
|
|
|
|
* - Initializing the \c struct to all-bits-zero.
|
|
|
|
* - Initializing the \c struct to logical zeros, e.g.
|
|
|
|
* `psa_mac_operation_t operation = {0}`.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
2018-07-13 15:33:43 +02:00
|
|
|
* In particular, calling psa_mac_abort() after the operation has been
|
|
|
|
* terminated by a call to psa_mac_abort(), psa_mac_sign_finish() or
|
|
|
|
* psa_mac_verify_finish() is safe and has no effect.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Initialized MAC operation.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p operation is not an active MAC operation.
|
2018-07-12 00:30:52 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-02-08 10:02:12 +01:00
|
|
|
psa_status_t psa_mac_abort(psa_mac_operation_t *operation);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-03-03 21:27:18 +01:00
|
|
|
/** \defgroup cipher Symmetric ciphers
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** The type of the state data structure for multipart cipher operations.
|
|
|
|
*
|
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
|
|
|
typedef struct psa_cipher_operation_s psa_cipher_operation_t;
|
|
|
|
|
|
|
|
/** Set the key for a multipart symmetric encryption operation.
|
|
|
|
*
|
|
|
|
* The sequence of operations to encrypt a message with a symmetric cipher
|
|
|
|
* is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
2018-07-08 21:39:34 +02:00
|
|
|
* -# Call psa_cipher_encrypt_setup() to specify the algorithm and key.
|
2018-03-03 21:27:18 +01:00
|
|
|
* The key remains associated with the operation even if the content
|
|
|
|
* of the key slot changes.
|
2018-08-02 13:19:33 +02:00
|
|
|
* -# Call either psa_cipher_generate_iv() or psa_cipher_set_iv() to
|
2018-03-03 21:27:18 +01:00
|
|
|
* generate or set the IV (initialization vector). You should use
|
2018-08-02 13:19:33 +02:00
|
|
|
* psa_cipher_generate_iv() unless the protocol you are implementing
|
2018-03-03 21:27:18 +01:00
|
|
|
* requires a specific IV value.
|
|
|
|
* -# Call psa_cipher_update() zero, one or more times, passing a fragment
|
|
|
|
* of the message each time.
|
|
|
|
* -# Call psa_cipher_finish().
|
|
|
|
*
|
|
|
|
* The application may call psa_cipher_abort() at any time after the operation
|
2018-07-08 21:39:34 +02:00
|
|
|
* has been initialized with psa_cipher_encrypt_setup().
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-08 21:39:34 +02:00
|
|
|
* After a successful call to psa_cipher_encrypt_setup(), the application must
|
2018-03-20 17:54:15 +01:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2018-08-02 13:19:33 +02:00
|
|
|
* - A failed call to psa_cipher_generate_iv(), psa_cipher_set_iv()
|
2018-03-03 21:27:18 +01:00
|
|
|
* or psa_cipher_update().
|
2018-03-20 17:54:53 +01:00
|
|
|
* - A call to psa_cipher_finish() or psa_cipher_abort().
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] operation The operation object to use.
|
|
|
|
* \param key Slot containing the key to use for the operation.
|
|
|
|
* \param alg The cipher algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_CIPHER(\p alg) is true).
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 21:27:18 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:27:18 +01:00
|
|
|
*/
|
2018-07-08 21:39:34 +02:00
|
|
|
psa_status_t psa_cipher_encrypt_setup(psa_cipher_operation_t *operation,
|
|
|
|
psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg);
|
2018-03-03 21:27:18 +01:00
|
|
|
|
|
|
|
/** Set the key for a multipart symmetric decryption operation.
|
|
|
|
*
|
|
|
|
* The sequence of operations to decrypt a message with a symmetric cipher
|
|
|
|
* is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
2018-07-08 21:39:34 +02:00
|
|
|
* -# Call psa_cipher_decrypt_setup() to specify the algorithm and key.
|
2018-03-03 21:27:18 +01:00
|
|
|
* The key remains associated with the operation even if the content
|
|
|
|
* of the key slot changes.
|
|
|
|
* -# Call psa_cipher_update() with the IV (initialization vector) for the
|
|
|
|
* decryption. If the IV is prepended to the ciphertext, you can call
|
|
|
|
* psa_cipher_update() on a buffer containing the IV followed by the
|
|
|
|
* beginning of the message.
|
|
|
|
* -# Call psa_cipher_update() zero, one or more times, passing a fragment
|
|
|
|
* of the message each time.
|
|
|
|
* -# Call psa_cipher_finish().
|
|
|
|
*
|
|
|
|
* The application may call psa_cipher_abort() at any time after the operation
|
2018-07-08 21:39:34 +02:00
|
|
|
* has been initialized with psa_cipher_decrypt_setup().
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-08 21:39:34 +02:00
|
|
|
* After a successful call to psa_cipher_decrypt_setup(), the application must
|
2018-03-20 17:54:15 +01:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2018-03-03 21:27:18 +01:00
|
|
|
* - A failed call to psa_cipher_update().
|
2018-03-20 17:54:53 +01:00
|
|
|
* - A call to psa_cipher_finish() or psa_cipher_abort().
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] operation The operation object to use.
|
|
|
|
* \param key Slot containing the key to use for the operation.
|
|
|
|
* \param alg The cipher algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_CIPHER(\p alg) is true).
|
2018-03-03 21:27:18 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 21:27:18 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:27:18 +01:00
|
|
|
*/
|
2018-07-08 21:39:34 +02:00
|
|
|
psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation,
|
|
|
|
psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Generate an IV for a symmetric encryption operation.
|
|
|
|
*
|
|
|
|
* This function generates a random IV (initialization vector), nonce
|
|
|
|
* or initial counter value for the encryption operation as appropriate
|
|
|
|
* for the chosen algorithm, key type and key size.
|
|
|
|
*
|
|
|
|
* The application must call psa_cipher_encrypt_setup() before
|
|
|
|
* calling this function.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[out] iv Buffer where the generated IV is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param iv_size Size of the \p iv buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] iv_length On success, the number of bytes of the
|
|
|
|
* generated IV.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, or IV already set).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:40:46 +02:00
|
|
|
* The size of the \p iv buffer is too small.
|
2018-07-12 00:30:52 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 21:39:34 +02:00
|
|
|
psa_status_t psa_cipher_generate_iv(psa_cipher_operation_t *operation,
|
|
|
|
unsigned char *iv,
|
|
|
|
size_t iv_size,
|
|
|
|
size_t *iv_length);
|
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Set the IV for a symmetric encryption or decryption operation.
|
|
|
|
*
|
|
|
|
* This function sets the random IV (initialization vector), nonce
|
|
|
|
* or initial counter value for the encryption or decryption operation.
|
|
|
|
*
|
|
|
|
* The application must call psa_cipher_encrypt_setup() before
|
|
|
|
* calling this function.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \note When encrypting, applications should use psa_cipher_generate_iv()
|
|
|
|
* instead of this function, unless implementing a protocol that requires
|
|
|
|
* a non-random IV.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[in] iv Buffer containing the IV to use.
|
|
|
|
* \param iv_length Size of the IV in bytes.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, or IV already set).
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of \p iv is not acceptable for the chosen algorithm,
|
2018-07-12 00:30:52 +02:00
|
|
|
* or the chosen algorithm does not use an IV.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 21:39:34 +02:00
|
|
|
psa_status_t psa_cipher_set_iv(psa_cipher_operation_t *operation,
|
|
|
|
const unsigned char *iv,
|
|
|
|
size_t iv_length);
|
2018-03-03 21:27:18 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Encrypt or decrypt a message fragment in an active cipher operation.
|
|
|
|
*
|
2018-07-12 20:15:32 +02:00
|
|
|
* Before calling this function, you must:
|
|
|
|
* 1. Call either psa_cipher_encrypt_setup() or psa_cipher_decrypt_setup().
|
|
|
|
* The choice of setup function determines whether this function
|
|
|
|
* encrypts or decrypts its input.
|
|
|
|
* 2. If the algorithm requires an IV, call psa_cipher_generate_iv()
|
|
|
|
* (recommended when encrypting) or psa_cipher_set_iv().
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to
|
|
|
|
* encrypt or decrypt.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output Buffer where the output is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, IV required but
|
|
|
|
* not set, or already completed).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p output buffer is too small.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-03-03 21:27:18 +01:00
|
|
|
psa_status_t psa_cipher_update(psa_cipher_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
2018-03-12 14:59:30 +01:00
|
|
|
size_t input_length,
|
2018-06-18 15:41:12 +02:00
|
|
|
unsigned char *output,
|
|
|
|
size_t output_size,
|
2018-03-12 14:59:30 +01:00
|
|
|
size_t *output_length);
|
2018-03-03 21:27:18 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Finish encrypting or decrypting a message in a cipher operation.
|
|
|
|
*
|
|
|
|
* The application must call psa_cipher_encrypt_setup() or
|
|
|
|
* psa_cipher_decrypt_setup() before calling this function. The choice
|
|
|
|
* of setup function determines whether this function encrypts or
|
|
|
|
* decrypts its input.
|
|
|
|
*
|
|
|
|
* This function finishes the encryption or decryption of the message
|
|
|
|
* formed by concatenating the inputs passed to preceding calls to
|
|
|
|
* psa_cipher_update().
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[out] output Buffer where the output is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not started, IV required but
|
|
|
|
* not set, or already completed).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p output buffer is too small.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-03-03 21:27:18 +01:00
|
|
|
psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation,
|
2018-03-12 14:59:30 +01:00
|
|
|
uint8_t *output,
|
2018-04-22 19:16:58 +02:00
|
|
|
size_t output_size,
|
2018-03-12 14:59:30 +01:00
|
|
|
size_t *output_length);
|
2018-03-03 21:27:18 +01:00
|
|
|
|
2018-07-12 00:30:52 +02:00
|
|
|
/** Abort a cipher operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 15:33:43 +02:00
|
|
|
* \p operation structure itself. Once aborted, the operation object
|
|
|
|
* can be reused for another operation by calling
|
|
|
|
* psa_cipher_encrypt_setup() or psa_cipher_decrypt_setup() again.
|
|
|
|
*
|
|
|
|
* You may call this function any time after the operation object has
|
|
|
|
* been initialized by any of the following methods:
|
|
|
|
* - A call to psa_cipher_encrypt_setup() or psa_cipher_decrypt_setup(),
|
|
|
|
* whether it succeeds or not.
|
|
|
|
* - Initializing the \c struct to all-bits-zero.
|
|
|
|
* - Initializing the \c struct to logical zeros, e.g.
|
|
|
|
* `psa_cipher_operation_t operation = {0}`.
|
|
|
|
*
|
|
|
|
* In particular, calling psa_cipher_abort() after the operation has been
|
|
|
|
* terminated by a call to psa_cipher_abort() or psa_cipher_finish()
|
|
|
|
* is safe and has no effect.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Initialized cipher operation.
|
2018-07-12 00:30:52 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p operation is not an active cipher operation.
|
2018-07-12 00:30:52 +02:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-03-03 21:27:18 +01:00
|
|
|
psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-03-03 21:27:57 +01:00
|
|
|
/** \defgroup aead Authenticated encryption with associated data (AEAD)
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-06-08 11:41:57 +02:00
|
|
|
/** The tag size for an AEAD algorithm, in bytes.
|
2018-03-03 21:27:57 +01:00
|
|
|
*
|
2018-06-08 11:41:57 +02:00
|
|
|
* \param alg An AEAD algorithm
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
2018-03-03 21:27:57 +01:00
|
|
|
*
|
2018-06-08 11:41:57 +02:00
|
|
|
* \return The tag size for the specified algorithm.
|
|
|
|
* If the AEAD algorithm does not have an identified
|
|
|
|
* tag that can be distinguished from the rest of
|
|
|
|
* the ciphertext, return 0.
|
|
|
|
* If the AEAD algorithm is not recognized, return 0.
|
|
|
|
* An implementation may return either 0 or a
|
|
|
|
* correct size for an AEAD algorithm that it
|
|
|
|
* recognizes, but does not support.
|
|
|
|
*/
|
2018-08-17 19:47:52 +02:00
|
|
|
#define PSA_AEAD_TAG_LENGTH(alg) \
|
|
|
|
(PSA_ALG_IS_AEAD(alg) ? \
|
|
|
|
(((alg) & PSA_ALG_AEAD_TAG_LENGTH_MASK) >> PSA_AEAD_TAG_LENGTH_OFFSET) : \
|
2018-06-08 11:41:57 +02:00
|
|
|
0)
|
2018-06-07 00:38:45 +02:00
|
|
|
|
2018-06-01 16:29:38 +02:00
|
|
|
/** Process an authenticated encryption operation.
|
|
|
|
*
|
|
|
|
* \param key Slot containing the key to use.
|
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] nonce Nonce or IV to use.
|
2018-06-01 16:29:38 +02:00
|
|
|
* \param nonce_length Size of the \p nonce buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] additional_data Additional data that will be authenticated
|
2018-06-01 16:29:38 +02:00
|
|
|
* but not encrypted.
|
|
|
|
* \param additional_data_length Size of \p additional_data in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] plaintext Data that will be authenticated and
|
2018-06-01 16:29:38 +02:00
|
|
|
* encrypted.
|
|
|
|
* \param plaintext_length Size of \p plaintext in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] ciphertext Output buffer for the authenticated and
|
2018-06-01 16:29:38 +02:00
|
|
|
* encrypted data. The additional data is not
|
|
|
|
* part of this output. For algorithms where the
|
|
|
|
* encrypted data and the authentication tag
|
|
|
|
* are defined as separate outputs, the
|
|
|
|
* authentication tag is appended to the
|
|
|
|
* encrypted data.
|
|
|
|
* \param ciphertext_size Size of the \p ciphertext buffer in bytes.
|
|
|
|
* This must be at least
|
|
|
|
* #PSA_AEAD_ENCRYPT_OUTPUT_SIZE(\p alg,
|
|
|
|
* \p plaintext_length).
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] ciphertext_length On success, the size of the output
|
2018-06-01 16:29:38 +02:00
|
|
|
* in the \b ciphertext buffer.
|
2018-03-03 21:27:57 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 21:27:57 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:27:57 +01:00
|
|
|
*/
|
2018-07-19 15:51:49 +02:00
|
|
|
psa_status_t psa_aead_encrypt(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *nonce,
|
|
|
|
size_t nonce_length,
|
|
|
|
const uint8_t *additional_data,
|
|
|
|
size_t additional_data_length,
|
|
|
|
const uint8_t *plaintext,
|
|
|
|
size_t plaintext_length,
|
|
|
|
uint8_t *ciphertext,
|
|
|
|
size_t ciphertext_size,
|
|
|
|
size_t *ciphertext_length);
|
2018-04-25 23:51:02 +02:00
|
|
|
|
2018-06-01 16:29:38 +02:00
|
|
|
/** Process an authenticated decryption operation.
|
|
|
|
*
|
|
|
|
* \param key Slot containing the key to use.
|
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] nonce Nonce or IV to use.
|
2018-06-01 16:29:38 +02:00
|
|
|
* \param nonce_length Size of the \p nonce buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] additional_data Additional data that has been authenticated
|
2018-06-01 16:29:38 +02:00
|
|
|
* but not encrypted.
|
|
|
|
* \param additional_data_length Size of \p additional_data in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] ciphertext Data that has been authenticated and
|
2018-06-01 16:29:38 +02:00
|
|
|
* encrypted. For algorithms where the
|
|
|
|
* encrypted data and the authentication tag
|
|
|
|
* are defined as separate inputs, the buffer
|
|
|
|
* must contain the encrypted data followed
|
|
|
|
* by the authentication tag.
|
|
|
|
* \param ciphertext_length Size of \p ciphertext in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] plaintext Output buffer for the decrypted data.
|
2018-06-01 16:29:38 +02:00
|
|
|
* \param plaintext_size Size of the \p plaintext buffer in bytes.
|
|
|
|
* This must be at least
|
|
|
|
* #PSA_AEAD_DECRYPT_OUTPUT_SIZE(\p alg,
|
|
|
|
* \p ciphertext_length).
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] plaintext_length On success, the size of the output
|
2018-06-06 12:44:27 +02:00
|
|
|
* in the \b plaintext buffer.
|
2018-03-03 21:27:57 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 21:27:57 +01:00
|
|
|
* Success.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-06-01 16:29:38 +02:00
|
|
|
* The ciphertext is not authentic.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-03 21:27:57 +01:00
|
|
|
*/
|
2018-07-19 15:51:49 +02:00
|
|
|
psa_status_t psa_aead_decrypt(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *nonce,
|
|
|
|
size_t nonce_length,
|
|
|
|
const uint8_t *additional_data,
|
|
|
|
size_t additional_data_length,
|
|
|
|
const uint8_t *ciphertext,
|
|
|
|
size_t ciphertext_length,
|
|
|
|
uint8_t *plaintext,
|
|
|
|
size_t plaintext_size,
|
|
|
|
size_t *plaintext_length);
|
2018-03-03 21:27:57 +01:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-02-03 22:44:14 +01:00
|
|
|
/** \defgroup asymmetric Asymmetric cryptography
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-02-03 23:57:22 +01:00
|
|
|
/**
|
2018-06-28 13:56:01 +02:00
|
|
|
* \brief ECDSA signature size for a given curve bit size
|
2018-02-03 23:57:22 +01:00
|
|
|
*
|
2018-06-28 13:56:01 +02:00
|
|
|
* \param curve_bits Curve size in bits.
|
|
|
|
* \return Signature size in bytes.
|
2018-02-03 23:57:22 +01:00
|
|
|
*
|
|
|
|
* \note This macro returns a compile-time constant if its argument is one.
|
|
|
|
*/
|
2018-06-28 13:56:01 +02:00
|
|
|
#define PSA_ECDSA_SIGNATURE_SIZE(curve_bits) \
|
|
|
|
(PSA_BITS_TO_BYTES(curve_bits) * 2)
|
2018-02-03 23:57:22 +01:00
|
|
|
|
2018-02-03 22:44:14 +01:00
|
|
|
/**
|
|
|
|
* \brief Sign a hash or short message with a private key.
|
|
|
|
*
|
2018-06-26 16:14:46 +02:00
|
|
|
* Note that to perform a hash-and-sign signature algorithm, you must
|
2018-07-08 19:46:38 +02:00
|
|
|
* first calculate the hash by calling psa_hash_setup(), psa_hash_update()
|
2018-06-26 16:14:46 +02:00
|
|
|
* and psa_hash_finish(). Then pass the resulting hash as the \p hash
|
|
|
|
* parameter to this function. You can use #PSA_ALG_SIGN_GET_HASH(\p alg)
|
|
|
|
* to determine the hash algorithm to use.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param key Key slot containing an asymmetric key pair.
|
|
|
|
* \param alg A signature algorithm that is compatible with
|
2018-07-12 19:23:03 +02:00
|
|
|
* the type of \p key.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] hash The hash or message to sign.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] signature Buffer where the signature is to be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param signature_size Size of the \p signature buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] signature_length On success, the number of bytes
|
|
|
|
* that make up the returned signature value.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of the \p signature buffer is too small. You can
|
2018-02-08 09:47:44 +01:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-02-08 09:47:44 +01:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 19:23:03 +02:00
|
|
|
* respectively of \p key.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-02-03 22:44:14 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_asymmetric_sign(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash,
|
|
|
|
size_t hash_length,
|
|
|
|
uint8_t *signature,
|
|
|
|
size_t signature_size,
|
|
|
|
size_t *signature_length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Verify the signature a hash or short message using a public key.
|
|
|
|
*
|
2018-06-26 16:14:46 +02:00
|
|
|
* Note that to perform a hash-and-sign signature algorithm, you must
|
2018-07-08 19:46:38 +02:00
|
|
|
* first calculate the hash by calling psa_hash_setup(), psa_hash_update()
|
2018-06-26 16:14:46 +02:00
|
|
|
* and psa_hash_finish(). Then pass the resulting hash as the \p hash
|
|
|
|
* parameter to this function. You can use #PSA_ALG_SIGN_GET_HASH(\p alg)
|
|
|
|
* to determine the hash algorithm to use.
|
|
|
|
*
|
2018-02-08 09:47:44 +01:00
|
|
|
* \param key Key slot containing a public key or an
|
|
|
|
* asymmetric key pair.
|
|
|
|
* \param alg A signature algorithm that is compatible with
|
2018-07-12 19:23:03 +02:00
|
|
|
* the type of \p key.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] hash The hash or message whose signature is to be
|
2018-06-26 16:14:46 +02:00
|
|
|
* verified.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] signature Buffer containing the signature to verify.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param signature_length Size of the \p signature buffer in bytes.
|
2018-02-08 09:47:44 +01:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 09:47:44 +01:00
|
|
|
* The signature is valid.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-02-08 09:47:44 +01:00
|
|
|
* The calculation was perfomed successfully, but the passed
|
|
|
|
* signature is not a valid signature.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-02-03 22:44:14 +01:00
|
|
|
*/
|
|
|
|
psa_status_t psa_asymmetric_verify(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash,
|
|
|
|
size_t hash_length,
|
2018-06-27 14:58:41 +02:00
|
|
|
const uint8_t *signature,
|
2018-06-27 18:19:40 +02:00
|
|
|
size_t signature_length);
|
2018-02-03 22:44:14 +01:00
|
|
|
|
2018-05-31 20:08:13 +02:00
|
|
|
#define PSA_RSA_MINIMUM_PADDING_SIZE(alg) \
|
2018-06-30 00:21:29 +02:00
|
|
|
(PSA_ALG_IS_RSA_OAEP(alg) ? \
|
|
|
|
2 * PSA_HASH_FINAL_SIZE(PSA_ALG_RSA_OAEP_GET_HASH(alg)) + 1 : \
|
2018-05-31 20:08:13 +02:00
|
|
|
11 /*PKCS#1v1.5*/)
|
2018-03-28 14:18:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Encrypt a short message with a public key.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param key Key slot containing a public key or an
|
|
|
|
* asymmetric key pair.
|
|
|
|
* \param alg An asymmetric encryption algorithm that is
|
2018-07-12 19:23:03 +02:00
|
|
|
* compatible with the type of \p key.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] input The message to encrypt.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] salt A salt or label, if supported by the
|
|
|
|
* encryption algorithm.
|
|
|
|
* If the algorithm does not support a
|
|
|
|
* salt, pass \c NULL.
|
|
|
|
* If the algorithm supports an optional
|
|
|
|
* salt and you do not want to pass a salt,
|
|
|
|
* pass \c NULL.
|
|
|
|
*
|
|
|
|
* - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is
|
|
|
|
* supported.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param salt_length Size of the \p salt buffer in bytes.
|
|
|
|
* If \p salt is \c NULL, pass 0.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output Buffer where the encrypted message is to
|
|
|
|
* be written.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-03-28 14:18:39 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of the \p output buffer is too small. You can
|
2018-03-28 14:18:39 +02:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-12 00:34:26 +02:00
|
|
|
* #PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-03-28 14:18:39 +02:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 19:23:03 +02:00
|
|
|
* respectively of \p key.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-28 14:18:39 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_asymmetric_encrypt(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *salt,
|
|
|
|
size_t salt_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Decrypt a short message with a private key.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param key Key slot containing an asymmetric key pair.
|
|
|
|
* \param alg An asymmetric encryption algorithm that is
|
2018-07-12 19:23:03 +02:00
|
|
|
* compatible with the type of \p key.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] input The message to decrypt.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[in] salt A salt or label, if supported by the
|
|
|
|
* encryption algorithm.
|
|
|
|
* If the algorithm does not support a
|
|
|
|
* salt, pass \c NULL.
|
|
|
|
* If the algorithm supports an optional
|
|
|
|
* salt and you do not want to pass a salt,
|
|
|
|
* pass \c NULL.
|
|
|
|
*
|
|
|
|
* - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is
|
|
|
|
* supported.
|
2018-07-12 19:23:03 +02:00
|
|
|
* \param salt_length Size of the \p salt buffer in bytes.
|
|
|
|
* If \p salt is \c NULL, pass 0.
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output Buffer where the decrypted message is to
|
|
|
|
* be written.
|
|
|
|
* \param output_size Size of the \c output buffer in bytes.
|
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-03-28 14:18:39 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 19:23:03 +02:00
|
|
|
* The size of the \p output buffer is too small. You can
|
2018-03-28 14:18:39 +02:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-12 19:40:46 +02:00
|
|
|
* #PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-03-28 14:18:39 +02:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 19:23:03 +02:00
|
|
|
* respectively of \p key.
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
|
|
|
* \retval #PSA_ERROR_INVALID_PADDING
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-28 14:18:39 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_asymmetric_decrypt(psa_key_slot_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *salt,
|
|
|
|
size_t salt_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
|
|
|
|
2018-01-28 13:16:24 +01:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-20 17:42:05 +02:00
|
|
|
/** \defgroup generators Generators
|
2018-07-12 17:12:33 +02:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** The type of the state data structure for generators.
|
|
|
|
*
|
|
|
|
* Before calling any function on a generator, the application must
|
|
|
|
* initialize it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_crypto_generator_t generator;
|
|
|
|
* memset(&generator, 0, sizeof(generator));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_crypto_generator_t generator = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_CRYPTO_GENERATOR_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_crypto_generator_t generator = PSA_CRYPTO_GENERATOR_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_crypto_generator_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_crypto_generator_t generator;
|
|
|
|
* generator = psa_crypto_generator_init();
|
|
|
|
* \endcode
|
|
|
|
*
|
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation.
|
|
|
|
*/
|
|
|
|
typedef struct psa_crypto_generator_s psa_crypto_generator_t;
|
|
|
|
|
|
|
|
/** \def PSA_CRYPTO_GENERATOR_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for a generator object
|
|
|
|
* of type #psa_crypto_generator_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_CRYPTO_GENERATOR_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for a generator object.
|
|
|
|
*/
|
|
|
|
static psa_crypto_generator_t psa_crypto_generator_init(void);
|
|
|
|
|
|
|
|
/** Retrieve the current capacity of a generator.
|
|
|
|
*
|
|
|
|
* The capacity of a generator is the maximum number of bytes that it can
|
|
|
|
* return. Reading *N* bytes from a generator reduces its capacity by *N*.
|
|
|
|
*
|
|
|
|
* \param[in] generator The generator to query.
|
|
|
|
* \param[out] capacity On success, the capacity of the generator.
|
|
|
|
*
|
|
|
|
* \retval PSA_SUCCESS
|
|
|
|
* \retval PSA_ERROR_BAD_STATE
|
|
|
|
* \retval PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
*/
|
|
|
|
psa_status_t psa_get_generator_capacity(const psa_crypto_generator_t *generator,
|
|
|
|
size_t *capacity);
|
|
|
|
|
|
|
|
/** Read some data from a generator.
|
|
|
|
*
|
|
|
|
* This function reads and returns a sequence of bytes from a generator.
|
|
|
|
* The data that is read is discarded from the generator. The generator's
|
|
|
|
* capacity is decreased by the number of bytes read.
|
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to read from.
|
|
|
|
* \param[out] output Buffer where the generator output will be
|
|
|
|
* written.
|
|
|
|
* \param output_length Number of bytes to output.
|
|
|
|
*
|
|
|
|
* \retval PSA_SUCCESS
|
|
|
|
* \retval PSA_ERROR_INSUFFICIENT_CAPACITY
|
|
|
|
* There were fewer than \p output_length bytes
|
|
|
|
* in the generator. Note that in this case, no
|
|
|
|
* output is written to the output buffer.
|
|
|
|
* The generator's capacity is set to 0, thus
|
|
|
|
* subsequent calls to this function will not
|
|
|
|
* succeed, even with a smaller output buffer.
|
|
|
|
* \retval PSA_ERROR_BAD_STATE
|
|
|
|
* \retval PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_generator_read(psa_crypto_generator_t *generator,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_length);
|
|
|
|
|
|
|
|
/** Create a symmetric key from data read from a generator.
|
|
|
|
*
|
|
|
|
* This function reads a sequence of bytes from a generator and imports
|
|
|
|
* these bytes as a key.
|
|
|
|
* The data that is read is discarded from the generator. The generator's
|
|
|
|
* capacity is decreased by the number of bytes read.
|
|
|
|
*
|
|
|
|
* This function is equivalent to calling #psa_generator_read and
|
|
|
|
* passing the resulting output to #psa_import_key, but
|
|
|
|
* if the implementation provides an isolation boundary then
|
|
|
|
* the key material is not exposed outside the isolation boundary.
|
|
|
|
*
|
|
|
|
* \param key Slot where the key will be stored. This must be a
|
|
|
|
* valid slot for a key of the chosen type. It must
|
|
|
|
* be unoccupied.
|
|
|
|
* \param type Key type (a \c PSA_KEY_TYPE_XXX value).
|
|
|
|
* This must be a symmetric key type.
|
|
|
|
* \param bits Key size in bits.
|
|
|
|
* \param[in,out] generator The generator object to read from.
|
|
|
|
*
|
|
|
|
* \retval PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval PSA_ERROR_INSUFFICIENT_CAPACITY
|
|
|
|
* There were fewer than \p output_length bytes
|
|
|
|
* in the generator. Note that in this case, no
|
|
|
|
* output is written to the output buffer.
|
|
|
|
* The generator's capacity is set to 0, thus
|
|
|
|
* subsequent calls to this function will not
|
|
|
|
* succeed, even with a smaller output buffer.
|
|
|
|
* \retval PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* The key type or key size is not supported, either by the
|
|
|
|
* implementation in general or in this particular slot.
|
|
|
|
* \retval PSA_ERROR_BAD_STATE
|
|
|
|
* \retval PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The key slot is invalid.
|
|
|
|
* \retval PSA_ERROR_OCCUPIED_SLOT
|
|
|
|
* There is already a key in the specified slot.
|
|
|
|
* \retval PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval PSA_ERROR_INSUFFICIENT_STORAGE
|
|
|
|
* \retval PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-07-12 17:12:33 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_generator_import_key(psa_key_slot_t key,
|
|
|
|
psa_key_type_t type,
|
|
|
|
size_t bits,
|
|
|
|
psa_crypto_generator_t *generator);
|
|
|
|
|
|
|
|
/** Abort a generator.
|
|
|
|
*
|
|
|
|
* Once a generator has been aborted, its capacity is zero.
|
|
|
|
* Aborting a generator frees all associated resources except for the
|
|
|
|
* \c generator structure itself.
|
|
|
|
*
|
|
|
|
* This function may be called at any time as long as the generator
|
|
|
|
* object has been initialized to #PSA_CRYPTO_GENERATOR_INIT, to
|
|
|
|
* psa_crypto_generator_init() or a zero value. In particular, it is valid
|
|
|
|
* to call psa_generator_abort() twice, or to call psa_generator_abort()
|
|
|
|
* on a generator that has not been set up.
|
|
|
|
*
|
|
|
|
* Once aborted, the generator object may be called.
|
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator to abort.
|
|
|
|
*
|
|
|
|
* \retval PSA_SUCCESS
|
|
|
|
* \retval PSA_ERROR_BAD_STATE
|
|
|
|
* \retval PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_generator_abort(psa_crypto_generator_t *generator);
|
|
|
|
|
2018-09-18 12:06:11 +02:00
|
|
|
/** Use the maximum possible capacity for a generator.
|
|
|
|
*
|
|
|
|
* Use this value as the capacity argument when setting up a generator
|
|
|
|
* to indicate that the generator should have the maximum possible capacity.
|
|
|
|
* The value of the maximum possible capacity depends on the generator
|
|
|
|
* algorithm.
|
|
|
|
*/
|
|
|
|
#define PSA_GENERATOR_UNBRIDLED_CAPACITY ((size_t)(-1))
|
|
|
|
|
2018-07-12 17:12:33 +02:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/** \defgroup derivation Key derivation
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Set up a key derivation operation.
|
|
|
|
*
|
|
|
|
* A key derivation algorithm takes three inputs: a secret input \p key and
|
|
|
|
* two non-secret inputs \p label and p salt.
|
|
|
|
* The result of this function is a byte generator which can
|
|
|
|
* be used to produce keys and other cryptographic material.
|
|
|
|
*
|
|
|
|
* The role of \p label and \p salt is as follows:
|
2018-07-12 17:22:21 +02:00
|
|
|
* - For HKDF (#PSA_ALG_HKDF), \p salt is the salt used in the "extract" step
|
|
|
|
* and \p label is the info string used in the "expand" step.
|
2018-07-12 17:17:20 +02:00
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to set up. It must
|
2018-09-18 12:12:42 +02:00
|
|
|
* have been initialized to all-bits-zero,
|
|
|
|
* a logical zero (`{0}`),
|
|
|
|
* \c PSA_CRYPTO_GENERATOR_INIT or
|
|
|
|
* psa_crypto_generator_init().
|
2018-07-12 17:17:20 +02:00
|
|
|
* \param key Slot containing the secret key to use.
|
|
|
|
* \param alg The key derivation algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_KEY_DERIVATION(\p alg) is true).
|
|
|
|
* \param[in] salt Salt to use.
|
|
|
|
* \param salt_length Size of the \p salt buffer in bytes.
|
|
|
|
* \param[in] label Label to use.
|
|
|
|
* \param label_length Size of the \p label buffer in bytes.
|
|
|
|
* \param capacity The maximum number of bytes that the
|
|
|
|
* generator will be able to provide.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c key is not compatible with \c alg,
|
|
|
|
* or \p capacity is too large for the specified algorithm and key.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \c alg is not supported or is not a key derivation algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-07-12 17:17:20 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_key_derivation(psa_crypto_generator_t *generator,
|
2018-07-26 14:59:04 +02:00
|
|
|
psa_key_slot_t key,
|
2018-07-12 17:17:20 +02:00
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *salt,
|
|
|
|
size_t salt_length,
|
|
|
|
const uint8_t *label,
|
|
|
|
size_t label_length,
|
|
|
|
size_t capacity);
|
|
|
|
|
2018-09-18 12:01:02 +02:00
|
|
|
/** Set up a key agreement operation.
|
|
|
|
*
|
|
|
|
* A key agreement algorithm takes two inputs: a private key \p private_key
|
|
|
|
* a public key \p peer_key.
|
|
|
|
* The result of this function is a byte generator which can
|
|
|
|
* be used to produce keys and other cryptographic material.
|
|
|
|
*
|
2018-10-25 22:22:31 +02:00
|
|
|
* The resulting generator always has the maximum capacity permitted by
|
|
|
|
* the algorithm.
|
|
|
|
*
|
2018-09-18 12:01:02 +02:00
|
|
|
* \param[in,out] generator The generator object to set up. It must
|
|
|
|
* have been initialized to all-bits-zero,
|
|
|
|
* a logical zero (`{0}`),
|
|
|
|
* \c PSA_CRYPTO_GENERATOR_INIT or
|
|
|
|
* psa_crypto_generator_init().
|
|
|
|
* \param private_key Slot containing the private key to use.
|
2018-11-15 17:46:21 +01:00
|
|
|
* \param[in] peer_key Public key of the peer. It must be
|
|
|
|
* in the same format that psa_import_key()
|
|
|
|
* accepts. The standard formats for public
|
|
|
|
* keys are documented in the documentation
|
|
|
|
* of psa_export_public_key().
|
2018-09-18 12:01:02 +02:00
|
|
|
* \param peer_key_length Size of \p peer_key in bytes.
|
|
|
|
* \param alg The key agreement algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_KEY_AGREEMENT(\p alg) is true).
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c private_key is not compatible with \c alg,
|
|
|
|
* or \p peer_key is not valid for \c alg or not compatible with
|
|
|
|
* \c private_key.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \c alg is not supported or is not a key derivation algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_key_agreement(psa_crypto_generator_t *generator,
|
|
|
|
psa_key_slot_t private_key,
|
|
|
|
const uint8_t *peer_key,
|
|
|
|
size_t peer_key_length,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-07-12 17:17:20 +02:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-20 17:42:05 +02:00
|
|
|
/** \defgroup random Random generation
|
2018-03-28 14:18:50 +02:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Generate random bytes.
|
|
|
|
*
|
|
|
|
* \warning This function **can** fail! Callers MUST check the return status
|
|
|
|
* and MUST NOT use the content of the output buffer if the return
|
|
|
|
* status is not #PSA_SUCCESS.
|
|
|
|
*
|
|
|
|
* \note To generate a key, use psa_generate_key() instead.
|
|
|
|
*
|
2018-07-12 01:08:58 +02:00
|
|
|
* \param[out] output Output buffer for the generated data.
|
2018-03-28 14:18:50 +02:00
|
|
|
* \param output_size Number of bytes to generate and output.
|
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-06 15:24:41 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-28 14:18:50 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_generate_random(uint8_t *output,
|
|
|
|
size_t output_size);
|
|
|
|
|
2018-07-12 01:24:09 +02:00
|
|
|
/** Extra parameters for RSA key generation.
|
|
|
|
*
|
2018-07-13 14:38:15 +02:00
|
|
|
* You may pass a pointer to a structure of this type as the \c extra
|
2018-07-12 01:24:09 +02:00
|
|
|
* parameter to psa_generate_key().
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2018-07-20 17:42:05 +02:00
|
|
|
uint32_t e; /**< Public exponent value. Default: 65537. */
|
2018-07-12 01:24:09 +02:00
|
|
|
} psa_generate_key_extra_rsa;
|
|
|
|
|
2018-03-28 14:18:50 +02:00
|
|
|
/**
|
|
|
|
* \brief Generate a key or key pair.
|
|
|
|
*
|
2018-06-19 20:19:14 +02:00
|
|
|
* \param key Slot where the key will be stored. This must be a
|
|
|
|
* valid slot for a key of the chosen type. It must
|
|
|
|
* be unoccupied.
|
|
|
|
* \param type Key type (a \c PSA_KEY_TYPE_XXX value).
|
|
|
|
* \param bits Key size in bits.
|
2018-07-12 01:14:59 +02:00
|
|
|
* \param[in] extra Extra parameters for key generation. The
|
2018-06-19 20:19:14 +02:00
|
|
|
* interpretation of this parameter depends on
|
2018-07-12 19:23:03 +02:00
|
|
|
* \p type. All types support \c NULL to use
|
2018-07-12 01:31:03 +02:00
|
|
|
* default parameters. Implementation that support
|
|
|
|
* the generation of vendor-specific key types
|
|
|
|
* that allow extra parameters shall document
|
|
|
|
* the format of these extra parameters and
|
|
|
|
* the default values. For standard parameters,
|
|
|
|
* the meaning of \p extra is as follows:
|
2018-07-12 19:23:03 +02:00
|
|
|
* - For a symmetric key type (a type such
|
2018-07-12 01:31:03 +02:00
|
|
|
* that #PSA_KEY_TYPE_IS_ASYMMETRIC(\p type) is
|
|
|
|
* false), \p extra must be \c NULL.
|
2018-07-12 19:23:03 +02:00
|
|
|
* - For an elliptic curve key type (a type
|
2018-07-12 01:31:03 +02:00
|
|
|
* such that #PSA_KEY_TYPE_IS_ECC(\p type) is
|
|
|
|
* false), \p extra must be \c NULL.
|
2018-07-12 19:40:46 +02:00
|
|
|
* - For an RSA key (\p type is
|
|
|
|
* #PSA_KEY_TYPE_RSA_KEYPAIR), \p extra is an
|
|
|
|
* optional #psa_generate_key_extra_rsa structure
|
2018-07-12 01:31:03 +02:00
|
|
|
* specifying the public exponent. The
|
|
|
|
* default public exponent used when \p extra
|
|
|
|
* is \c NULL is 65537.
|
2018-07-12 01:14:59 +02:00
|
|
|
* \param extra_size Size of the buffer that \p extra
|
|
|
|
* points to, in bytes. Note that if \p extra is
|
|
|
|
* \c NULL then \p extra_size must be zero.
|
2018-03-28 14:18:50 +02:00
|
|
|
*
|
2018-07-11 17:34:00 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_ENTROPY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 10:44:52 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 11:22:41 +02:00
|
|
|
* The library has not been previously initialized by psa_crypto_init().
|
|
|
|
* It is implementation-dependent whether a failure to initialize
|
|
|
|
* results in this error code.
|
2018-03-28 14:18:50 +02:00
|
|
|
*/
|
|
|
|
psa_status_t psa_generate_key(psa_key_slot_t key,
|
|
|
|
psa_key_type_t type,
|
|
|
|
size_t bits,
|
2018-07-12 01:14:59 +02:00
|
|
|
const void *extra,
|
|
|
|
size_t extra_size);
|
2018-03-28 14:18:50 +02:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-01-27 23:32:46 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-06-27 19:49:02 +02:00
|
|
|
/* The file "crypto_sizes.h" contains definitions for size calculation
|
|
|
|
* macros whose definitions are implementation-specific. */
|
|
|
|
#include "crypto_sizes.h"
|
|
|
|
|
2018-02-07 21:05:37 +01:00
|
|
|
/* The file "crypto_struct.h" contains definitions for
|
|
|
|
* implementation-specific structs that are declared above. */
|
|
|
|
#include "crypto_struct.h"
|
|
|
|
|
|
|
|
/* The file "crypto_extra.h" contains vendor-specific definitions. This
|
|
|
|
* can include vendor-defined algorithms, extra functions, etc. */
|
2018-01-27 23:32:46 +01:00
|
|
|
#include "crypto_extra.h"
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_H */
|