2018-01-27 22:32:46 +00:00
|
|
|
/**
|
|
|
|
* \file psa/crypto.h
|
|
|
|
* \brief Platform Security Architecture cryptography module
|
|
|
|
*/
|
2018-07-25 12:26:13 +00: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 22:32:46 +00:00
|
|
|
|
|
|
|
#ifndef PSA_CRYPTO_H
|
|
|
|
#define PSA_CRYPTO_H
|
|
|
|
|
|
|
|
#include "crypto_platform.h"
|
|
|
|
|
2018-01-28 12:16:24 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2018-02-07 20:54:47 +00:00
|
|
|
#ifdef __DOXYGEN_ONLY__
|
2018-03-07 15:40:18 +00: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 20:54:47 +00:00
|
|
|
/** \defgroup platform Implementation-specific definitions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-11-30 13:39:32 +00:00
|
|
|
/** \brief Key handle.
|
2018-01-28 12:16:24 +00:00
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* This type represents open handles to keys. It must be an unsigned integral
|
2018-02-08 08:47:44 +00:00
|
|
|
* type. The choice of type is implementation-dependent.
|
2018-11-30 13:39:32 +00:00
|
|
|
*
|
2018-12-11 14:51:32 +00:00
|
|
|
* 0 is not a valid key handle. How other handle values are assigned is
|
|
|
|
* implementation-dependent.
|
2018-01-28 12:16:24 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
typedef _unsigned_integral_type_ psa_key_handle_t;
|
2018-01-28 12:16:24 +00:00
|
|
|
|
2018-02-07 20:54:47 +00:00
|
|
|
/**@}*/
|
2018-03-07 15:40:18 +00:00
|
|
|
#endif /* __DOXYGEN_ONLY__ */
|
2018-02-07 20:54:47 +00:00
|
|
|
|
2018-01-27 22:32:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-12-12 12:38:31 +00:00
|
|
|
/* The file "crypto_types.h" declares types that encode errors,
|
|
|
|
* algorithms, key types, policies, etc. */
|
|
|
|
#include "crypto_types.h"
|
2018-06-18 13:20:16 +00:00
|
|
|
|
2018-12-12 12:38:31 +00:00
|
|
|
/* The file "crypto_values.h" declares macros to build and analyze values
|
|
|
|
* of integral types defined in "crypto_types.h". */
|
|
|
|
#include "crypto_values.h"
|
2018-01-27 22:32:46 +00:00
|
|
|
|
2018-12-12 12:38:31 +00:00
|
|
|
/** \defgroup initialization Library initialization
|
|
|
|
* @{
|
2018-11-30 13:08:36 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-27 22:32:46 +00: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 09:22:41 +00: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 15:34:00 +00: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 22:32:46 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_crypto_init(void);
|
|
|
|
|
2018-01-28 12:16:24 +00:00
|
|
|
/**@}*/
|
|
|
|
|
2019-01-19 12:40:11 +00:00
|
|
|
/** \defgroup policy Key policies
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** The type of the key policy data structure.
|
|
|
|
*
|
|
|
|
* Before calling any function on a key policy, the application must initialize
|
|
|
|
* it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_key_policy_t policy;
|
|
|
|
* memset(&policy, 0, sizeof(policy));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_key_policy_t policy = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_KEY_POLICY_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_key_policy_t policy = PSA_KEY_POLICY_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_key_policy_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_key_policy_t policy;
|
|
|
|
* policy = psa_key_policy_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_key_policy_s psa_key_policy_t;
|
|
|
|
|
|
|
|
/** \def PSA_KEY_POLICY_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for a key policy object of type
|
|
|
|
* #psa_key_policy_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_POLICY_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for a key policy that forbids all usage of the key.
|
|
|
|
*/
|
|
|
|
static psa_key_policy_t psa_key_policy_init(void);
|
|
|
|
|
|
|
|
/** \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().
|
|
|
|
*
|
|
|
|
* \param[in,out] policy The key policy to modify. It must have been
|
|
|
|
* initialized as per the documentation for
|
|
|
|
* #psa_key_policy_t.
|
|
|
|
* \param usage The permitted uses for the key.
|
|
|
|
* \param alg The algorithm that the key may be used for.
|
|
|
|
*/
|
|
|
|
void psa_key_policy_set_usage(psa_key_policy_t *policy,
|
|
|
|
psa_key_usage_t usage,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
|
|
|
/** \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.
|
|
|
|
*/
|
|
|
|
psa_key_usage_t psa_key_policy_get_usage(const psa_key_policy_t *policy);
|
|
|
|
|
|
|
|
/** \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.
|
|
|
|
*/
|
|
|
|
psa_algorithm_t psa_key_policy_get_algorithm(const psa_key_policy_t *policy);
|
|
|
|
|
|
|
|
/** \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.
|
|
|
|
*
|
|
|
|
* Implementations may set restrictions on supported key policies
|
|
|
|
* depending on the key type and the key slot.
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key whose policy is to be changed.
|
|
|
|
* \param[in] policy The policy object to query.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* If the key is persistent, it is implementation-defined whether
|
|
|
|
* the policy has been saved to persistent storage. Implementations
|
|
|
|
* may defer saving the policy until the key material is created.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \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
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_set_key_policy(psa_key_handle_t handle,
|
|
|
|
const psa_key_policy_t *policy);
|
|
|
|
|
|
|
|
/** \brief Get the usage policy for a key slot.
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key slot whose policy is being queried.
|
|
|
|
* \param[out] policy On success, the key's policy.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_get_key_policy(psa_key_handle_t handle,
|
|
|
|
psa_key_policy_t *policy);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-01-28 12:16:24 +00:00
|
|
|
/** \defgroup key_management Key management
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-11-30 13:39:32 +00:00
|
|
|
/** \brief Retrieve the lifetime of an open key.
|
2018-11-30 13:07:45 +00:00
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to query.
|
2018-11-30 13:07:45 +00:00
|
|
|
* \param[out] lifetime On success, the lifetime value.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-11-30 13:07:45 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_get_key_lifetime(psa_key_handle_t handle,
|
2018-11-30 13:07:45 +00:00
|
|
|
psa_key_lifetime_t *lifetime);
|
|
|
|
|
|
|
|
|
2018-11-30 13:08:36 +00:00
|
|
|
/** Allocate a key slot for a transient key, i.e. a key which is only stored
|
|
|
|
* in volatile memory.
|
|
|
|
*
|
|
|
|
* The allocated key slot and its handle remain valid until the
|
|
|
|
* application calls psa_close_key() or psa_destroy_key() or until the
|
|
|
|
* application terminates.
|
|
|
|
*
|
|
|
|
* \param[out] handle On success, a handle to a volatile key slot.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success. The application can now use the value of `*handle`
|
|
|
|
* to access the newly allocated key slot.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* There was not enough memory, or the maximum number of key slots
|
|
|
|
* has been reached.
|
|
|
|
*/
|
2019-01-19 11:20:52 +00:00
|
|
|
psa_status_t psa_allocate_key(psa_key_handle_t *handle);
|
2018-11-30 13:08:36 +00:00
|
|
|
|
|
|
|
/** Open a handle to an existing persistent key.
|
|
|
|
*
|
|
|
|
* Open a handle to a key which was previously created with psa_create_key().
|
|
|
|
*
|
|
|
|
* \param lifetime The lifetime of the key. This designates a storage
|
|
|
|
* area where the key material is stored. This must not
|
|
|
|
* be #PSA_KEY_LIFETIME_VOLATILE.
|
|
|
|
* \param id The persistent identifier of the key.
|
|
|
|
* \param[out] handle On success, a handle to a key slot which contains
|
|
|
|
* the data and metadata loaded from the specified
|
|
|
|
* persistent location.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success. The application can now use the value of `*handle`
|
|
|
|
* to access the newly allocated key slot.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p lifetime is invalid, for example #PSA_KEY_LIFETIME_VOLATILE.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p id is invalid for the specified lifetime.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p lifetime is not supported.
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* The specified key exists, but the application does not have the
|
|
|
|
* permission to access it. Note that this specification does not
|
|
|
|
* define any way to create such a key, but it may be possible
|
|
|
|
* through implementation-specific means.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_open_key(psa_key_lifetime_t lifetime,
|
|
|
|
psa_key_id_t id,
|
|
|
|
psa_key_handle_t *handle);
|
|
|
|
|
|
|
|
/** Create a new persistent key slot.
|
|
|
|
*
|
|
|
|
* Create a new persistent key slot and return a handle to it. The handle
|
|
|
|
* remains valid until the application calls psa_close_key() or terminates.
|
|
|
|
* The application can open the key again with psa_open_key() until it
|
|
|
|
* removes the key by calling psa_destroy_key().
|
|
|
|
*
|
|
|
|
* \param lifetime The lifetime of the key. This designates a storage
|
|
|
|
* area where the key material is stored. This must not
|
|
|
|
* be #PSA_KEY_LIFETIME_VOLATILE.
|
|
|
|
* \param id The persistent identifier of the key.
|
|
|
|
* \param[out] handle On success, a handle to the newly created key slot.
|
|
|
|
* When key material is later created in this key slot,
|
|
|
|
* it will be saved to the specified persistent location.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success. The application can now use the value of `*handle`
|
|
|
|
* to access the newly allocated key slot.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_STORAGE
|
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
|
|
|
* There is already a key with the identifier \p id in the storage
|
|
|
|
* area designated by \p lifetime.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p lifetime is invalid, for example #PSA_KEY_LIFETIME_VOLATILE.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p id is invalid for the specified lifetime.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p lifetime is not supported.
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \p lifetime is valid, but the application does not have the
|
|
|
|
* permission to create a key there.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_create_key(psa_key_lifetime_t lifetime,
|
|
|
|
psa_key_id_t id,
|
|
|
|
psa_key_handle_t *handle);
|
|
|
|
|
|
|
|
/** Close a key handle.
|
|
|
|
*
|
|
|
|
* If the handle designates a volatile key, destroy the key material and
|
|
|
|
* free all associated resources, just like psa_destroy_key().
|
|
|
|
*
|
|
|
|
* If the handle designates a persistent key, free all resources associated
|
|
|
|
* with the key in volatile memory. The key slot in persistent storage is
|
|
|
|
* not affected and can be opened again later with psa_open_key().
|
|
|
|
*
|
2019-01-14 17:24:53 +00:00
|
|
|
* If the key is currently in use in a multipart operation,
|
|
|
|
* the multipart operation is aborted.
|
|
|
|
*
|
2018-11-30 13:08:36 +00:00
|
|
|
* \param handle The key handle to close.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
2018-11-30 13:08:36 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_close_key(psa_key_handle_t handle);
|
|
|
|
|
2018-11-30 13:07:45 +00:00
|
|
|
/**@}*/
|
|
|
|
|
|
|
|
/** \defgroup import_export Key import and export
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-01-28 12:16:24 +00:00
|
|
|
/**
|
|
|
|
* \brief Import a key in binary format.
|
|
|
|
*
|
2018-03-07 15:40:18 +00:00
|
|
|
* This function supports any output from psa_export_key(). Refer to the
|
2018-10-31 13:07:52 +00: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 12:16:24 +00:00
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the slot where the key will be stored.
|
2019-01-19 11:20:52 +00:00
|
|
|
* It must have been obtained by calling
|
|
|
|
* psa_allocate_key() or psa_create_key() and must
|
|
|
|
* not contain key material yet.
|
2018-10-31 13:07:52 +00: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 17:23:03 +00:00
|
|
|
* \param data_length Size of the \p data buffer in bytes.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* Success.
|
2018-12-11 14:51:32 +00:00
|
|
|
* If the key is persistent, the key material and the key's metadata
|
|
|
|
* have been saved to persistent storage.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-04-19 06:28:58 +00:00
|
|
|
* The key type or key size is not supported, either by the
|
|
|
|
* implementation in general or in this particular slot.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-02-08 08:47:44 +00:00
|
|
|
* The key slot is invalid,
|
|
|
|
* or the key data is not correctly formatted.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
2018-04-19 06:28:58 +00:00
|
|
|
* There is already a key in the specified slot.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_STORAGE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
2018-06-18 16:27:26 +00:00
|
|
|
* \retval #PSA_ERROR_STORAGE_FAILURE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:16:24 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_import_key(psa_key_handle_t handle,
|
2018-01-28 12:16:24 +00:00
|
|
|
psa_key_type_t type,
|
|
|
|
const uint8_t *data,
|
|
|
|
size_t data_length);
|
|
|
|
|
|
|
|
/**
|
2018-11-30 13:39:32 +00:00
|
|
|
* \brief Destroy a key.
|
2018-04-19 06:38:16 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* This function also erases any metadata such as policies and frees all
|
|
|
|
* resources associated with the key.
|
2018-04-19 06:38:16 +00:00
|
|
|
*
|
2019-01-14 17:24:53 +00:00
|
|
|
* If the key is currently in use in a multipart operation,
|
|
|
|
* the multipart operation is aborted.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key slot to erase.
|
2018-01-28 12:16:24 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-04-19 06:28:58 +00:00
|
|
|
* The slot's content, if any, has been erased.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
2018-04-19 06:28:58 +00: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-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
2018-04-19 06:28:58 +00:00
|
|
|
* There was an failure in communication with the cryptoprocessor.
|
|
|
|
* The key material may still be present in the cryptoprocessor.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_STORAGE_FAILURE
|
2018-04-19 06:28:58 +00: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 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-04-19 06:28:58 +00:00
|
|
|
* An unexpected condition which is not a storage corruption or
|
|
|
|
* a communication failure occurred. The cryptoprocessor may have
|
|
|
|
* been compromised.
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:16:24 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_destroy_key(psa_key_handle_t handle);
|
2018-01-28 12:16:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Get basic metadata about a key.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key slot to query.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] type On success, the key type (a \c PSA_KEY_TYPE_XXX value).
|
2018-02-08 08:47:44 +00:00
|
|
|
* This may be a null pointer, in which case the key type
|
|
|
|
* is not written.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] bits On success, the key size in bits.
|
2018-03-21 19:49:16 +00:00
|
|
|
* This may be a null pointer, in which case the key size
|
2018-02-08 08:47:44 +00:00
|
|
|
* is not written.
|
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
2018-11-30 13:39:32 +00:00
|
|
|
* The handle is to a key slot which does not contain key material yet.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:16:24 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_get_key_information(psa_key_handle_t handle,
|
2018-01-28 12:16:24 +00:00
|
|
|
psa_key_type_t *type,
|
|
|
|
size_t *bits);
|
|
|
|
|
2019-01-11 12:06:22 +00:00
|
|
|
/**
|
|
|
|
* \brief Set domain parameters for a key.
|
|
|
|
*
|
|
|
|
* Some key types require additional domain parameters to be set before import
|
|
|
|
* or generation of the key. The domain parameters can be set with this
|
|
|
|
* function or, for key generation, through the \c extra parameter of
|
|
|
|
* psa_generate_key().
|
|
|
|
*
|
|
|
|
* The format for the required domain parameters varies by the key type.
|
2019-01-11 13:50:43 +00:00
|
|
|
* - For DSA public keys (#PSA_KEY_TYPE_DSA_PUBLIC_KEY),
|
|
|
|
* the `Dss-Parms` format as defined by RFC 3279 §2.3.2.
|
|
|
|
* ```
|
|
|
|
* Dss-Parms ::= SEQUENCE {
|
|
|
|
* p INTEGER,
|
|
|
|
* q INTEGER,
|
|
|
|
* g INTEGER
|
|
|
|
* }
|
|
|
|
* ```
|
2019-01-11 14:20:03 +00:00
|
|
|
* - For Diffie-Hellman key exchange keys (#PSA_KEY_TYPE_DH_PUBLIC_KEY), the
|
|
|
|
* `DomainParameters` format as defined by RFC 3279 §2.3.3.
|
|
|
|
* ```
|
|
|
|
* DomainParameters ::= SEQUENCE {
|
|
|
|
* p INTEGER, -- odd prime, p=jq +1
|
|
|
|
* g INTEGER, -- generator, g
|
|
|
|
* q INTEGER, -- factor of p-1
|
|
|
|
* j INTEGER OPTIONAL, -- subgroup factor
|
|
|
|
* validationParms ValidationParms OPTIONAL
|
|
|
|
* }
|
|
|
|
* ValidationParms ::= SEQUENCE {
|
|
|
|
* seed BIT STRING,
|
|
|
|
* pgenCounter INTEGER
|
|
|
|
* }
|
|
|
|
* ```
|
2019-01-11 12:06:22 +00:00
|
|
|
*
|
2019-01-18 16:11:25 +00:00
|
|
|
* \param handle Handle to the slot where the key will be stored.
|
|
|
|
* This must be a valid slot for a key of the chosen
|
|
|
|
* type: it must have been obtained by calling
|
|
|
|
* psa_allocate_key() or psa_create_key() with the
|
|
|
|
* correct \p type and with a maximum size that is
|
|
|
|
* compatible with \p data. It must not contain
|
|
|
|
* key material yet.
|
|
|
|
* \param type Key type (a \c PSA_KEY_TYPE_XXX value). When
|
|
|
|
* subsequently creating key material into \p handle,
|
|
|
|
* the type must be compatible.
|
2019-01-11 12:06:22 +00:00
|
|
|
* \param[in] data Buffer containing the key domain parameters. The content
|
|
|
|
* of this buffer is interpreted according to \p type. of
|
|
|
|
* psa_export_key() or psa_export_public_key() for the
|
|
|
|
* chosen type.
|
|
|
|
* \param data_length Size of the \p data buffer in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
|
|
|
* There is already a key in the specified slot.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_set_key_domain_parameters(psa_key_handle_t handle,
|
2019-01-18 16:11:25 +00:00
|
|
|
psa_key_type_t type,
|
2019-01-11 12:06:22 +00:00
|
|
|
const uint8_t *data,
|
|
|
|
size_t data_length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Get domain parameters for a key.
|
|
|
|
*
|
|
|
|
* Get the domain parameters for a key with this function, if any. The format
|
|
|
|
* of the domain parameters written to \p data is specified in the
|
|
|
|
* documentation for psa_set_key_domain_parameters().
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key to get domain parameters from.
|
|
|
|
* \param[out] data On success, the key domain parameters.
|
|
|
|
* \param data_size Size of the \p data buffer in bytes.
|
|
|
|
* \param[out] data_length On success, the number of bytes
|
|
|
|
* that make up the key domain parameters data.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* There is no key in the specified slot.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_get_key_domain_parameters(psa_key_handle_t handle,
|
|
|
|
uint8_t *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t *data_length);
|
|
|
|
|
2018-01-28 12:16:24 +00:00
|
|
|
/**
|
|
|
|
* \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 13:07:52 +00: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 12:16:24 +00:00
|
|
|
*
|
2018-02-08 08:47:44 +00: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 20:29:30 +00:00
|
|
|
* - For RSA key pairs (#PSA_KEY_TYPE_RSA_KEYPAIR), the format
|
2018-08-10 16:57:40 +00:00
|
|
|
* is the non-encrypted DER encoding of the representation defined by
|
|
|
|
* PKCS\#1 (RFC 8017) as `RSAPrivateKey`, version 0.
|
|
|
|
* ```
|
|
|
|
* RSAPrivateKey ::= SEQUENCE {
|
2018-08-10 23:17:53 +00:00
|
|
|
* version INTEGER, -- must be 0
|
2018-08-10 16:57:40 +00: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
|
|
|
|
* }
|
|
|
|
* ```
|
2019-01-11 13:50:43 +00:00
|
|
|
* - For DSA private keys (#PSA_KEY_TYPE_DSA_KEYPAIR), the format is the
|
|
|
|
* representation of the private key `x` as a big-endian byte string. The
|
|
|
|
* length of the byte string is the private key size in bytes (leading zeroes
|
|
|
|
* are not stripped).
|
2018-08-10 16:57:40 +00:00
|
|
|
* - For elliptic curve key pairs (key types for which
|
2018-10-29 18:24:33 +00:00
|
|
|
* #PSA_KEY_TYPE_IS_ECC_KEYPAIR is true), the format is
|
2018-11-15 16:44:43 +00: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 18:24:33 +00:00
|
|
|
* This is the content of the `privateKey` field of the `ECPrivateKey`
|
|
|
|
* format defined by RFC 5915.
|
2019-01-11 14:20:03 +00:00
|
|
|
* - For Diffie-Hellman key exchange key pairs (#PSA_KEY_TYPE_DH_KEYPAIR), the
|
|
|
|
* format is the representation of the private key `x` as a big-endian byte
|
|
|
|
* string. The length of the byte string is the private key size in bytes
|
|
|
|
* (leading zeroes are not stripped).
|
2018-08-10 16:57:40 +00: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 08:47:44 +00:00
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to export.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] data Buffer where the key data is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param data_size Size of the \p data buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] data_length On success, the number of bytes
|
|
|
|
* that make up the key data.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
2018-07-24 15:33:30 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-08-10 17:06:59 +00: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 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:16:24 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_export_key(psa_key_handle_t handle,
|
2018-01-28 12:16:24 +00:00
|
|
|
uint8_t *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t *data_length);
|
|
|
|
|
2018-03-03 20:30:44 +00: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.
|
|
|
|
*
|
2019-01-11 17:15:56 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2019-01-10 10:23:21 +00:00
|
|
|
* For standard key types, the output format is as follows:
|
|
|
|
* - For RSA public keys (#PSA_KEY_TYPE_RSA_PUBLIC_KEY), the DER encoding of
|
|
|
|
* the representation defined by RFC 3279 §2.3.1 as `RSAPublicKey`.
|
|
|
|
* ```
|
|
|
|
* RSAPublicKey ::= SEQUENCE {
|
|
|
|
* modulus INTEGER, -- n
|
|
|
|
* publicExponent INTEGER } -- e
|
|
|
|
* ```
|
2019-01-10 11:42:27 +00:00
|
|
|
* - For elliptic curve public keys (key types for which
|
|
|
|
* #PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY is true), the format is the uncompressed
|
|
|
|
* representation defined by SEC1 §2.3.3 as the content of an ECPoint.
|
|
|
|
* Let `m` be the bit size associated with the curve, i.e. the bit size of
|
|
|
|
* `q` for a curve over `F_q`. The representation consists of:
|
|
|
|
* - The byte 0x04;
|
|
|
|
* - `x_P` as a `ceiling(m/8)`-byte string, big-endian;
|
|
|
|
* - `y_P` as a `ceiling(m/8)`-byte string, big-endian.
|
2019-01-11 13:50:43 +00:00
|
|
|
* - For DSA public keys (#PSA_KEY_TYPE_DSA_PUBLIC_KEY), the format is the
|
|
|
|
* representation of the public key `y = g^x mod p` as a big-endian byte
|
|
|
|
* string. The length of the byte string is the length of the base prime `p`
|
|
|
|
* in bytes.
|
2019-01-11 14:20:03 +00:00
|
|
|
* - For Diffie-Hellman key exchange public keys (#PSA_KEY_TYPE_DH_PUBLIC_KEY),
|
|
|
|
* the format is the representation of the public key `y = g^x mod p` as a
|
|
|
|
* big-endian byte string. The length of the byte string is the length of the
|
|
|
|
* base prime `p` in bytes.
|
2018-03-03 20:30:44 +00:00
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to export.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] data Buffer where the key data is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param data_size Size of the \p data buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] data_length On success, the number of bytes
|
|
|
|
* that make up the key data.
|
2018-03-03 20:30:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-08-10 17:06:59 +00: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 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:30:44 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_export_public_key(psa_key_handle_t handle,
|
2018-03-03 20:30:44 +00:00
|
|
|
uint8_t *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t *data_length);
|
|
|
|
|
2019-01-19 12:40:11 +00:00
|
|
|
/** Make a copy of a key.
|
|
|
|
*
|
|
|
|
* Copy key material from one location to another.
|
|
|
|
*
|
|
|
|
* This function is primarily useful to copy a key from one lifetime
|
|
|
|
* to another. The target key retains its lifetime and location.
|
|
|
|
*
|
|
|
|
* In an implementation where slots have different ownerships,
|
2019-02-22 15:42:11 +00:00
|
|
|
* this function may be used to share a key with a different party,
|
2019-01-19 12:40:11 +00:00
|
|
|
* subject to implementation-defined restrictions on key sharing.
|
|
|
|
* In this case \p constraint would typically prevent the recipient
|
|
|
|
* from exporting the key.
|
|
|
|
*
|
|
|
|
* The resulting key may only be used in a way that conforms to all
|
|
|
|
* three of: the policy of the source key, the policy previously set
|
|
|
|
* on the target, and the \p constraint parameter passed when calling
|
|
|
|
* this function.
|
|
|
|
* - The usage flags on the resulting key are the bitwise-and of the
|
|
|
|
* usage flags on the source policy, the previously-set target policy
|
|
|
|
* and the policy constraint.
|
|
|
|
* - If all three policies allow the same algorithm or wildcard-based
|
|
|
|
* algorithm policy, the resulting key has the same algorithm policy.
|
|
|
|
* - If one of the policies allows an algorithm and all the other policies
|
|
|
|
* either allow the same algorithm or a wildcard-based algorithm policy
|
|
|
|
* that includes this algorithm, the resulting key allows the same
|
|
|
|
* algorithm.
|
|
|
|
*
|
|
|
|
* The effect of this function on implementation-defined metadata is
|
|
|
|
* implementation-defined.
|
|
|
|
*
|
|
|
|
* \param source_handle The key to copy. It must be a handle to an
|
|
|
|
* occupied slot.
|
|
|
|
* \param target_handle A handle to the target slot. It must not contain
|
|
|
|
* key material yet.
|
|
|
|
* \param[in] constraint An optional policy constraint. If this parameter
|
|
|
|
* is non-null then the resulting key will conform
|
|
|
|
* to this policy in addition to the source policy
|
|
|
|
* and the policy already present on the target
|
|
|
|
* slot. If this parameter is null then the
|
|
|
|
* function behaves in the same way as if it was
|
|
|
|
* the target policy, i.e. only the source and
|
|
|
|
* target policies apply.
|
2018-07-12 17:47:19 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-12 17:47:19 +00:00
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
2019-01-19 12:40:11 +00:00
|
|
|
* \p target already contains key material.
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \p source does not contain key material.
|
2018-07-12 17:47:19 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2019-01-19 12:40:11 +00:00
|
|
|
* The policy constraints on the source, on the target and
|
|
|
|
* \p constraints are incompatible.
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* The source key is not exportable and its lifetime does not
|
|
|
|
* allow copying it to the target's lifetime.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_STORAGE
|
2018-07-12 17:47:19 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-03-08 06:50:30 +00:00
|
|
|
*/
|
2019-01-19 12:40:11 +00:00
|
|
|
psa_status_t psa_copy_key(psa_key_handle_t source_handle,
|
|
|
|
psa_key_handle_t target_handle,
|
|
|
|
const psa_key_policy_t *constraint);
|
2018-02-03 21:44:14 +00:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-02-07 20:05:37 +00:00
|
|
|
/** \defgroup hash Message digests
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2019-01-14 19:18:12 +00:00
|
|
|
/** Calculate the hash (digest) of a message.
|
|
|
|
*
|
|
|
|
* \note To verify the hash of a message against an
|
|
|
|
* expected value, use psa_hash_compare() instead.
|
|
|
|
*
|
|
|
|
* \param alg The hash algorithm to compute (\c PSA_ALG_XXX value
|
|
|
|
* such that #PSA_ALG_IS_HASH(\p alg) is true).
|
|
|
|
* \param[in] input Buffer containing the message to hash.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \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
|
2019-02-15 12:01:41 +00:00
|
|
|
* #PSA_HASH_SIZE(\p alg).
|
2019-01-14 19:18:12 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a hash 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_hash_compute(psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *hash,
|
|
|
|
size_t hash_size,
|
|
|
|
size_t *hash_length);
|
|
|
|
|
|
|
|
/** Calculate the hash (digest) of a message and compare it with a
|
|
|
|
* reference value.
|
|
|
|
*
|
|
|
|
* \param alg The hash algorithm to compute (\c PSA_ALG_XXX value
|
|
|
|
* such that #PSA_ALG_IS_HASH(\p alg) is true).
|
|
|
|
* \param[in] input Buffer containing the message to hash.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \param[out] hash Buffer containing the expected hash value.
|
2019-01-17 14:25:52 +00:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2019-01-14 19:18:12 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* The expected hash is identical to the actual hash of the input.
|
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
|
|
|
* The hash of the message was calculated successfully, but it
|
|
|
|
* differs from the expected hash.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a hash 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_hash_compare(psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *hash,
|
|
|
|
const size_t hash_length);
|
|
|
|
|
2018-02-08 08:47:44 +00:00
|
|
|
/** The type of the state data structure for multipart hash operations.
|
2019-01-04 11:47:44 +00:00
|
|
|
*
|
|
|
|
* Before calling any function on a hash operation object, the application must
|
|
|
|
* initialize it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_hash_operation_t operation;
|
|
|
|
* memset(&operation, 0, sizeof(operation));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_hash_operation_t operation = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_HASH_OPERATION_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_hash_operation_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_hash_operation_t operation;
|
|
|
|
* operation = psa_hash_operation_init();
|
|
|
|
* \endcode
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-03-03 20:29:30 +00:00
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
2018-02-08 08:47:44 +00:00
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
2018-02-07 20:05:37 +00:00
|
|
|
typedef struct psa_hash_operation_s psa_hash_operation_t;
|
|
|
|
|
2019-01-04 11:47:44 +00:00
|
|
|
/** \def PSA_HASH_OPERATION_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for a hash operation object
|
|
|
|
* of type #psa_hash_operation_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_HASH_OPERATION_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for a hash operation object.
|
|
|
|
*/
|
|
|
|
static psa_hash_operation_t psa_hash_operation_init(void);
|
|
|
|
|
2019-01-14 17:29:18 +00:00
|
|
|
/** Set up a multipart hash operation.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2019-01-04 11:47:44 +00:00
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_hash_operation_t, e.g. PSA_HASH_OPERATION_INIT.
|
2018-07-08 17:46:38 +00:00
|
|
|
* -# Call psa_hash_setup() to specify the algorithm.
|
2018-02-16 20:24:11 +00:00
|
|
|
* -# Call psa_hash_update() zero, one or more times, passing a fragment
|
2018-02-08 08:47:44 +00: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
|
2019-01-04 11:47:44 +00:00
|
|
|
* has been initialized.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-08 17:46:38 +00:00
|
|
|
* After a successful call to psa_hash_setup(), the application must
|
2018-03-20 16:54:15 +00:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2018-02-08 08:47:44 +00:00
|
|
|
* - A failed call to psa_hash_update().
|
2018-03-20 16:54:53 +00:00
|
|
|
* - A call to psa_hash_finish(), psa_hash_verify() or psa_hash_abort().
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2019-01-04 11:47:44 +00:00
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_hash_operation_t and not yet in use.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \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 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* Success.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not a hash algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 08:47:44 +00:00
|
|
|
*/
|
2018-07-08 17:46:38 +00:00
|
|
|
psa_status_t psa_hash_setup(psa_hash_operation_t *operation,
|
2018-02-07 20:05:37 +00:00
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-02-08 08:47:44 +00:00
|
|
|
/** Add a message fragment to a multipart hash operation.
|
|
|
|
*
|
2018-07-08 17:46:38 +00:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active hash operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to hash.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* Success.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 08:47:44 +00:00
|
|
|
*/
|
2018-02-07 20:05:37 +00:00
|
|
|
psa_status_t psa_hash_update(psa_hash_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length);
|
|
|
|
|
2018-02-08 08:47:44 +00:00
|
|
|
/** Finish the calculation of the hash of a message.
|
|
|
|
*
|
2018-07-08 17:46:38 +00:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 08:47:44 +00: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-11 23:08:58 +00: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 12:38:15 +00:00
|
|
|
* #PSA_HASH_SIZE(\c alg) where \c alg is the
|
2018-07-11 23:08:58 +00:00
|
|
|
* hash algorithm that is calculated.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* Success.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of the \p hash buffer is too small. You can determine a
|
2018-07-11 22:34:26 +00:00
|
|
|
* sufficient buffer size by calling #PSA_HASH_SIZE(\c alg)
|
2018-02-08 08:47:44 +00:00
|
|
|
* where \c alg is the hash algorithm that is calculated.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 08:47:44 +00:00
|
|
|
*/
|
2018-02-07 20:05:37 +00: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 08:47:44 +00:00
|
|
|
/** Finish the calculation of the hash of a message and compare it with
|
|
|
|
* an expected value.
|
|
|
|
*
|
2018-07-08 17:46:38 +00:00
|
|
|
* The application must call psa_hash_setup() before calling this function.
|
2018-02-08 08:47:44 +00: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 16:54:53 +00:00
|
|
|
* \note Implementations shall make the best effort to ensure that the
|
2018-02-08 08:47:44 +00:00
|
|
|
* comparison between the actual hash and the expected hash is performed
|
|
|
|
* in constant time.
|
|
|
|
*
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active hash operation.
|
|
|
|
* \param[in] hash Buffer containing the expected hash value.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* The expected hash is identical to the actual hash of the message.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-02-08 08:47:44 +00:00
|
|
|
* The hash of the message was calculated successfully, but it
|
|
|
|
* differs from the expected hash.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 08:47:44 +00:00
|
|
|
*/
|
2018-02-07 20:05:37 +00:00
|
|
|
psa_status_t psa_hash_verify(psa_hash_operation_t *operation,
|
|
|
|
const uint8_t *hash,
|
|
|
|
size_t hash_length);
|
|
|
|
|
2018-02-08 08:47:44 +00:00
|
|
|
/** Abort a hash operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 13:33:43 +00: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 08:47:44 +00:00
|
|
|
*
|
2018-07-13 13:33:43 +00: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 08:47:44 +00:00
|
|
|
*
|
2018-07-13 13:33:43 +00: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 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p operation is not an active hash operation.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-02-08 08:47:44 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_hash_abort(psa_hash_operation_t *operation);
|
2018-02-07 20:05:37 +00:00
|
|
|
|
2019-01-19 11:03:41 +00:00
|
|
|
/** Clone a hash operation.
|
2019-01-21 13:50:37 +00:00
|
|
|
*
|
|
|
|
* This function copies the state of an ongoing hash operation to
|
|
|
|
* a new operation object. In other words, this function is equivalent
|
|
|
|
* to calling psa_hash_setup() on \p target_operation with the same
|
|
|
|
* algorithm that \p source_operation was set up for, then
|
|
|
|
* psa_hash_update() on \p target_operation with the same input that
|
|
|
|
* that was passed to \p source_operation. After this function returns, the
|
|
|
|
* two objects are independent, i.e. subsequent calls involving one of
|
|
|
|
* the objects do not affect the other object.
|
2019-01-19 11:03:41 +00:00
|
|
|
*
|
|
|
|
* \param[in] source_operation The active hash operation to clone.
|
|
|
|
* \param[in,out] target_operation The operation object to set up.
|
|
|
|
* It must be initialized but not active.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* \p source_operation is not an active hash operation.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-21 13:50:37 +00:00
|
|
|
* \p target_operation is active.
|
2019-01-19 11:03:41 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_hash_clone(const psa_hash_operation_t *source_operation,
|
|
|
|
psa_hash_operation_t *target_operation);
|
2018-02-07 20:05:37 +00:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-02-08 09:02:12 +00:00
|
|
|
/** \defgroup MAC Message authentication codes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2019-01-14 19:18:12 +00:00
|
|
|
/** Calculate the MAC (message authentication code) of a message.
|
|
|
|
*
|
|
|
|
* \note To verify the MAC of a message against an
|
|
|
|
* expected value, use psa_mac_verify() 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.
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
|
2019-02-15 12:01:17 +00:00
|
|
|
* such that #PSA_ALG_IS_MAC(\p alg) is true).
|
2019-01-14 19:18:12 +00:00
|
|
|
* \param[in] input Buffer containing the input message.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \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
|
2019-02-15 12:01:41 +00:00
|
|
|
* that make up the MAC value.
|
2019-01-14 19:18:12 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a MAC algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_mac_compute(psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *mac,
|
|
|
|
size_t mac_size,
|
|
|
|
size_t *mac_length);
|
|
|
|
|
|
|
|
/** Calculate the MAC of a message and compare it with a reference value.
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
|
2019-02-15 12:01:17 +00:00
|
|
|
* such that #PSA_ALG_IS_MAC(\p alg) is true).
|
2019-01-14 19:18:12 +00:00
|
|
|
* \param[in] input Buffer containing the input message.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \param[out] mac Buffer containing the expected MAC value.
|
|
|
|
* \param mac_length Size of the \p mac buffer in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* The expected MAC is identical to the actual MAC of the input.
|
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
|
|
|
* The MAC of the message was calculated successfully, but it
|
|
|
|
* differs from the expected value.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a MAC algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2019-01-17 14:25:52 +00:00
|
|
|
psa_status_t psa_mac_verify(psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg,
|
2019-01-14 19:18:12 +00:00
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *mac,
|
|
|
|
const size_t mac_length);
|
|
|
|
|
2018-02-16 20:24:11 +00:00
|
|
|
/** The type of the state data structure for multipart MAC operations.
|
2019-01-04 11:48:03 +00:00
|
|
|
*
|
|
|
|
* Before calling any function on a MAC operation object, the application must
|
|
|
|
* initialize it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_mac_operation_t operation;
|
|
|
|
* memset(&operation, 0, sizeof(operation));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_mac_operation_t operation = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_MAC_OPERATION_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_mac_operation_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_mac_operation_t operation;
|
|
|
|
* operation = psa_mac_operation_init();
|
|
|
|
* \endcode
|
2018-02-16 20:24:11 +00:00
|
|
|
*
|
2018-03-03 20:29:30 +00:00
|
|
|
* This is an implementation-defined \c struct. Applications should not
|
2018-02-16 20:24:11 +00:00
|
|
|
* make any assumptions about the content of this structure except
|
|
|
|
* as directed by the documentation of a specific implementation. */
|
2018-02-08 09:02:12 +00:00
|
|
|
typedef struct psa_mac_operation_s psa_mac_operation_t;
|
|
|
|
|
2019-01-04 11:48:03 +00:00
|
|
|
/** \def PSA_MAC_OPERATION_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for a MAC operation object of type
|
|
|
|
* #psa_mac_operation_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_MAC_OPERATION_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for a MAC operation object.
|
|
|
|
*/
|
|
|
|
static psa_mac_operation_t psa_mac_operation_init(void);
|
|
|
|
|
2019-01-14 17:29:18 +00:00
|
|
|
/** Set up a multipart MAC calculation operation.
|
2018-02-16 20:24:11 +00:00
|
|
|
*
|
2018-07-08 18:12:23 +00: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 20:24:11 +00:00
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
2019-01-04 11:48:03 +00:00
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_mac_operation_t, e.g. PSA_MAC_OPERATION_INIT.
|
2018-07-08 18:12:23 +00:00
|
|
|
* -# Call psa_mac_sign_setup() to specify the algorithm and key.
|
2018-02-16 20:24:11 +00:00
|
|
|
* -# 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 18:12:23 +00:00
|
|
|
* -# At the end of the message, call psa_mac_sign_finish() to finish
|
|
|
|
* calculating the MAC value and retrieve it.
|
2018-02-16 20:24:11 +00:00
|
|
|
*
|
|
|
|
* The application may call psa_mac_abort() at any time after the operation
|
2019-01-04 11:48:03 +00:00
|
|
|
* has been initialized.
|
2018-02-16 20:24:11 +00:00
|
|
|
*
|
2018-07-08 18:12:23 +00: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().
|
|
|
|
*
|
2019-01-04 11:48:03 +00:00
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_mac_operation_t and not yet in use.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2019-01-14 17:24:53 +00:00
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value
|
2019-02-15 12:01:17 +00:00
|
|
|
* such that #PSA_ALG_IS_MAC(\p alg) is true).
|
2018-07-08 18:12:23 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-07-08 18:12:23 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not a MAC algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 18:12:23 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_mac_sign_setup(psa_mac_operation_t *operation,
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_key_handle_t handle,
|
2018-07-08 18:12:23 +00:00
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2019-01-14 17:29:18 +00:00
|
|
|
/** Set up a multipart MAC verification operation.
|
2018-07-08 18:12:23 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2019-01-04 11:48:03 +00:00
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_mac_operation_t, e.g. PSA_MAC_OPERATION_INIT.
|
2018-07-08 18:12:23 +00:00
|
|
|
* -# Call psa_mac_verify_setup() to specify the algorithm and key.
|
|
|
|
* -# 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
|
2019-01-04 11:48:03 +00:00
|
|
|
* has been initialized.
|
2018-07-08 18:12:23 +00:00
|
|
|
*
|
|
|
|
* 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 20:24:11 +00:00
|
|
|
* - A failed call to psa_mac_update().
|
2018-07-08 18:12:23 +00:00
|
|
|
* - A call to psa_mac_verify_finish() or psa_mac_abort().
|
2018-02-16 20:24:11 +00:00
|
|
|
*
|
2019-01-04 11:48:03 +00:00
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_mac_operation_t and not yet in use.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2019-01-14 17:24:53 +00:00
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \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 20:24:11 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-16 20:24:11 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-02-16 20:24:11 +00:00
|
|
|
* \c key is not compatible with \c alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-02-16 20:24:11 +00:00
|
|
|
* \c alg is not supported or is not a MAC algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:24:11 +00:00
|
|
|
*/
|
2018-07-08 18:12:23 +00:00
|
|
|
psa_status_t psa_mac_verify_setup(psa_mac_operation_t *operation,
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_key_handle_t handle,
|
2018-07-08 18:12:23 +00:00
|
|
|
psa_algorithm_t alg);
|
2018-02-08 09:02:12 +00:00
|
|
|
|
2018-07-11 22:30:52 +00: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-11 23:08:58 +00: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 17:23:03 +00:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 22:30:52 +00: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:02:12 +00:00
|
|
|
psa_status_t psa_mac_update(psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length);
|
|
|
|
|
2018-07-11 22:30:52 +00: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-11 23:08:58 +00: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 17:40:46 +00:00
|
|
|
* #PSA_MAC_FINAL_SIZE(\c key_type, \c key_bits, \c alg)
|
2018-07-11 23:08:58 +00:00
|
|
|
* where \c key_type and \c key_bits are the type and
|
2018-07-12 17:40:46 +00:00
|
|
|
* bit-size respectively of the key and \c alg is the
|
2018-07-11 23:08:58 +00:00
|
|
|
* MAC algorithm that is calculated.
|
2018-07-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of the \p mac buffer is too small. You can determine a
|
2018-07-11 22:30:52 +00: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 17:56:25 +00: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 09:02:12 +00:00
|
|
|
|
2018-07-11 22:30:52 +00: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-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active MAC operation.
|
|
|
|
* \param[in] mac Buffer containing the expected MAC value.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param mac_length Size of the \p mac buffer in bytes.
|
2018-07-11 22:30:52 +00: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
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or already completed).
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 17:56:25 +00:00
|
|
|
psa_status_t psa_mac_verify_finish(psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *mac,
|
|
|
|
size_t mac_length);
|
2018-02-08 09:02:12 +00:00
|
|
|
|
2018-07-11 22:30:52 +00:00
|
|
|
/** Abort a MAC operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 13:33:43 +00: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-11 22:30:52 +00:00
|
|
|
*
|
2018-07-13 13:33:43 +00: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-11 22:30:52 +00:00
|
|
|
*
|
2018-07-13 13:33:43 +00: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-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p operation is not an active MAC operation.
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-02-08 09:02:12 +00:00
|
|
|
psa_status_t psa_mac_abort(psa_mac_operation_t *operation);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-03-03 20:27:18 +00:00
|
|
|
/** \defgroup cipher Symmetric ciphers
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2019-01-14 19:18:12 +00:00
|
|
|
/** Encrypt a message using a symmetric cipher.
|
|
|
|
*
|
|
|
|
* This function encrypts a message with a random IV (initialization
|
|
|
|
* vector).
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
|
|
|
* \param alg The cipher algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_CIPHER(\p alg) is true).
|
|
|
|
* \param[in] input Buffer containing the message to encrypt.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \param[out] output Buffer where the output is to be written.
|
|
|
|
* The output contains the IV followed by
|
|
|
|
* the ciphertext proper.
|
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the output.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_cipher_encrypt(psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
|
|
|
|
|
|
|
/** Decrypt a message using a symmetric cipher.
|
|
|
|
*
|
|
|
|
* This function decrypts a message encrypted with a symmetric cipher.
|
|
|
|
*
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
|
|
|
* \param alg The cipher algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_CIPHER(\p alg) is true).
|
|
|
|
* \param[in] input Buffer containing the message to decrypt.
|
|
|
|
* This consists of the IV followed by the
|
|
|
|
* ciphertext proper.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \param[out] output Buffer where the plaintext is to be written.
|
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the output.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_cipher_decrypt(psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
|
|
|
|
2018-03-03 20:27:18 +00:00
|
|
|
/** The type of the state data structure for multipart cipher operations.
|
2019-01-04 11:48:27 +00:00
|
|
|
*
|
|
|
|
* Before calling any function on a cipher operation object, the application
|
|
|
|
* must initialize it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_cipher_operation_t operation;
|
|
|
|
* memset(&operation, 0, sizeof(operation));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_cipher_operation_t operation = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_CIPHER_OPERATION_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_cipher_operation_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_cipher_operation_t operation;
|
|
|
|
* operation = psa_cipher_operation_init();
|
|
|
|
* \endcode
|
2018-03-03 20:27:18 +00:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2019-01-04 11:48:27 +00:00
|
|
|
/** \def PSA_CIPHER_OPERATION_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for a cipher operation object of
|
|
|
|
* type #psa_cipher_operation_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_CIPHER_OPERATION_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for a cipher operation object.
|
|
|
|
*/
|
|
|
|
static psa_cipher_operation_t psa_cipher_operation_init(void);
|
|
|
|
|
2018-03-03 20:27:18 +00:00
|
|
|
/** 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.
|
2019-01-04 11:48:27 +00:00
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_cipher_operation_t, e.g.
|
|
|
|
* PSA_CIPHER_OPERATION_INIT.
|
2018-07-08 19:39:34 +00:00
|
|
|
* -# Call psa_cipher_encrypt_setup() to specify the algorithm and key.
|
2018-08-02 11:19:33 +00:00
|
|
|
* -# Call either psa_cipher_generate_iv() or psa_cipher_set_iv() to
|
2018-03-03 20:27:18 +00:00
|
|
|
* generate or set the IV (initialization vector). You should use
|
2018-08-02 11:19:33 +00:00
|
|
|
* psa_cipher_generate_iv() unless the protocol you are implementing
|
2018-03-03 20:27:18 +00: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
|
2019-01-04 11:48:27 +00:00
|
|
|
* has been initialized.
|
2018-03-03 20:27:18 +00:00
|
|
|
*
|
2018-07-08 19:39:34 +00:00
|
|
|
* After a successful call to psa_cipher_encrypt_setup(), the application must
|
2018-03-20 16:54:15 +00:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2019-01-14 17:29:18 +00:00
|
|
|
* - A failed call to any of the \c psa_cipher_xxx functions.
|
2018-03-20 16:54:53 +00:00
|
|
|
* - A call to psa_cipher_finish() or psa_cipher_abort().
|
2018-03-03 20:27:18 +00:00
|
|
|
*
|
2019-01-04 11:48:27 +00:00
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_cipher_operation_t and not yet in use.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2019-01-14 17:24:53 +00:00
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \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 20:27:18 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 20:27:18 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:27:18 +00:00
|
|
|
*/
|
2018-07-08 19:39:34 +00:00
|
|
|
psa_status_t psa_cipher_encrypt_setup(psa_cipher_operation_t *operation,
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_key_handle_t handle,
|
2018-07-08 19:39:34 +00:00
|
|
|
psa_algorithm_t alg);
|
2018-03-03 20:27:18 +00: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.
|
2019-01-04 11:48:27 +00:00
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_cipher_operation_t, e.g.
|
|
|
|
* PSA_CIPHER_OPERATION_INIT.
|
2018-07-08 19:39:34 +00:00
|
|
|
* -# Call psa_cipher_decrypt_setup() to specify the algorithm and key.
|
2019-01-14 17:29:18 +00:00
|
|
|
* -# Call psa_cipher_set_iv() with the IV (initialization vector) for the
|
2018-03-03 20:27:18 +00:00
|
|
|
* 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
|
2019-01-04 11:48:27 +00:00
|
|
|
* has been initialized.
|
2018-03-03 20:27:18 +00:00
|
|
|
*
|
2018-07-08 19:39:34 +00:00
|
|
|
* After a successful call to psa_cipher_decrypt_setup(), the application must
|
2018-03-20 16:54:15 +00:00
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
2019-01-14 17:29:18 +00:00
|
|
|
* - A failed call to any of the \c psa_cipher_xxx functions.
|
2018-03-20 16:54:53 +00:00
|
|
|
* - A call to psa_cipher_finish() or psa_cipher_abort().
|
2018-03-03 20:27:18 +00:00
|
|
|
*
|
2019-01-04 11:48:27 +00:00
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_cipher_operation_t and not yet in use.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2019-01-14 17:24:53 +00:00
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \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 20:27:18 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 20:27:18 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not a cipher algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:27:18 +00:00
|
|
|
*/
|
2018-07-08 19:39:34 +00:00
|
|
|
psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation,
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_key_handle_t handle,
|
2018-07-08 19:39:34 +00:00
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2018-07-11 22:30:52 +00: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-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[out] iv Buffer where the generated IV is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param iv_size Size of the \p iv buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] iv_length On success, the number of bytes of the
|
|
|
|
* generated IV.
|
2018-07-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or IV already set).
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:40:46 +00:00
|
|
|
* The size of the \p iv buffer is too small.
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-07-08 19:39:34 +00: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-11 22:30:52 +00:00
|
|
|
/** Set the IV for a symmetric encryption or decryption operation.
|
|
|
|
*
|
2019-01-14 17:29:18 +00:00
|
|
|
* This function sets the IV (initialization vector), nonce
|
2018-07-11 22:30:52 +00:00
|
|
|
* 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-11 23:08:58 +00: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-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, or IV already set).
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of \p iv is not acceptable for the chosen algorithm,
|
2018-07-11 22:30:52 +00: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 19:39:34 +00:00
|
|
|
psa_status_t psa_cipher_set_iv(psa_cipher_operation_t *operation,
|
|
|
|
const unsigned char *iv,
|
|
|
|
size_t iv_length);
|
2018-03-03 20:27:18 +00:00
|
|
|
|
2018-07-11 22:30:52 +00:00
|
|
|
/** Encrypt or decrypt a message fragment in an active cipher operation.
|
|
|
|
*
|
2018-07-12 18:15:32 +00: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-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to
|
|
|
|
* encrypt or decrypt.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] output Buffer where the output is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-07-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, IV required but
|
2018-07-11 22:30:52 +00:00
|
|
|
* 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 20:27:18 +00:00
|
|
|
psa_status_t psa_cipher_update(psa_cipher_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
2018-03-12 13:59:30 +00:00
|
|
|
size_t input_length,
|
2018-06-18 13:41:12 +00:00
|
|
|
unsigned char *output,
|
|
|
|
size_t output_size,
|
2018-03-12 13:59:30 +00:00
|
|
|
size_t *output_length);
|
2018-03-03 20:27:18 +00:00
|
|
|
|
2018-07-11 22:30:52 +00: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-11 23:08:58 +00:00
|
|
|
* \param[in,out] operation Active cipher operation.
|
|
|
|
* \param[out] output Buffer where the output is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-07-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-14 17:29:18 +00:00
|
|
|
* The operation state is not valid (not set up, IV required but
|
2018-07-11 22:30:52 +00:00
|
|
|
* 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 20:27:18 +00:00
|
|
|
psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation,
|
2018-03-12 13:59:30 +00:00
|
|
|
uint8_t *output,
|
2018-04-22 17:16:58 +00:00
|
|
|
size_t output_size,
|
2018-03-12 13:59:30 +00:00
|
|
|
size_t *output_length);
|
2018-03-03 20:27:18 +00:00
|
|
|
|
2018-07-11 22:30:52 +00:00
|
|
|
/** Abort a cipher operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
2018-07-13 13:33:43 +00: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-11 22:30:52 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p operation is not an active cipher operation.
|
2018-07-11 22:30:52 +00:00
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
2018-03-03 20:27:18 +00:00
|
|
|
psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation);
|
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-03-03 20:27:57 +00:00
|
|
|
/** \defgroup aead Authenticated encryption with associated data (AEAD)
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-06-01 14:29:38 +00:00
|
|
|
/** Process an authenticated encryption operation.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2018-06-01 14:29:38 +00:00
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
2018-07-11 22:34:26 +00:00
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] nonce Nonce or IV to use.
|
2018-06-01 14:29:38 +00:00
|
|
|
* \param nonce_length Size of the \p nonce buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] additional_data Additional data that will be authenticated
|
2018-06-01 14:29:38 +00:00
|
|
|
* but not encrypted.
|
|
|
|
* \param additional_data_length Size of \p additional_data in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] plaintext Data that will be authenticated and
|
2018-06-01 14:29:38 +00:00
|
|
|
* encrypted.
|
|
|
|
* \param plaintext_length Size of \p plaintext in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] ciphertext Output buffer for the authenticated and
|
2018-06-01 14:29:38 +00: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-11 23:08:58 +00:00
|
|
|
* \param[out] ciphertext_length On success, the size of the output
|
2019-02-08 10:22:39 +00:00
|
|
|
* in the \p ciphertext buffer.
|
2018-03-03 20:27:57 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 20:27:57 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:27:57 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_aead_encrypt(psa_key_handle_t handle,
|
2018-07-19 13:51:49 +00:00
|
|
|
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 21:51:02 +00:00
|
|
|
|
2018-06-01 14:29:38 +00:00
|
|
|
/** Process an authenticated decryption operation.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
2018-06-01 14:29:38 +00:00
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
2018-07-11 22:34:26 +00:00
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] nonce Nonce or IV to use.
|
2018-06-01 14:29:38 +00:00
|
|
|
* \param nonce_length Size of the \p nonce buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] additional_data Additional data that has been authenticated
|
2018-06-01 14:29:38 +00:00
|
|
|
* but not encrypted.
|
|
|
|
* \param additional_data_length Size of \p additional_data in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] ciphertext Data that has been authenticated and
|
2018-06-01 14:29:38 +00: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-11 23:08:58 +00:00
|
|
|
* \param[out] plaintext Output buffer for the decrypted data.
|
2018-06-01 14:29:38 +00: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-11 23:08:58 +00:00
|
|
|
* \param[out] plaintext_length On success, the size of the output
|
2019-02-08 10:22:39 +00:00
|
|
|
* in the \p plaintext buffer.
|
2018-03-03 20:27:57 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-03-03 20:27:57 +00:00
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-06-01 14:29:38 +00:00
|
|
|
* The ciphertext is not authentic.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p key is not compatible with \p alg.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 20:27:57 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_aead_decrypt(psa_key_handle_t handle,
|
2018-07-19 13:51:49 +00:00
|
|
|
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 20:27:57 +00:00
|
|
|
|
2019-01-14 17:36:12 +00:00
|
|
|
/** The type of the state data structure for multipart AEAD operations.
|
|
|
|
*
|
|
|
|
* Before calling any function on an AEAD operation object, the application
|
|
|
|
* must initialize it by any of the following means:
|
|
|
|
* - Set the structure to all-bits-zero, for example:
|
|
|
|
* \code
|
|
|
|
* psa_aead_operation_t operation;
|
|
|
|
* memset(&operation, 0, sizeof(operation));
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to logical zero values, for example:
|
|
|
|
* \code
|
|
|
|
* psa_aead_operation_t operation = {0};
|
|
|
|
* \endcode
|
|
|
|
* - Initialize the structure to the initializer #PSA_AEAD_OPERATION_INIT,
|
|
|
|
* for example:
|
|
|
|
* \code
|
|
|
|
* psa_aead_operation_t operation = PSA_AEAD_OPERATION_INIT;
|
|
|
|
* \endcode
|
|
|
|
* - Assign the result of the function psa_aead_operation_init()
|
|
|
|
* to the structure, for example:
|
|
|
|
* \code
|
|
|
|
* psa_aead_operation_t operation;
|
|
|
|
* operation = psa_aead_operation_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_aead_operation_s psa_aead_operation_t;
|
|
|
|
|
|
|
|
/** \def PSA_AEAD_OPERATION_INIT
|
|
|
|
*
|
|
|
|
* This macro returns a suitable initializer for an AEAD operation object of
|
|
|
|
* type #psa_aead_operation_t.
|
|
|
|
*/
|
|
|
|
#ifdef __DOXYGEN_ONLY__
|
|
|
|
/* This is an example definition for documentation purposes.
|
|
|
|
* Implementations should define a suitable value in `crypto_struct.h`.
|
|
|
|
*/
|
|
|
|
#define PSA_AEAD_OPERATION_INIT {0}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Return an initial value for an AEAD operation object.
|
|
|
|
*/
|
|
|
|
static psa_aead_operation_t psa_aead_operation_init(void);
|
|
|
|
|
|
|
|
/** Set the key for a multipart authenticated encryption operation.
|
|
|
|
*
|
|
|
|
* The sequence of operations to encrypt a message with authentication
|
|
|
|
* is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_aead_operation_t, e.g.
|
|
|
|
* PSA_AEAD_OPERATION_INIT.
|
|
|
|
* -# Call psa_aead_encrypt_setup() to specify the algorithm and key.
|
2019-01-17 14:26:08 +00:00
|
|
|
* -# If needed, call psa_aead_set_lengths() to specify the length of the
|
|
|
|
* inputs to the subsequent calls to psa_aead_update_ad() and
|
|
|
|
* psa_aead_update(). See the documentation of psa_aead_set_lengths()
|
|
|
|
* for details.
|
2019-01-14 17:36:12 +00:00
|
|
|
* -# Call either psa_aead_generate_nonce() or psa_aead_set_nonce() to
|
|
|
|
* generate or set the nonce. You should use
|
|
|
|
* psa_aead_generate_nonce() unless the protocol you are implementing
|
|
|
|
* requires a specific nonce value.
|
|
|
|
* -# Call psa_aead_update_ad() zero, one or more times, passing a fragment
|
|
|
|
* of the non-encrypted additional authenticated data each time.
|
|
|
|
* -# Call psa_aead_update() zero, one or more times, passing a fragment
|
2019-01-17 14:25:52 +00:00
|
|
|
* of the message to encrypt each time.
|
2019-01-14 17:36:12 +00:00
|
|
|
* -# Call psa_aead_finish().
|
|
|
|
*
|
|
|
|
* The application may call psa_aead_abort() at any time after the operation
|
|
|
|
* has been initialized.
|
|
|
|
*
|
|
|
|
* After a successful call to psa_aead_encrypt_setup(), the application must
|
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
|
|
|
* - A failed call to any of the \c psa_aead_xxx functions.
|
|
|
|
* - A call to psa_aead_finish(), psa_aead_verify() or psa_aead_abort().
|
|
|
|
*
|
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_aead_operation_t and not yet in use.
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_encrypt_setup(psa_aead_operation_t *operation,
|
|
|
|
psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
|
|
|
/** Set the key for a multipart authenticated decryption operation.
|
|
|
|
*
|
|
|
|
* The sequence of operations to decrypt a message with authentication
|
|
|
|
* is as follows:
|
|
|
|
* -# Allocate an operation object which will be passed to all the functions
|
|
|
|
* listed here.
|
|
|
|
* -# Initialize the operation object with one of the methods described in the
|
|
|
|
* documentation for #psa_aead_operation_t, e.g.
|
|
|
|
* PSA_AEAD_OPERATION_INIT.
|
|
|
|
* -# Call psa_aead_decrypt_setup() to specify the algorithm and key.
|
2019-01-17 14:26:08 +00:00
|
|
|
* -# If needed, call psa_aead_set_lengths() to specify the length of the
|
|
|
|
* inputs to the subsequent calls to psa_aead_update_ad() and
|
|
|
|
* psa_aead_update(). See the documentation of psa_aead_set_lengths()
|
|
|
|
* for details.
|
2019-01-14 17:36:12 +00:00
|
|
|
* -# Call psa_aead_set_nonce() with the nonce for the decryption.
|
|
|
|
* -# Call psa_aead_update_ad() zero, one or more times, passing a fragment
|
|
|
|
* of the non-encrypted additional authenticated data each time.
|
|
|
|
* -# Call psa_aead_update() zero, one or more times, passing a fragment
|
2019-01-17 14:25:52 +00:00
|
|
|
* of the ciphertext to decrypt each time.
|
|
|
|
* -# Call psa_aead_verify().
|
2019-01-14 17:36:12 +00:00
|
|
|
*
|
|
|
|
* The application may call psa_aead_abort() at any time after the operation
|
|
|
|
* has been initialized.
|
|
|
|
*
|
|
|
|
* After a successful call to psa_aead_decrypt_setup(), the application must
|
|
|
|
* eventually terminate the operation. The following events terminate an
|
|
|
|
* operation:
|
|
|
|
* - A failed call to any of the \c psa_aead_xxx functions.
|
|
|
|
* - A call to psa_aead_finish(), psa_aead_verify() or psa_aead_abort().
|
|
|
|
*
|
|
|
|
* \param[in,out] operation The operation object to set up. It must have
|
|
|
|
* been initialized as per the documentation for
|
|
|
|
* #psa_aead_operation_t and not yet in use.
|
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must remain valid until the operation
|
|
|
|
* terminates.
|
|
|
|
* \param alg The AEAD algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_AEAD(\p alg) is true).
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p key is not compatible with \p alg.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not supported or is not an AEAD algorithm.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_decrypt_setup(psa_aead_operation_t *operation,
|
|
|
|
psa_key_handle_t handle,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
|
|
|
/** Generate a random nonce for an authenticated encryption operation.
|
|
|
|
*
|
|
|
|
* This function generates a random nonce for the authenticated encryption
|
|
|
|
* operation with an appropriate size for the chosen algorithm, key type
|
|
|
|
* and key size.
|
|
|
|
*
|
|
|
|
* The application must call psa_aead_encrypt_setup() before
|
|
|
|
* calling this function.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param[out] nonce Buffer where the generated nonce is to be
|
|
|
|
* written.
|
|
|
|
* \param nonce_size Size of the \p nonce buffer in bytes.
|
|
|
|
* \param[out] nonce_length On success, the number of bytes of the
|
|
|
|
* generated nonce.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, or nonce already set).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p nonce buffer is too small.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_generate_nonce(psa_aead_operation_t *operation,
|
|
|
|
unsigned char *nonce,
|
|
|
|
size_t nonce_size,
|
|
|
|
size_t *nonce_length);
|
|
|
|
|
|
|
|
/** Set the nonce for an authenticated encryption or decryption operation.
|
|
|
|
*
|
|
|
|
* This function sets the nonce for the authenticated
|
|
|
|
* encryption or decryption operation.
|
|
|
|
*
|
|
|
|
* The application must call psa_aead_encrypt_setup() before
|
|
|
|
* calling this function.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
2019-01-17 14:25:52 +00:00
|
|
|
* \note When encrypting, applications should use psa_aead_generate_nonce()
|
2019-01-14 17:36:12 +00:00
|
|
|
* instead of this function, unless implementing a protocol that requires
|
|
|
|
* a non-random IV.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
2019-01-17 14:25:52 +00:00
|
|
|
* \param[in] nonce Buffer containing the nonce to use.
|
|
|
|
* \param nonce_length Size of the nonce in bytes.
|
2019-01-14 17:36:12 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, or nonce already set).
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The size of \p nonce is not acceptable for the chosen 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_aead_set_nonce(psa_aead_operation_t *operation,
|
|
|
|
const unsigned char *nonce,
|
|
|
|
size_t nonce_length);
|
|
|
|
|
2019-01-17 14:26:08 +00:00
|
|
|
/** Declare the lengths of the message and additional data for AEAD.
|
|
|
|
*
|
|
|
|
* The application must call this function before calling
|
|
|
|
* psa_aead_update_ad() or psa_aead_update() if the algorithm for
|
|
|
|
* the operation requires it. If the algorithm does not require it,
|
|
|
|
* calling this function is optional, but if this function is called
|
|
|
|
* then the implementation must enforce the lengths.
|
|
|
|
*
|
|
|
|
* You may call this function before or after setting the nonce with
|
|
|
|
* psa_aead_set_nonce() or psa_aead_generate_nonce().
|
|
|
|
*
|
|
|
|
* - For #PSA_ALG_CCM, calling this function is required.
|
|
|
|
* - For the other AEAD algorithms defined in this specification, calling
|
|
|
|
* this function is not required.
|
|
|
|
* - For vendor-defined algorithm, refer to the vendor documentation.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param ad_length Size of the non-encrypted additional
|
|
|
|
* authenticated data in bytes.
|
|
|
|
* \param plaintext_length Size of the plaintext to encrypt in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, already completed,
|
|
|
|
* or psa_aead_update_ad() or psa_aead_update() already called).
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* At least one of the lengths is not acceptable for the chosen
|
|
|
|
* 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_aead_set_lengths(psa_aead_operation_t *operation,
|
|
|
|
size_t ad_length,
|
|
|
|
size_t plaintext_length);
|
|
|
|
|
2019-01-14 17:36:12 +00:00
|
|
|
/** Pass additional data to an active AEAD operation.
|
|
|
|
*
|
|
|
|
* Additional data is authenticated, but not encrypted.
|
|
|
|
*
|
|
|
|
* You may call this function multiple times to pass successive fragments
|
|
|
|
* of the additional data. You may not call this function after passing
|
|
|
|
* data to encrypt or decrypt with psa_aead_update().
|
|
|
|
*
|
|
|
|
* Before calling this function, you must:
|
|
|
|
* 1. Call either psa_aead_encrypt_setup() or psa_aead_decrypt_setup().
|
|
|
|
* 2. Set the nonce with psa_aead_generate_nonce() or psa_aead_set_nonce().
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \warning When decrypting, until psa_aead_verify() has returned #PSA_SUCCESS,
|
|
|
|
* there is no guarantee that the input is valid. Therefore, until
|
|
|
|
* you have called psa_aead_verify() and it has returned #PSA_SUCCESS,
|
|
|
|
* treat the input as untrusted and prepare to undo any action that
|
|
|
|
* depends on the input if psa_aead_verify() returns an error status.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param[in] input Buffer containing the fragment of
|
|
|
|
* additional data.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, nonce not set,
|
|
|
|
* psa_aead_update() already called, or operation already completed).
|
2019-01-17 14:26:08 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total input length overflows the additional data length that
|
|
|
|
* was previously specified with psa_aead_set_lengths().
|
2019-01-14 17:36:12 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_update_ad(psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length);
|
|
|
|
|
|
|
|
/** Encrypt or decrypt a message fragment in an active AEAD operation.
|
|
|
|
*
|
|
|
|
* Before calling this function, you must:
|
|
|
|
* 1. Call either psa_aead_encrypt_setup() or psa_aead_decrypt_setup().
|
|
|
|
* The choice of setup function determines whether this function
|
|
|
|
* encrypts or decrypts its input.
|
|
|
|
* 2. Set the nonce with psa_aead_generate_nonce() or psa_aead_set_nonce().
|
|
|
|
* 3. Call psa_aead_update_ad() to pass all the additional data.
|
|
|
|
*
|
|
|
|
* If this function returns an error status, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \warning When decrypting, until psa_aead_verify() has returned #PSA_SUCCESS,
|
|
|
|
* there is no guarantee that the input is valid. Therefore, until
|
|
|
|
* you have called psa_aead_verify() and it has returned #PSA_SUCCESS:
|
|
|
|
* - Do not use the output in any way other than storing it in a
|
|
|
|
* confidential location. If you take any action that depends
|
|
|
|
* on the tentative decrypted data, this action will need to be
|
|
|
|
* undone if the input turns out not to be valid. Furthermore,
|
|
|
|
* if an adversary can observe that this action took place
|
|
|
|
* (for example through timing), they may be able to use this
|
|
|
|
* fact as an oracle to decrypt any message encrypted with the
|
|
|
|
* same key.
|
|
|
|
* - In particular, do not copy the output anywhere but to a
|
|
|
|
* memory or storage space that you have exclusive access to.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param[in] input Buffer containing the message fragment to
|
|
|
|
* encrypt or decrypt.
|
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
|
|
|
* \param[out] output Buffer where the output is to be written.
|
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, nonce not set
|
|
|
|
* or already completed).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p output buffer is too small.
|
2019-01-17 14:26:08 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total length of input to psa_aead_update_ad() so far is
|
|
|
|
* less than the additional data length that was previously
|
|
|
|
* specified with psa_aead_set_lengths().
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total input length overflows the plaintext length that
|
|
|
|
* was previously specified with psa_aead_set_lengths().
|
2019-01-14 17:36:12 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_update(psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
|
|
|
|
|
|
|
/** Finish encrypting a message in an AEAD operation.
|
|
|
|
*
|
|
|
|
* The operation must have been set up with psa_aead_encrypt_setup().
|
|
|
|
*
|
|
|
|
* This function finishes the authentication of the additional data
|
|
|
|
* formed by concatenating the inputs passed to preceding calls to
|
|
|
|
* psa_aead_update_ad() with the plaintext formed by concatenating the
|
|
|
|
* inputs passed to preceding calls to psa_aead_update().
|
|
|
|
*
|
|
|
|
* This function has two output buffers:
|
|
|
|
* - \p ciphertext contains trailing ciphertext that was buffered from
|
|
|
|
* preceding calls to psa_aead_update(). For all standard AEAD algorithms,
|
|
|
|
* psa_aead_update() does not buffer any output and therefore \p ciphertext
|
|
|
|
* will not contain any output and can be a 0-sized buffer.
|
|
|
|
* - \p tag contains the authentication tag. Its length is always
|
|
|
|
* #PSA_AEAD_TAG_LENGTH(\p alg) where \p alg is the AEAD algorithm
|
|
|
|
* that the operation performs.
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param[out] ciphertext Buffer where the last part of the ciphertext
|
|
|
|
* is to be written.
|
|
|
|
* \param ciphertext_size Size of the \p ciphertext buffer in bytes.
|
|
|
|
* \param[out] ciphertext_length On success, the number of bytes of
|
|
|
|
* returned ciphertext.
|
|
|
|
* \param[out] tag Buffer where the authentication tag is
|
|
|
|
* to be written.
|
|
|
|
* \param tag_size Size of the \p tag buffer in bytes.
|
|
|
|
* \param[out] tag_length On success, the number of bytes
|
|
|
|
* that make up the returned tag.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, nonce not set,
|
|
|
|
* decryption, or already completed).
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
|
|
|
* The size of the \p output buffer is too small.
|
2019-01-17 14:26:08 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total length of input to psa_aead_update_ad() so far is
|
|
|
|
* less than the additional data length that was previously
|
|
|
|
* specified with psa_aead_set_lengths().
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total length of input to psa_aead_update() so far is
|
|
|
|
* less than the plaintext length that was previously
|
|
|
|
* specified with psa_aead_set_lengths().
|
2019-01-14 17:36:12 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_finish(psa_aead_operation_t *operation,
|
2019-01-17 14:25:52 +00:00
|
|
|
uint8_t *ciphertext,
|
|
|
|
size_t ciphertext_size,
|
|
|
|
size_t *ciphertext_length,
|
2019-01-14 17:36:12 +00:00
|
|
|
uint8_t *tag,
|
|
|
|
size_t tag_size,
|
|
|
|
size_t *tag_length);
|
|
|
|
|
|
|
|
/** Finish authenticating and decrypting a message in an AEAD operation.
|
|
|
|
*
|
|
|
|
* The operation must have been set up with psa_aead_decrypt_setup().
|
|
|
|
*
|
|
|
|
* This function finishes the authentication of the additional data
|
|
|
|
* formed by concatenating the inputs passed to preceding calls to
|
|
|
|
* psa_aead_update_ad() with the ciphertext formed by concatenating the
|
|
|
|
* inputs passed to preceding calls to psa_aead_update().
|
|
|
|
*
|
|
|
|
* When this function returns, the operation becomes inactive.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Active AEAD operation.
|
|
|
|
* \param[in] tag Buffer containing the authentication tag.
|
|
|
|
* \param tag_length Size of the \p tag buffer in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The operation state is not valid (not set up, nonce not set,
|
|
|
|
* encryption, or already completed).
|
2019-01-17 14:26:08 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total length of input to psa_aead_update_ad() so far is
|
|
|
|
* less than the additional data length that was previously
|
|
|
|
* specified with psa_aead_set_lengths().
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The total length of input to psa_aead_update() so far is
|
|
|
|
* less than the plaintext length that was previously
|
|
|
|
* specified with psa_aead_set_lengths().
|
2019-01-14 17:36:12 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_verify(psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *tag,
|
|
|
|
size_t tag_length);
|
|
|
|
|
|
|
|
/** Abort an AEAD operation.
|
|
|
|
*
|
|
|
|
* Aborting an operation frees all associated resources except for the
|
|
|
|
* \p operation structure itself. Once aborted, the operation object
|
|
|
|
* can be reused for another operation by calling
|
|
|
|
* psa_aead_encrypt_setup() or psa_aead_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_aead_encrypt_setup() or psa_aead_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_aead_operation_t operation = {0}`.
|
|
|
|
*
|
|
|
|
* In particular, calling psa_aead_abort() after the operation has been
|
|
|
|
* terminated by a call to psa_aead_abort() or psa_aead_finish()
|
|
|
|
* is safe and has no effect.
|
|
|
|
*
|
|
|
|
* \param[in,out] operation Initialized AEAD operation.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* \p operation is not an active AEAD operation.
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
*/
|
|
|
|
psa_status_t psa_aead_abort(psa_aead_operation_t *operation);
|
|
|
|
|
2018-03-03 20:27:57 +00:00
|
|
|
/**@}*/
|
|
|
|
|
2018-02-03 21:44:14 +00:00
|
|
|
/** \defgroup asymmetric Asymmetric cryptography
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Sign a hash or short message with a private key.
|
|
|
|
*
|
2018-06-26 14:14:46 +00:00
|
|
|
* Note that to perform a hash-and-sign signature algorithm, you must
|
2018-07-08 17:46:38 +00:00
|
|
|
* first calculate the hash by calling psa_hash_setup(), psa_hash_update()
|
2018-06-26 14:14:46 +00: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-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must be an asymmetric key pair.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param alg A signature algorithm that is compatible with
|
2018-07-12 17:23:03 +00:00
|
|
|
* the type of \p key.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] hash The hash or message to sign.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] signature Buffer where the signature is to be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param signature_size Size of the \p signature buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] signature_length On success, the number of bytes
|
|
|
|
* that make up the returned signature value.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of the \p signature buffer is too small. You can
|
2018-02-08 08:47:44 +00:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-11 22:34:26 +00:00
|
|
|
* #PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-02-08 08:47:44 +00:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 17:23:03 +00:00
|
|
|
* respectively of \p key.
|
2018-07-11 15:34:00 +00: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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 21:44:14 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_asymmetric_sign(psa_key_handle_t handle,
|
2018-02-03 21:44:14 +00:00
|
|
|
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 14:14:46 +00:00
|
|
|
* Note that to perform a hash-and-sign signature algorithm, you must
|
2018-07-08 17:46:38 +00:00
|
|
|
* first calculate the hash by calling psa_hash_setup(), psa_hash_update()
|
2018-06-26 14:14:46 +00: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-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must be a public key or an asymmetric key pair.
|
2018-02-08 08:47:44 +00:00
|
|
|
* \param alg A signature algorithm that is compatible with
|
2018-07-12 17:23:03 +00:00
|
|
|
* the type of \p key.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] hash The hash or message whose signature is to be
|
2018-06-26 14:14:46 +00:00
|
|
|
* verified.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param hash_length Size of the \p hash buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] signature Buffer containing the signature to verify.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param signature_length Size of the \p signature buffer in bytes.
|
2018-02-08 08:47:44 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-02-08 08:47:44 +00:00
|
|
|
* The signature is valid.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_SIGNATURE
|
2018-02-08 08:47:44 +00:00
|
|
|
* The calculation was perfomed successfully, but the passed
|
|
|
|
* signature is not a valid signature.
|
2018-07-11 15:34:00 +00: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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 21:44:14 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_asymmetric_verify(psa_key_handle_t handle,
|
2018-02-03 21:44:14 +00:00
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash,
|
|
|
|
size_t hash_length,
|
2018-06-27 12:58:41 +00:00
|
|
|
const uint8_t *signature,
|
2018-06-27 16:19:40 +00:00
|
|
|
size_t signature_length);
|
2018-02-03 21:44:14 +00:00
|
|
|
|
2018-03-28 12:18:39 +00:00
|
|
|
/**
|
|
|
|
* \brief Encrypt a short message with a public key.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must be a public key or an asymmetric
|
|
|
|
* key pair.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param alg An asymmetric encryption algorithm that is
|
2018-07-12 17:23:03 +00:00
|
|
|
* compatible with the type of \p key.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] input The message to encrypt.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-11 23:08:58 +00: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 17:23:03 +00:00
|
|
|
* \param salt_length Size of the \p salt buffer in bytes.
|
|
|
|
* If \p salt is \c NULL, pass 0.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] output Buffer where the encrypted message is to
|
|
|
|
* be written.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param output_size Size of the \p output buffer in bytes.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[out] output_length On success, the number of bytes
|
|
|
|
* that make up the returned output.
|
2018-03-28 12:18:39 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of the \p output buffer is too small. You can
|
2018-03-28 12:18:39 +00:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-11 22:34:26 +00:00
|
|
|
* #PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-03-28 12:18:39 +00:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 17:23:03 +00:00
|
|
|
* respectively of \p key.
|
2018-07-11 15:34:00 +00: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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:18:39 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_asymmetric_encrypt(psa_key_handle_t handle,
|
2018-03-28 12:18:39 +00:00
|
|
|
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-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the key to use for the operation.
|
|
|
|
* It must be an asymmetric key pair.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param alg An asymmetric encryption algorithm that is
|
2018-07-12 17:23:03 +00:00
|
|
|
* compatible with the type of \p key.
|
2018-07-11 23:08:58 +00:00
|
|
|
* \param[in] input The message to decrypt.
|
2018-07-12 17:23:03 +00:00
|
|
|
* \param input_length Size of the \p input buffer in bytes.
|
2018-07-11 23:08:58 +00: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 17:23:03 +00:00
|
|
|
* \param salt_length Size of the \p salt buffer in bytes.
|
|
|
|
* If \p salt is \c NULL, pass 0.
|
2018-07-11 23:08:58 +00: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 12:18:39 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BUFFER_TOO_SMALL
|
2018-07-12 17:23:03 +00:00
|
|
|
* The size of the \p output buffer is too small. You can
|
2018-03-28 12:18:39 +00:00
|
|
|
* determine a sufficient buffer size by calling
|
2018-07-12 17:40:46 +00:00
|
|
|
* #PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg)
|
2018-03-28 12:18:39 +00:00
|
|
|
* where \c key_type and \c key_bits are the type and bit-size
|
2018-07-12 17:23:03 +00:00
|
|
|
* respectively of \p key.
|
2018-07-11 15:34:00 +00: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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:18:39 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_asymmetric_decrypt(psa_key_handle_t handle,
|
2018-03-28 12:18:39 +00:00
|
|
|
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 12:16:24 +00:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-20 15:42:05 +00:00
|
|
|
/** \defgroup generators Generators
|
2018-07-12 15:12:33 +00: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.
|
|
|
|
*
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
2018-07-12 15:12:33 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_get_generator_capacity(const psa_crypto_generator_t *generator,
|
|
|
|
size_t *capacity);
|
|
|
|
|
2019-01-07 21:59:38 +00:00
|
|
|
/** Set the maximum capacity of a generator.
|
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to modify.
|
|
|
|
* \param capacity The new capacity of the generator.
|
|
|
|
* It must be less or equal to the generator's
|
|
|
|
* current capacity.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p capacity is larger than the generator's current capacity.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
*/
|
|
|
|
psa_status_t psa_set_generator_capacity(psa_crypto_generator_t *generator,
|
|
|
|
size_t capacity);
|
|
|
|
|
2018-07-12 15:12:33 +00:00
|
|
|
/** 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.
|
|
|
|
*
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_CAPACITY
|
2018-07-12 15:12:33 +00:00
|
|
|
* 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.
|
2018-12-11 15:47:35 +00:00
|
|
|
* \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
|
2018-07-12 15:12:33 +00:00
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the slot where the key will be stored.
|
2019-01-19 11:20:52 +00:00
|
|
|
* It must have been obtained by calling
|
|
|
|
* psa_allocate_key() or psa_create_key() and must
|
|
|
|
* not contain key material yet.
|
2018-07-12 15:12:33 +00:00
|
|
|
* \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.
|
|
|
|
*
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-07-12 15:12:33 +00:00
|
|
|
* Success.
|
2018-12-11 14:51:32 +00:00
|
|
|
* If the key is persistent, the key material and the key's metadata
|
|
|
|
* have been saved to persistent storage.
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_CAPACITY
|
2018-07-12 15:12:33 +00:00
|
|
|
* 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.
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2018-07-12 15:12:33 +00:00
|
|
|
* The key type or key size is not supported, either by the
|
|
|
|
* implementation in general or in this particular slot.
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
2018-07-12 15:12:33 +00:00
|
|
|
* There is already a key in the specified slot.
|
2018-12-11 15:47:35 +00: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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 15:12:33 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_generator_import_key(psa_key_handle_t handle,
|
2018-07-12 15:12:33 +00:00
|
|
|
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.
|
|
|
|
*
|
2018-12-11 15:47:35 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-07-12 15:12:33 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_generator_abort(psa_crypto_generator_t *generator);
|
|
|
|
|
2018-09-18 10:06:11 +00: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 15:12:33 +00:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-12 15:17:20 +00:00
|
|
|
/** \defgroup derivation Key derivation
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Set up a key derivation operation.
|
|
|
|
*
|
2019-01-07 21:59:38 +00:00
|
|
|
* A key derivation algorithm takes some inputs and uses them to create
|
|
|
|
* a byte generator which can be used to produce keys and other
|
|
|
|
* cryptographic material.
|
|
|
|
*
|
|
|
|
* To use a generator for key derivation:
|
|
|
|
* - Start with an initialized object of type #psa_crypto_generator_t.
|
|
|
|
* - Call psa_key_derivation_setup() to select the algorithm.
|
|
|
|
* - Provide the inputs for the key derivation by calling
|
|
|
|
* psa_key_derivation_input_bytes() or psa_key_derivation_input_key()
|
|
|
|
* as appropriate. Which inputs are needed, in what order, and whether
|
|
|
|
* they may be keys and if so of what type depends on the algorithm.
|
|
|
|
* - Optionally set the generator's maximum capacity with
|
|
|
|
* psa_set_generator_capacity(). You may do this before, in the middle of
|
|
|
|
* or after providing inputs. For some algorithms, this step is mandatory
|
|
|
|
* because the output depends on the maximum capacity.
|
|
|
|
* - Generate output with psa_generator_read() or
|
|
|
|
* psa_generator_import_key(). Successive calls to these functions
|
|
|
|
* use successive output bytes from the generator.
|
|
|
|
* - Clean up the generator object with psa_generator_abort().
|
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to set up. It must
|
|
|
|
* have been initialized but not set up yet.
|
2018-07-12 15:17:20 +00:00
|
|
|
* \param alg The key derivation algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_KEY_DERIVATION(\p alg) is true).
|
2019-01-07 21:59:38 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c alg is not a key derivation algorithm.
|
|
|
|
* \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
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
*/
|
|
|
|
psa_status_t psa_key_derivation_setup(psa_crypto_generator_t *generator,
|
|
|
|
psa_algorithm_t alg);
|
|
|
|
|
2019-01-08 09:31:27 +00:00
|
|
|
/** Provide an input for key derivation or key agreement.
|
|
|
|
*
|
|
|
|
* Which inputs are required and in what order depends on the algorithm.
|
|
|
|
* Refer to the documentation of each key derivation or key agreement
|
|
|
|
* algorithm for information.
|
|
|
|
*
|
|
|
|
* This function passes direct inputs. Some inputs must be passed as keys
|
|
|
|
* using psa_key_derivation_input_key() instead of this function. Refer to
|
|
|
|
* the documentation of individual step types for information.
|
2019-01-07 21:59:38 +00:00
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to use. It must
|
|
|
|
* have been set up with
|
|
|
|
* psa_key_derivation_setup() and must not
|
|
|
|
* have produced any output yet.
|
|
|
|
* \param step Which step the input data is for.
|
|
|
|
* \param[in] data Input data to use.
|
|
|
|
* \param data_length Size of the \p data buffer in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c step is not compatible with the generator's algorithm.
|
2019-01-08 09:31:27 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c step does not allow direct inputs.
|
2019-01-07 21:59:38 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* The value of \p step is not valid given the state of \p generator.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
psa_status_t psa_key_derivation_input_bytes(psa_crypto_generator_t *generator,
|
|
|
|
psa_key_derivation_step_t step,
|
|
|
|
const uint8_t *data,
|
|
|
|
size_t data_length);
|
|
|
|
|
|
|
|
/** Provide an input for key derivation in the form of a key.
|
|
|
|
*
|
2019-01-08 09:31:27 +00:00
|
|
|
* Which inputs are required and in what order depends on the algorithm.
|
|
|
|
* Refer to the documentation of each key derivation or key agreement
|
|
|
|
* algorithm for information.
|
|
|
|
*
|
|
|
|
* This function passes key inputs. Some inputs must be passed as keys
|
|
|
|
* of the appropriate type using this function, while others must be
|
|
|
|
* passed as direct inputs using psa_key_derivation_input_bytes(). Refer to
|
|
|
|
* the documentation of individual step types for information.
|
2019-01-07 21:59:38 +00:00
|
|
|
*
|
|
|
|
* \param[in,out] generator The generator object to use. It must
|
|
|
|
* have been set up with
|
|
|
|
* psa_key_derivation_setup() and must not
|
|
|
|
* have produced any output yet.
|
|
|
|
* \param step Which step the input data is for.
|
2019-01-08 09:31:27 +00:00
|
|
|
* \param handle Handle to the key. It must have an
|
|
|
|
* appropriate type for \p step and must
|
|
|
|
* allow the usage #PSA_KEY_USAGE_DERIVE.
|
2018-07-12 15:17:20 +00:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-07-12 15:17:20 +00:00
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
2019-01-07 21:59:38 +00:00
|
|
|
* \c step is not compatible with the generator's algorithm.
|
2019-01-08 09:31:27 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \c step does not allow key inputs.
|
2018-07-12 15:17:20 +00:00
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \retval #PSA_ERROR_COMMUNICATION_FAILURE
|
|
|
|
* \retval #PSA_ERROR_HARDWARE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_TAMPERING_DETECTED
|
2018-09-12 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-01-07 21:59:38 +00:00
|
|
|
* The value of \p step is not valid given the state of \p generator.
|
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 15:17:20 +00:00
|
|
|
*/
|
2019-01-07 21:59:38 +00:00
|
|
|
psa_status_t psa_key_derivation_input_key(psa_crypto_generator_t *generator,
|
|
|
|
psa_key_derivation_step_t step,
|
|
|
|
psa_key_handle_t handle);
|
2018-07-12 15:17:20 +00:00
|
|
|
|
2019-01-16 14:53:06 +00:00
|
|
|
/** Perform a key agreement and use the shared secret as input to a key
|
|
|
|
* derivation.
|
2018-09-18 10:01:02 +00:00
|
|
|
*
|
|
|
|
* A key agreement algorithm takes two inputs: a private key \p private_key
|
|
|
|
* a public key \p peer_key.
|
2019-01-16 14:53:06 +00:00
|
|
|
* The result of this function is passed as input to a key derivation.
|
|
|
|
* The output of this key derivation can be extracted by reading from the
|
|
|
|
* resulting generator to produce keys and other cryptographic material.
|
2018-09-18 10:01:02 +00:00
|
|
|
*
|
2019-01-16 14:53:06 +00:00
|
|
|
* \param[in,out] generator The generator object to use. It must
|
|
|
|
* have been set up with
|
|
|
|
* psa_key_derivation_setup() with a
|
2019-01-18 15:44:49 +00:00
|
|
|
* key agreement and derivation algorithm
|
|
|
|
* \c alg (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_KEY_AGREEMENT(\p alg) is true
|
|
|
|
* and #PSA_ALG_IS_RAW_KEY_AGREEMENT(\p alg)
|
|
|
|
* is false).
|
2019-01-16 14:53:06 +00:00
|
|
|
* The generator must be ready for an
|
|
|
|
* input of the type given by \p step.
|
|
|
|
* \param step Which step the input data is for.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param private_key Handle to the private key to use.
|
2019-01-14 16:56:20 +00:00
|
|
|
* \param[in] peer_key Public key of the peer. The peer key must be in the
|
|
|
|
* same format that psa_import_key() accepts for the
|
|
|
|
* public key type corresponding to the type of
|
|
|
|
* private_key. That is, this function performs the
|
|
|
|
* equivalent of
|
2019-02-08 10:24:59 +00:00
|
|
|
* #psa_import_key(`internal_public_key_handle`,
|
|
|
|
* #PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(`private_key_type`),
|
|
|
|
* `peer_key`, `peer_key_length`) where
|
2019-01-14 16:56:20 +00:00
|
|
|
* `private_key_type` is the type of `private_key`.
|
|
|
|
* For example, for EC keys, this means that peer_key
|
|
|
|
* is interpreted as a point on the curve that the
|
|
|
|
* private key is on. The standard formats for public
|
|
|
|
* keys are documented in the documentation of
|
|
|
|
* psa_export_public_key().
|
2018-09-18 10:01:02 +00:00
|
|
|
* \param peer_key_length Size of \p peer_key in bytes.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
2018-09-18 10:01:02 +00:00
|
|
|
* \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,
|
2019-01-16 14:53:06 +00:00
|
|
|
psa_key_derivation_step_t step,
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_key_handle_t private_key,
|
2018-09-18 10:01:02 +00:00
|
|
|
const uint8_t *peer_key,
|
2019-01-16 14:53:06 +00:00
|
|
|
size_t peer_key_length);
|
2018-09-18 10:01:02 +00:00
|
|
|
|
2019-01-18 15:42:29 +00:00
|
|
|
/** Perform a key agreement and use the shared secret as input to a key
|
|
|
|
* derivation.
|
|
|
|
*
|
|
|
|
* A key agreement algorithm takes two inputs: a private key \p private_key
|
|
|
|
* a public key \p peer_key.
|
|
|
|
*
|
|
|
|
* \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 should instead be passed as
|
|
|
|
* input to a key derivation algorithm. To chain a key agreement with
|
|
|
|
* a key derivation, use psa_key_agreement() and other functions from
|
|
|
|
* the key derivation and generator interface.
|
|
|
|
*
|
2019-02-08 10:24:59 +00:00
|
|
|
* \param alg The key agreement algorithm to compute
|
|
|
|
* (\c PSA_ALG_XXX value such that
|
|
|
|
* #PSA_ALG_IS_RAW_KEY_AGREEMENT(\p alg)
|
|
|
|
* is true).
|
2019-01-18 15:42:29 +00:00
|
|
|
* \param private_key Handle to the private key to use.
|
|
|
|
* \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().
|
|
|
|
* \param peer_key_length Size of \p peer_key in bytes.
|
|
|
|
* \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.
|
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* Success.
|
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_EMPTY_SLOT
|
|
|
|
* \retval #PSA_ERROR_NOT_PERMITTED
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p alg is not a key agreement algorithm
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* \p private_key is not compatible with \p alg,
|
|
|
|
* or \p peer_key is not valid for \p alg or not compatible with
|
|
|
|
* \p private_key.
|
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
|
|
|
* \p alg is not a supported key agreement 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_raw_shared_secret(psa_algorithm_t alg,
|
|
|
|
psa_key_handle_t private_key,
|
|
|
|
const uint8_t *peer_key,
|
|
|
|
size_t peer_key_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length);
|
2018-09-18 10:01:02 +00:00
|
|
|
|
2018-07-12 15:17:20 +00:00
|
|
|
/**@}*/
|
|
|
|
|
2018-07-20 15:42:05 +00:00
|
|
|
/** \defgroup random Random generation
|
2018-03-28 12:18:50 +00: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-11 23:08:58 +00:00
|
|
|
* \param[out] output Output buffer for the generated data.
|
2018-03-28 12:18:50 +00:00
|
|
|
* \param output_size Number of bytes to generate and output.
|
|
|
|
*
|
2018-07-11 15:34:00 +00: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 13:24:41 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:18:50 +00:00
|
|
|
*/
|
|
|
|
psa_status_t psa_generate_random(uint8_t *output,
|
|
|
|
size_t output_size);
|
|
|
|
|
2018-07-11 23:24:09 +00:00
|
|
|
/** Extra parameters for RSA key generation.
|
|
|
|
*
|
2018-07-13 12:38:15 +00:00
|
|
|
* You may pass a pointer to a structure of this type as the \c extra
|
2018-07-11 23:24:09 +00:00
|
|
|
* parameter to psa_generate_key().
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2018-07-20 15:42:05 +00:00
|
|
|
uint32_t e; /**< Public exponent value. Default: 65537. */
|
2018-07-11 23:24:09 +00:00
|
|
|
} psa_generate_key_extra_rsa;
|
|
|
|
|
2018-03-28 12:18:50 +00:00
|
|
|
/**
|
|
|
|
* \brief Generate a key or key pair.
|
|
|
|
*
|
2018-11-30 13:39:32 +00:00
|
|
|
* \param handle Handle to the slot where the key will be stored.
|
2019-01-19 11:20:52 +00:00
|
|
|
* It must have been obtained by calling
|
|
|
|
* psa_allocate_key() or psa_create_key() and must
|
|
|
|
* not contain key material yet.
|
2018-06-19 18:19:14 +00:00
|
|
|
* \param type Key type (a \c PSA_KEY_TYPE_XXX value).
|
|
|
|
* \param bits Key size in bits.
|
2018-07-11 23:14:59 +00:00
|
|
|
* \param[in] extra Extra parameters for key generation. The
|
2018-06-19 18:19:14 +00:00
|
|
|
* interpretation of this parameter depends on
|
2018-07-12 17:23:03 +00:00
|
|
|
* \p type. All types support \c NULL to use
|
2018-07-11 23:31:03 +00: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 17:23:03 +00:00
|
|
|
* - For a symmetric key type (a type such
|
2018-07-11 23:31:03 +00:00
|
|
|
* that #PSA_KEY_TYPE_IS_ASYMMETRIC(\p type) is
|
|
|
|
* false), \p extra must be \c NULL.
|
2018-07-12 17:23:03 +00:00
|
|
|
* - For an elliptic curve key type (a type
|
2018-07-11 23:31:03 +00:00
|
|
|
* such that #PSA_KEY_TYPE_IS_ECC(\p type) is
|
|
|
|
* false), \p extra must be \c NULL.
|
2018-07-12 17:40:46 +00: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-11 23:31:03 +00:00
|
|
|
* specifying the public exponent. The
|
|
|
|
* default public exponent used when \p extra
|
|
|
|
* is \c NULL is 65537.
|
2019-01-11 13:50:43 +00:00
|
|
|
* - For an DSA key (\p type is
|
|
|
|
* #PSA_KEY_TYPE_DSA_KEYPAIR), \p extra is an
|
|
|
|
* optional structure specifying the key domain
|
2019-01-11 14:20:03 +00:00
|
|
|
* parameters. The key domain parameters can also be
|
|
|
|
* provided by psa_set_key_domain_parameters(),
|
|
|
|
* which documents the format of the structure.
|
|
|
|
* - For a DH key (\p type is
|
|
|
|
* #PSA_KEY_TYPE_DH_KEYPAIR), the \p extra is an
|
|
|
|
* optional structure specifying the key domain
|
2019-01-11 13:50:43 +00:00
|
|
|
* parameters. The key domain parameters can also be
|
|
|
|
* provided by psa_set_key_domain_parameters(),
|
|
|
|
* which documents the format of the structure.
|
2018-07-11 23:14:59 +00: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 12:18:50 +00:00
|
|
|
*
|
2018-07-11 15:34:00 +00:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-12-11 14:51:32 +00:00
|
|
|
* Success.
|
|
|
|
* If the key is persistent, the key material and the key's metadata
|
|
|
|
* have been saved to persistent storage.
|
2018-11-30 13:39:32 +00:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \retval #PSA_ERROR_OCCUPIED_SLOT
|
|
|
|
* There is already a key in the specified slot.
|
2018-07-11 15:34:00 +00:00
|
|
|
* \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 08:44:52 +00:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-09-16 09:22:41 +00: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 12:18:50 +00:00
|
|
|
*/
|
2018-11-30 13:39:32 +00:00
|
|
|
psa_status_t psa_generate_key(psa_key_handle_t handle,
|
2018-03-28 12:18:50 +00:00
|
|
|
psa_key_type_t type,
|
|
|
|
size_t bits,
|
2018-07-11 23:14:59 +00:00
|
|
|
const void *extra,
|
|
|
|
size_t extra_size);
|
2018-03-28 12:18:50 +00:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
2018-01-27 22:32:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-06-27 17:49:02 +00:00
|
|
|
/* The file "crypto_sizes.h" contains definitions for size calculation
|
|
|
|
* macros whose definitions are implementation-specific. */
|
|
|
|
#include "crypto_sizes.h"
|
|
|
|
|
2018-02-07 20:05:37 +00: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 22:32:46 +00:00
|
|
|
#include "crypto_extra.h"
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_H */
|