2020-07-16 20:28:36 +02:00
|
|
|
/*
|
|
|
|
* Functions to delegate cryptographic operations to an available
|
|
|
|
* and appropriate accelerator.
|
2020-09-04 13:07:15 +02:00
|
|
|
* Warning: This file will be auto-generated in the future.
|
2020-07-16 20:28:36 +02:00
|
|
|
*/
|
2020-09-02 13:43:46 +02:00
|
|
|
/* Copyright The Mbed TLS Contributors
|
2020-07-16 20:28:36 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-03-17 16:08:20 +01:00
|
|
|
#include "psa_crypto_aead.h"
|
2020-12-14 18:08:20 +01:00
|
|
|
#include "psa_crypto_cipher.h"
|
2020-07-16 20:28:36 +02:00
|
|
|
#include "psa_crypto_core.h"
|
|
|
|
#include "psa_crypto_driver_wrappers.h"
|
2021-03-09 09:50:44 +01:00
|
|
|
#include "psa_crypto_hash.h"
|
2021-03-19 15:24:23 +01:00
|
|
|
#include "psa_crypto_mac.h"
|
2021-03-09 09:50:44 +01:00
|
|
|
|
2020-07-20 15:33:08 +02:00
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_DRIVERS)
|
2020-07-16 20:28:36 +02:00
|
|
|
|
|
|
|
/* Include test driver definition when running tests */
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2020-09-04 13:07:15 +02:00
|
|
|
#ifndef PSA_CRYPTO_DRIVER_PRESENT
|
2020-07-24 18:41:58 +02:00
|
|
|
#define PSA_CRYPTO_DRIVER_PRESENT
|
2020-09-04 13:07:15 +02:00
|
|
|
#endif
|
|
|
|
#ifndef PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
2020-07-24 18:41:58 +02:00
|
|
|
#define PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
2020-09-04 13:07:15 +02:00
|
|
|
#endif
|
2021-04-30 17:00:34 +02:00
|
|
|
#include "test/drivers/test_driver.h"
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-07-16 20:28:36 +02:00
|
|
|
|
2020-09-04 13:07:15 +02:00
|
|
|
/* Repeat above block for each JSON-declared driver during autogeneration */
|
2021-03-15 18:54:03 +01:00
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_DRIVERS */
|
2020-09-04 13:07:15 +02:00
|
|
|
|
2021-02-18 17:24:37 +01:00
|
|
|
/* Auto-generated values depending on which drivers are registered.
|
|
|
|
* ID 0 is reserved for unallocated operations.
|
|
|
|
* ID 1 is reserved for the Mbed TLS software driver. */
|
2021-03-09 09:50:44 +01:00
|
|
|
#define PSA_CRYPTO_MBED_TLS_DRIVER_ID (1)
|
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-02-18 17:24:37 +01:00
|
|
|
#define PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID (2)
|
|
|
|
#define PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID (3)
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-07-20 15:33:08 +02:00
|
|
|
|
|
|
|
/* Support the 'old' SE interface when asked to */
|
2020-07-17 16:43:05 +02:00
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
2020-09-04 13:07:15 +02:00
|
|
|
/* PSA_CRYPTO_DRIVER_PRESENT is defined when either a new-style or old-style
|
|
|
|
* SE driver is present, to avoid unused argument errors at compile time. */
|
|
|
|
#ifndef PSA_CRYPTO_DRIVER_PRESENT
|
2020-07-24 18:41:58 +02:00
|
|
|
#define PSA_CRYPTO_DRIVER_PRESENT
|
2020-09-04 13:07:15 +02:00
|
|
|
#endif
|
2020-07-17 16:43:05 +02:00
|
|
|
#include "psa_crypto_se.h"
|
|
|
|
#endif
|
|
|
|
|
2020-07-16 20:28:36 +02:00
|
|
|
/* Start delegation functions */
|
2020-12-08 17:07:25 +01:00
|
|
|
psa_status_t psa_driver_wrapper_sign_hash(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg, const uint8_t *hash, size_t hash_length,
|
|
|
|
uint8_t *signature, size_t signature_size, size_t *signature_length )
|
2020-07-16 20:28:36 +02:00
|
|
|
{
|
2020-07-17 16:43:05 +02:00
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
2020-12-08 17:07:25 +01:00
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
2020-07-17 16:43:05 +02:00
|
|
|
{
|
|
|
|
if( drv->asymmetric == NULL ||
|
|
|
|
drv->asymmetric->p_sign == NULL )
|
|
|
|
{
|
|
|
|
/* Key is defined in SE, but we have no way to exercise it */
|
2020-09-04 13:07:15 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-17 16:43:05 +02:00
|
|
|
}
|
2020-12-08 17:07:25 +01:00
|
|
|
return( drv->asymmetric->p_sign(
|
|
|
|
drv_context, *( (psa_key_slot_number_t *)key_buffer ),
|
|
|
|
alg, hash, hash_length,
|
|
|
|
signature, signature_size, signature_length ) );
|
2020-07-17 16:43:05 +02:00
|
|
|
}
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_SE_C */
|
2020-07-17 16:43:05 +02:00
|
|
|
|
2020-12-08 18:06:03 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2020-12-08 17:07:25 +01:00
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
2020-07-16 20:28:36 +02:00
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
2020-12-08 18:06:03 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_signature_sign_hash( attributes,
|
2020-12-08 17:07:25 +01:00
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
2020-07-16 20:28:36 +02:00
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_size,
|
|
|
|
signature_length );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
2020-09-04 13:07:15 +02:00
|
|
|
return( status );
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-08 18:06:03 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-07-16 20:28:36 +02:00
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2020-12-08 18:06:03 +01:00
|
|
|
return( psa_sign_hash_internal( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_size,
|
|
|
|
signature_length ) );
|
|
|
|
|
2020-07-16 20:28:36 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-12-08 18:06:03 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_signature_sign_hash( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_size,
|
|
|
|
signature_length ) );
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-08 18:06:03 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-07-16 20:28:36 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-12-08 18:06:03 +01:00
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-16 20:28:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 17:07:25 +01:00
|
|
|
psa_status_t psa_driver_wrapper_verify_hash(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg, const uint8_t *hash, size_t hash_length,
|
|
|
|
const uint8_t *signature, size_t signature_length )
|
2020-07-17 19:46:15 +02:00
|
|
|
{
|
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
2020-12-08 17:07:25 +01:00
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
2020-07-17 19:46:15 +02:00
|
|
|
{
|
|
|
|
if( drv->asymmetric == NULL ||
|
|
|
|
drv->asymmetric->p_verify == NULL )
|
|
|
|
{
|
|
|
|
/* Key is defined in SE, but we have no way to exercise it */
|
2020-09-04 13:07:15 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
2020-12-08 17:07:25 +01:00
|
|
|
return( drv->asymmetric->p_verify(
|
|
|
|
drv_context, *( (psa_key_slot_number_t *)key_buffer ),
|
|
|
|
alg, hash, hash_length,
|
|
|
|
signature, signature_length ) );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_SE_C */
|
2020-07-17 19:46:15 +02:00
|
|
|
|
2020-12-08 18:06:03 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2020-12-08 17:07:25 +01:00
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
2020-07-17 19:46:15 +02:00
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
2020-12-08 18:06:03 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_signature_verify_hash(
|
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_length );
|
2020-07-17 19:46:15 +02:00
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
2020-09-04 13:07:15 +02:00
|
|
|
return( status );
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-08 18:06:03 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
return( psa_verify_hash_internal( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_length ) );
|
|
|
|
|
2020-07-17 19:46:15 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-12-08 18:06:03 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_signature_verify_hash( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg,
|
|
|
|
hash,
|
|
|
|
hash_length,
|
|
|
|
signature,
|
|
|
|
signature_length ) );
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-08 18:06:03 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-07-17 19:46:15 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-12-08 18:06:03 +01:00
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 13:08:42 +02:00
|
|
|
/** Get the key buffer size required to store the key material of a key
|
|
|
|
* associated with an opaque driver without storage.
|
2020-09-04 13:07:15 +02:00
|
|
|
*
|
2020-12-05 18:47:56 +01:00
|
|
|
* \param[in] attributes The key attributes.
|
|
|
|
* \param[out] key_buffer_size Minimum buffer size to contain the key material
|
2020-09-04 13:07:15 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
2020-12-05 18:47:56 +01:00
|
|
|
* The minimum size for a buffer to contain the key material has been
|
|
|
|
* returned successfully.
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
* The size in bits of the key is not valid.
|
2020-09-04 13:07:15 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED
|
2020-12-05 18:47:56 +01:00
|
|
|
* The type and/or the size in bits of the key or the combination of
|
|
|
|
* the two is not supported.
|
2020-09-04 13:07:15 +02:00
|
|
|
*/
|
2020-12-05 19:15:23 +01:00
|
|
|
psa_status_t psa_driver_wrapper_get_key_buffer_size(
|
2020-12-05 18:47:56 +01:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
size_t *key_buffer_size )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
2020-09-22 15:54:01 +02:00
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
psa_key_type_t key_type = attributes->core.type;
|
|
|
|
size_t key_bits = attributes->core.bits;
|
|
|
|
|
2020-12-05 18:47:56 +01:00
|
|
|
*key_buffer_size = 0;
|
2020-09-22 15:54:01 +02:00
|
|
|
switch( location )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
2020-09-22 15:54:01 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-02-19 18:04:59 +01:00
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)
|
|
|
|
/* Emulate property 'builtin_key_size' */
|
|
|
|
if( psa_key_id_is_builtin(
|
|
|
|
MBEDTLS_SVC_KEY_ID_GET_KEY_ID(
|
|
|
|
psa_get_key_id( attributes ) ) ) )
|
|
|
|
{
|
2021-03-18 17:17:40 +01:00
|
|
|
*key_buffer_size = sizeof( psa_drv_slot_number_t );
|
2021-02-19 18:04:59 +01:00
|
|
|
return( PSA_SUCCESS );
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */
|
2021-04-13 12:41:34 +02:00
|
|
|
*key_buffer_size = mbedtls_test_size_function( key_type, key_bits );
|
2021-04-14 10:55:34 +02:00
|
|
|
return( ( *key_buffer_size != 0 ) ?
|
|
|
|
PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED );
|
2020-09-22 15:54:01 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
|
|
|
|
default:
|
2020-12-05 19:15:23 +01:00
|
|
|
(void)key_type;
|
|
|
|
(void)key_bits;
|
2020-09-22 15:54:01 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-20 15:33:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-13 08:32:21 +02:00
|
|
|
psa_status_t psa_driver_wrapper_generate_key(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length )
|
2020-07-17 19:46:15 +02:00
|
|
|
{
|
2020-10-13 08:32:21 +02:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION(attributes->core.lifetime);
|
|
|
|
|
2020-07-20 15:33:08 +02:00
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
2020-10-13 08:32:21 +02:00
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
|
|
|
size_t pubkey_length = 0; /* We don't support this feature yet */
|
|
|
|
if( drv->key_management == NULL ||
|
|
|
|
drv->key_management->p_generate == NULL )
|
|
|
|
{
|
|
|
|
/* Key is defined as being in SE, but we have no way to generate it */
|
2020-09-04 13:07:15 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-20 15:33:08 +02:00
|
|
|
}
|
|
|
|
return( drv->key_management->p_generate(
|
2020-10-13 08:32:21 +02:00
|
|
|
drv_context,
|
|
|
|
*( (psa_key_slot_number_t *)key_buffer ),
|
2020-11-25 17:52:23 +01:00
|
|
|
attributes, NULL, 0, &pubkey_length ) );
|
2020-07-20 15:33:08 +02:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
2020-10-13 08:32:21 +02:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-20 15:33:08 +02:00
|
|
|
/* Transparent drivers are limited to generating asymmetric keys */
|
2020-10-13 08:32:21 +02:00
|
|
|
if( PSA_KEY_TYPE_IS_ASYMMETRIC( attributes->core.type ) )
|
2020-07-20 15:33:08 +02:00
|
|
|
{
|
2020-10-13 08:32:21 +02:00
|
|
|
/* Cycle through all known transparent accelerators */
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_generate_key(
|
2020-10-13 08:32:21 +02:00
|
|
|
attributes, key_buffer, key_buffer_size,
|
|
|
|
key_buffer_length );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
break;
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-10-13 08:32:21 +02:00
|
|
|
}
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
/* Software fallback */
|
|
|
|
status = psa_generate_key_internal(
|
|
|
|
attributes, key_buffer, key_buffer_size, key_buffer_length );
|
2020-07-20 15:33:08 +02:00
|
|
|
break;
|
2020-10-13 08:32:21 +02:00
|
|
|
|
2020-07-20 15:33:08 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-10-13 08:32:21 +02:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_opaque_generate_key(
|
2020-10-13 08:32:21 +02:00
|
|
|
attributes, key_buffer, key_buffer_size, key_buffer_length );
|
2020-07-20 15:33:08 +02:00
|
|
|
break;
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-10-13 08:32:21 +02:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
2020-07-20 15:33:08 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
status = PSA_ERROR_INVALID_ARGUMENT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( status );
|
2020-07-17 19:46:15 +02:00
|
|
|
}
|
|
|
|
|
2020-11-22 14:02:39 +01:00
|
|
|
psa_status_t psa_driver_wrapper_import_key(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *data,
|
|
|
|
size_t data_length,
|
|
|
|
uint8_t *key_buffer,
|
|
|
|
size_t key_buffer_size,
|
|
|
|
size_t *key_buffer_length,
|
|
|
|
size_t *bits )
|
2020-10-13 17:43:44 +02:00
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2020-11-28 18:06:53 +01:00
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(
|
|
|
|
psa_get_key_lifetime( attributes ) );
|
|
|
|
|
2020-11-30 12:11:01 +01:00
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
|
|
|
{
|
|
|
|
if( drv->key_management == NULL ||
|
|
|
|
drv->key_management->p_import == NULL )
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
|
|
|
|
/* The driver should set the number of key bits, however in
|
|
|
|
* case it doesn't, we initialize bits to an invalid value. */
|
|
|
|
*bits = PSA_MAX_KEY_BITS + 1;
|
|
|
|
status = drv->key_management->p_import(
|
|
|
|
drv_context,
|
|
|
|
*( (psa_key_slot_number_t *)key_buffer ),
|
|
|
|
attributes, data, data_length, bits );
|
|
|
|
|
|
|
|
if( status != PSA_SUCCESS )
|
|
|
|
return( status );
|
|
|
|
|
|
|
|
if( (*bits) > PSA_MAX_KEY_BITS )
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
|
|
|
|
return( PSA_SUCCESS );
|
|
|
|
}
|
|
|
|
#endif /* PSA_CRYPTO_SE_C */
|
|
|
|
|
2020-11-28 18:06:53 +01:00
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-10-13 17:43:44 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_import_key(
|
|
|
|
attributes,
|
|
|
|
data, data_length,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
key_buffer_length, bits );
|
2020-11-28 18:06:53 +01:00
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
2020-10-13 17:43:44 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-11-28 18:06:53 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
return( psa_import_key_into_slot( attributes,
|
|
|
|
data, data_length,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
key_buffer_length, bits ) );
|
|
|
|
|
|
|
|
default:
|
2020-11-30 12:11:01 +01:00
|
|
|
/* Importing a key with external storage in not yet supported.
|
|
|
|
* Return in error indicating that the lifetime is not valid. */
|
2020-11-28 18:06:53 +01:00
|
|
|
(void)status;
|
2020-11-30 12:11:01 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-11-28 18:06:53 +01:00
|
|
|
}
|
2020-10-13 17:43:44 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-26 15:16:05 +01:00
|
|
|
psa_status_t psa_driver_wrapper_export_key(
|
2020-11-25 14:30:05 +01:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
uint8_t *data, size_t data_size, size_t *data_length )
|
|
|
|
|
2020-10-14 14:39:20 +02:00
|
|
|
{
|
2020-11-26 15:16:05 +01:00
|
|
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(
|
|
|
|
psa_get_key_lifetime( attributes ) );
|
|
|
|
|
2020-11-26 16:06:41 +01:00
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
|
|
|
{
|
|
|
|
if( ( drv->key_management == NULL ) ||
|
|
|
|
( drv->key_management->p_export == NULL ) )
|
2021-01-18 11:58:39 +01:00
|
|
|
{
|
2020-11-26 16:06:41 +01:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2021-01-18 11:58:39 +01:00
|
|
|
}
|
2020-11-26 16:06:41 +01:00
|
|
|
|
|
|
|
return( drv->key_management->p_export(
|
|
|
|
drv_context,
|
|
|
|
*( (psa_key_slot_number_t *)key_buffer ),
|
|
|
|
data, data_size, data_length ) );
|
|
|
|
}
|
|
|
|
#endif /* PSA_CRYPTO_SE_C */
|
|
|
|
|
2020-11-26 15:16:05 +01:00
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
return( psa_export_key_internal( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
data,
|
|
|
|
data_size,
|
|
|
|
data_length ) );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
2020-10-14 14:39:20 +02:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-11-26 15:16:05 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_export_key( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
data,
|
|
|
|
data_size,
|
|
|
|
data_length ) );
|
2020-11-26 15:16:05 +01:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
return( status );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_export_public_key(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
uint8_t *data, size_t data_size, size_t *data_length )
|
|
|
|
|
|
|
|
{
|
2020-10-14 14:39:20 +02:00
|
|
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
2020-11-25 14:30:05 +01:00
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(
|
|
|
|
psa_get_key_lifetime( attributes ) );
|
2020-10-14 14:39:20 +02:00
|
|
|
|
2020-11-26 16:06:41 +01:00
|
|
|
/* Try dynamically-registered SE interface first */
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
|
|
const psa_drv_se_t *drv;
|
|
|
|
psa_drv_se_context_t *drv_context;
|
|
|
|
|
|
|
|
if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )
|
|
|
|
{
|
|
|
|
if( ( drv->key_management == NULL ) ||
|
|
|
|
( drv->key_management->p_export_public == NULL ) )
|
2021-01-18 11:58:39 +01:00
|
|
|
{
|
2020-11-26 16:06:41 +01:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2021-01-18 11:58:39 +01:00
|
|
|
}
|
2020-11-26 16:06:41 +01:00
|
|
|
|
|
|
|
return( drv->key_management->p_export_public(
|
|
|
|
drv_context,
|
|
|
|
*( (psa_key_slot_number_t *)key_buffer ),
|
|
|
|
data, data_size, data_length ) );
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
|
|
|
|
|
2020-10-14 14:39:20 +02:00
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
2020-11-26 15:16:05 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-10-14 14:39:20 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_export_public_key(
|
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
data,
|
|
|
|
data_size,
|
|
|
|
data_length );
|
2020-10-14 14:39:20 +02:00
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-11-26 15:16:05 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-10-14 14:39:20 +02:00
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2020-11-26 15:16:05 +01:00
|
|
|
return( psa_export_public_key_internal( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
data,
|
|
|
|
data_size,
|
|
|
|
data_length ) );
|
|
|
|
|
2020-10-14 14:39:20 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-11-26 15:16:05 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-10-14 14:39:20 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_export_public_key( attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
data,
|
|
|
|
data_size,
|
|
|
|
data_length ) );
|
2020-10-14 14:39:20 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-11-26 15:16:05 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-10-14 14:39:20 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
return( status );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:21:22 +01:00
|
|
|
psa_status_t psa_driver_wrapper_get_builtin_key(
|
|
|
|
psa_drv_slot_number_t slot_number,
|
|
|
|
psa_key_attributes_t *attributes,
|
|
|
|
uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length )
|
|
|
|
{
|
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
switch( location )
|
|
|
|
{
|
2021-02-19 18:04:59 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_get_builtin_key(
|
2021-02-19 18:04:59 +01:00
|
|
|
slot_number,
|
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size, key_buffer_length ) );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2021-02-19 17:21:22 +01:00
|
|
|
default:
|
|
|
|
(void) slot_number;
|
|
|
|
(void) key_buffer;
|
|
|
|
(void) key_buffer_size;
|
|
|
|
(void) key_buffer_length;
|
|
|
|
return( PSA_ERROR_DOES_NOT_EXIST );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
/*
|
|
|
|
* Cipher functions
|
|
|
|
*/
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_encrypt(
|
|
|
|
psa_key_slot_t *slot,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length )
|
|
|
|
{
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_PRESENT) && defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(slot->attr.lifetime);
|
|
|
|
psa_key_attributes_t attributes = {
|
|
|
|
.core = slot->attr
|
|
|
|
};
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_cipher_encrypt( &attributes,
|
|
|
|
slot->key.data,
|
|
|
|
slot->key.bytes,
|
|
|
|
alg,
|
|
|
|
input,
|
|
|
|
input_length,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2020-09-09 11:51:45 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_cipher_encrypt( &attributes,
|
|
|
|
slot->key.data,
|
|
|
|
slot->key.bytes,
|
|
|
|
alg,
|
|
|
|
input,
|
|
|
|
input_length,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length ) );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
#else /* PSA_CRYPTO_DRIVER_PRESENT */
|
|
|
|
(void) slot;
|
|
|
|
(void) alg;
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
(void) output;
|
|
|
|
(void) output_size;
|
|
|
|
(void) output_length;
|
|
|
|
|
2020-09-09 11:51:45 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_decrypt(
|
|
|
|
psa_key_slot_t *slot,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length )
|
|
|
|
{
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_PRESENT) && defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
|
|
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(slot->attr.lifetime);
|
|
|
|
psa_key_attributes_t attributes = {
|
|
|
|
.core = slot->attr
|
|
|
|
};
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_cipher_decrypt( &attributes,
|
|
|
|
slot->key.data,
|
|
|
|
slot->key.bytes,
|
|
|
|
alg,
|
|
|
|
input,
|
|
|
|
input_length,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2020-09-09 11:51:45 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_cipher_decrypt( &attributes,
|
|
|
|
slot->key.data,
|
|
|
|
slot->key.bytes,
|
|
|
|
alg,
|
|
|
|
input,
|
|
|
|
input_length,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length ) );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
#else /* PSA_CRYPTO_DRIVER_PRESENT */
|
|
|
|
(void) slot;
|
|
|
|
(void) alg;
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
(void) output;
|
|
|
|
(void) output_size;
|
|
|
|
(void) output_length;
|
|
|
|
|
2020-09-09 11:51:45 +02:00
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_encrypt_setup(
|
2020-12-14 14:36:06 +01:00
|
|
|
psa_cipher_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
2020-07-28 18:49:51 +02:00
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2020-12-14 18:08:20 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2020-12-14 14:36:06 +01:00
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
2020-07-28 18:49:51 +02:00
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
2020-12-14 18:08:20 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_cipher_encrypt_setup(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Declared with fallback == true */
|
2020-09-09 14:32:44 +02:00
|
|
|
if( status == PSA_SUCCESS )
|
2021-03-10 08:34:23 +01:00
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
2020-09-09 14:32:44 +02:00
|
|
|
|
2020-12-14 18:08:20 +01:00
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-14 18:08:20 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2021-03-10 09:58:47 +01:00
|
|
|
status = mbedtls_psa_cipher_encrypt_setup( &operation->ctx.mbedtls_ctx,
|
2021-03-10 08:34:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg );
|
|
|
|
if( status == PSA_SUCCESS )
|
2021-03-10 09:58:47 +01:00
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
2021-03-10 08:34:23 +01:00
|
|
|
|
2021-03-19 14:49:41 +01:00
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2020-12-14 18:08:20 +01:00
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-12-14 18:08:20 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_opaque_cipher_encrypt_setup(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
2020-07-28 18:49:51 +02:00
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
2021-03-10 08:34:23 +01:00
|
|
|
operation->id = PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID;
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-14 18:08:20 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-07-28 18:49:51 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-12-14 18:08:20 +01:00
|
|
|
(void)status;
|
2021-03-10 14:43:20 +01:00
|
|
|
(void)key_buffer;
|
|
|
|
(void)key_buffer_size;
|
|
|
|
(void)alg;
|
2020-09-29 16:18:05 +02:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_decrypt_setup(
|
2020-12-14 14:36:06 +01:00
|
|
|
psa_cipher_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
2020-07-28 18:49:51 +02:00
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
2020-12-14 14:36:06 +01:00
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
2020-07-28 18:49:51 +02:00
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
2020-12-14 18:08:20 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_cipher_decrypt_setup(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg );
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Declared with fallback == true */
|
2020-09-09 14:32:44 +02:00
|
|
|
if( status == PSA_SUCCESS )
|
2021-03-10 08:34:23 +01:00
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
2020-09-09 14:32:44 +02:00
|
|
|
|
2020-12-14 18:08:20 +01:00
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-14 18:08:20 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2021-03-10 09:58:47 +01:00
|
|
|
status = mbedtls_psa_cipher_decrypt_setup( &operation->ctx.mbedtls_ctx,
|
2021-03-10 08:34:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer,
|
|
|
|
key_buffer_size,
|
|
|
|
alg );
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
|
|
|
|
|
|
|
return( status );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2021-03-10 08:34:23 +01:00
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
/* Add cases for opaque driver here */
|
2020-12-14 18:08:20 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-18 20:49:29 +01:00
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_opaque_cipher_decrypt_setup(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
2020-07-28 18:49:51 +02:00
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
2021-03-10 08:34:23 +01:00
|
|
|
operation->id = PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID;
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-14 18:08:20 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2020-07-28 18:49:51 +02:00
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
2020-12-14 18:08:20 +01:00
|
|
|
(void)status;
|
2021-03-10 14:43:20 +01:00
|
|
|
(void)key_buffer;
|
|
|
|
(void)key_buffer_size;
|
|
|
|
(void)alg;
|
2020-09-29 16:18:05 +02:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_set_iv(
|
2020-12-15 13:58:07 +01:00
|
|
|
psa_cipher_operation_t *operation,
|
2020-07-28 18:49:51 +02:00
|
|
|
const uint8_t *iv,
|
|
|
|
size_t iv_length )
|
|
|
|
{
|
2021-03-10 08:34:23 +01:00
|
|
|
switch( operation->id )
|
|
|
|
{
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2021-03-10 08:34:23 +01:00
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-10 09:58:47 +01:00
|
|
|
return( mbedtls_psa_cipher_set_iv( &operation->ctx.mbedtls_ctx,
|
2021-03-10 08:34:23 +01:00
|
|
|
iv,
|
|
|
|
iv_length ) );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
2020-12-15 14:10:01 +01:00
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_cipher_set_iv(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
iv, iv_length ) );
|
2021-03-10 08:34:23 +01:00
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_cipher_set_iv(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
iv, iv_length ) );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-15 14:10:01 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 08:34:23 +01:00
|
|
|
}
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2021-03-10 14:43:20 +01:00
|
|
|
(void)iv;
|
|
|
|
(void)iv_length;
|
|
|
|
|
2020-12-15 14:10:01 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_update(
|
2020-12-15 13:58:07 +01:00
|
|
|
psa_cipher_operation_t *operation,
|
2020-07-28 18:49:51 +02:00
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length )
|
|
|
|
{
|
2021-03-10 08:34:23 +01:00
|
|
|
switch( operation->id )
|
2020-07-28 18:49:51 +02:00
|
|
|
{
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2021-03-10 08:34:23 +01:00
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-10 09:58:47 +01:00
|
|
|
return( mbedtls_psa_cipher_update( &operation->ctx.mbedtls_ctx,
|
2021-03-10 08:34:23 +01:00
|
|
|
input,
|
|
|
|
input_length,
|
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length ) );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
2021-03-10 08:34:23 +01:00
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_cipher_update(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
input, input_length,
|
|
|
|
output, output_size, output_length ) );
|
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_cipher_update(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
input, input_length,
|
|
|
|
output, output_size, output_length ) );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-15 14:10:01 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 08:34:23 +01:00
|
|
|
}
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2021-03-10 14:43:20 +01:00
|
|
|
(void)input;
|
|
|
|
(void)input_length;
|
|
|
|
(void)output;
|
|
|
|
(void)output_size;
|
|
|
|
(void)output_length;
|
|
|
|
|
2020-12-15 14:10:01 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_finish(
|
2020-12-15 13:58:07 +01:00
|
|
|
psa_cipher_operation_t *operation,
|
2020-07-28 18:49:51 +02:00
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length )
|
|
|
|
{
|
2021-03-10 08:34:23 +01:00
|
|
|
switch( operation->id )
|
|
|
|
{
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2021-03-10 08:34:23 +01:00
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-10 09:58:47 +01:00
|
|
|
return( mbedtls_psa_cipher_finish( &operation->ctx.mbedtls_ctx,
|
2021-03-10 08:34:23 +01:00
|
|
|
output,
|
|
|
|
output_size,
|
|
|
|
output_length ) );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
2020-12-15 14:10:01 +01:00
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_cipher_finish(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
output, output_size, output_length ) );
|
2021-03-10 08:34:23 +01:00
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_opaque_cipher_finish(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
output, output_size, output_length ) );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-15 14:10:01 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 08:34:23 +01:00
|
|
|
}
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2021-03-10 14:43:20 +01:00
|
|
|
(void)output;
|
|
|
|
(void)output_size;
|
|
|
|
(void)output_length;
|
|
|
|
|
2020-12-15 14:10:01 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_cipher_abort(
|
2020-12-15 13:58:07 +01:00
|
|
|
psa_cipher_operation_t *operation )
|
2020-07-28 18:49:51 +02:00
|
|
|
{
|
2020-12-15 14:10:01 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2021-03-10 08:34:23 +01:00
|
|
|
switch( operation->id )
|
2020-07-28 18:49:51 +02:00
|
|
|
{
|
2021-03-10 14:43:20 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
2021-03-10 08:34:23 +01:00
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-10 09:58:47 +01:00
|
|
|
return( mbedtls_psa_cipher_abort( &operation->ctx.mbedtls_ctx ) );
|
2021-03-10 14:43:20 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
2021-03-10 08:34:23 +01:00
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
2020-07-28 18:49:51 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_cipher_abort(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx );
|
2020-09-09 15:09:18 +02:00
|
|
|
mbedtls_platform_zeroize(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
|
|
|
sizeof( operation->ctx.transparent_test_driver_ctx ) );
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2021-03-10 08:34:23 +01:00
|
|
|
|
2020-07-28 18:49:51 +02:00
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_opaque_cipher_abort(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx );
|
2020-09-09 15:09:18 +02:00
|
|
|
mbedtls_platform_zeroize(
|
2021-03-10 12:21:48 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
|
|
|
sizeof( operation->ctx.opaque_test_driver_ctx ) );
|
2020-09-09 11:51:45 +02:00
|
|
|
return( status );
|
2020-07-28 18:49:51 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-12-15 14:10:01 +01:00
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
2021-03-10 08:34:23 +01:00
|
|
|
}
|
2020-07-28 18:49:51 +02:00
|
|
|
|
2021-03-10 08:34:23 +01:00
|
|
|
(void)status;
|
2020-12-15 14:10:01 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2020-07-28 18:49:51 +02:00
|
|
|
}
|
|
|
|
|
2021-02-18 17:24:37 +01:00
|
|
|
/*
|
|
|
|
* Hashing functions
|
|
|
|
*/
|
|
|
|
psa_status_t psa_driver_wrapper_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)
|
|
|
|
{
|
2021-03-08 12:13:21 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2021-02-18 17:24:37 +01:00
|
|
|
|
|
|
|
/* Try accelerators first */
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_hash_compute(
|
2021-03-15 11:56:33 +01:00
|
|
|
alg, input, input_length, hash, hash_size, hash_length );
|
2021-03-04 15:14:36 +01:00
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif
|
2021-02-18 17:24:37 +01:00
|
|
|
|
|
|
|
/* If software fallback is compiled in, try fallback */
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
|
|
|
status = mbedtls_psa_hash_compute( alg, input, input_length,
|
|
|
|
hash, hash_size, hash_length );
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif
|
2021-03-08 12:13:21 +01:00
|
|
|
(void) status;
|
|
|
|
(void) alg;
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
(void) hash;
|
|
|
|
(void) hash_size;
|
|
|
|
(void) hash_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
2021-02-18 17:24:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_hash_setup(
|
2021-03-04 13:01:18 +01:00
|
|
|
psa_hash_operation_t *operation,
|
2021-02-18 17:24:37 +01:00
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
2021-03-08 12:13:21 +01:00
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
2021-02-18 17:24:37 +01:00
|
|
|
|
|
|
|
/* Try setup on accelerators first */
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_hash_setup(
|
2021-03-15 11:56:33 +01:00
|
|
|
&operation->ctx.test_driver_ctx, alg );
|
2021-03-04 15:14:36 +01:00
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif
|
2021-02-18 17:24:37 +01:00
|
|
|
|
|
|
|
/* If software fallback is compiled in, try fallback */
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
2021-03-04 13:01:18 +01:00
|
|
|
status = mbedtls_psa_hash_setup( &operation->ctx.mbedtls_ctx, alg );
|
2021-02-18 17:24:37 +01:00
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif
|
|
|
|
/* Nothing left to try if we fall through here */
|
|
|
|
(void) status;
|
|
|
|
(void) operation;
|
|
|
|
(void) alg;
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_hash_clone(
|
2021-03-04 13:01:18 +01:00
|
|
|
const psa_hash_operation_t *source_operation,
|
|
|
|
psa_hash_operation_t *target_operation )
|
2021-02-18 17:24:37 +01:00
|
|
|
{
|
|
|
|
switch( source_operation->id )
|
|
|
|
{
|
2021-03-15 12:26:07 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
|
|
|
target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
|
|
|
return( mbedtls_psa_hash_clone( &source_operation->ctx.mbedtls_ctx,
|
|
|
|
&target_operation->ctx.mbedtls_ctx ) );
|
|
|
|
#endif
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-04 15:14:36 +01:00
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
|
|
|
target_operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_hash_clone(
|
2021-03-15 11:56:33 +01:00
|
|
|
&source_operation->ctx.test_driver_ctx,
|
|
|
|
&target_operation->ctx.test_driver_ctx ) );
|
2021-02-18 17:24:37 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
(void) target_operation;
|
|
|
|
return( PSA_ERROR_BAD_STATE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_hash_update(
|
2021-03-04 13:01:18 +01:00
|
|
|
psa_hash_operation_t *operation,
|
2021-02-18 17:24:37 +01:00
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
2021-03-15 12:26:07 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
|
|
|
return( mbedtls_psa_hash_update( &operation->ctx.mbedtls_ctx,
|
|
|
|
input, input_length ) );
|
|
|
|
#endif
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-04 15:14:36 +01:00
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_hash_update(
|
2021-03-15 11:56:33 +01:00
|
|
|
&operation->ctx.test_driver_ctx,
|
|
|
|
input, input_length ) );
|
2021-02-18 17:24:37 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
return( PSA_ERROR_BAD_STATE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_hash_finish(
|
2021-03-04 13:01:18 +01:00
|
|
|
psa_hash_operation_t *operation,
|
2021-02-18 17:24:37 +01:00
|
|
|
uint8_t *hash,
|
|
|
|
size_t hash_size,
|
|
|
|
size_t *hash_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
2021-03-15 12:26:07 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
|
|
|
return( mbedtls_psa_hash_finish( &operation->ctx.mbedtls_ctx,
|
|
|
|
hash, hash_size, hash_length ) );
|
|
|
|
#endif
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-04 15:14:36 +01:00
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_hash_finish(
|
2021-03-15 11:56:33 +01:00
|
|
|
&operation->ctx.test_driver_ctx,
|
|
|
|
hash, hash_size, hash_length ) );
|
2021-02-18 17:24:37 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
(void) hash;
|
|
|
|
(void) hash_size;
|
|
|
|
(void) hash_length;
|
|
|
|
return( PSA_ERROR_BAD_STATE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_hash_abort(
|
2021-03-04 13:01:18 +01:00
|
|
|
psa_hash_operation_t *operation )
|
2021-02-18 17:24:37 +01:00
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
2021-03-15 12:26:07 +01:00
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_HASH)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
|
|
|
return( mbedtls_psa_hash_abort( &operation->ctx.mbedtls_ctx ) );
|
|
|
|
#endif
|
2021-03-16 11:07:55 +01:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-03-04 15:14:36 +01:00
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-13 12:41:34 +02:00
|
|
|
return( mbedtls_test_transparent_hash_abort(
|
2021-03-15 11:56:33 +01:00
|
|
|
&operation->ctx.test_driver_ctx ) );
|
2021-02-18 17:24:37 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return( PSA_ERROR_BAD_STATE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 16:08:20 +01:00
|
|
|
psa_status_t psa_driver_wrapper_aead_encrypt(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_aead_encrypt(
|
2021-03-17 16:08:20 +01:00
|
|
|
attributes, key_buffer, key_buffer_size,
|
|
|
|
alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
additional_data, additional_data_length,
|
|
|
|
plaintext, plaintext_length,
|
|
|
|
ciphertext, ciphertext_size, ciphertext_length );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
return( mbedtls_psa_aead_encrypt(
|
|
|
|
attributes, key_buffer, key_buffer_size,
|
|
|
|
alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
additional_data, additional_data_length,
|
|
|
|
plaintext, plaintext_length,
|
|
|
|
ciphertext, ciphertext_size, ciphertext_length ) );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_decrypt(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-13 12:41:34 +02:00
|
|
|
status = mbedtls_test_transparent_aead_decrypt(
|
2021-03-17 16:08:20 +01:00
|
|
|
attributes, key_buffer, key_buffer_size,
|
|
|
|
alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
additional_data, additional_data_length,
|
|
|
|
ciphertext, ciphertext_length,
|
|
|
|
plaintext, plaintext_size, plaintext_length );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
return( mbedtls_psa_aead_decrypt(
|
|
|
|
attributes, key_buffer, key_buffer_size,
|
|
|
|
alg,
|
|
|
|
nonce, nonce_length,
|
|
|
|
additional_data, additional_data_length,
|
|
|
|
ciphertext, ciphertext_length,
|
|
|
|
plaintext, plaintext_size, plaintext_length ) );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
2021-03-19 15:24:23 +01:00
|
|
|
|
2021-04-20 18:09:36 +02:00
|
|
|
psa_status_t psa_driver_wrapper_aead_encrypt_setup(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-21 13:26:21 +02:00
|
|
|
status = PSA_ERROR_NOT_SUPPORTED;
|
2021-05-07 16:10:31 +02:00
|
|
|
status = mbedtls_test_transparent_aead_encrypt_setup(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
2021-04-20 18:09:36 +02:00
|
|
|
/* Declared with fallback == true */
|
2021-04-28 17:44:37 +02:00
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
status = mbedtls_psa_aead_encrypt_setup(
|
|
|
|
operation, attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
|
2021-04-28 14:23:27 +02:00
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
return( status );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_decrypt_setup(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-21 13:26:21 +02:00
|
|
|
status = PSA_ERROR_NOT_SUPPORTED;
|
2021-05-07 16:10:31 +02:00
|
|
|
status = mbedtls_test_transparent_aead_decrypt_setup(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
2021-04-20 18:09:36 +02:00
|
|
|
/* Declared with fallback == true */
|
2021-04-28 17:44:37 +02:00
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
status = mbedtls_psa_aead_decrypt_setup(
|
|
|
|
operation, attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
|
2021-04-28 14:23:27 +02:00
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
return( status );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void)status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_set_nonce(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *nonce,
|
|
|
|
size_t nonce_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_set_nonce( operation, nonce,
|
|
|
|
nonce_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_set_nonce(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, nonce, nonce_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)nonce;
|
|
|
|
(void)nonce_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_set_lengths(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
size_t ad_length,
|
|
|
|
size_t plaintext_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_set_lengths( operation, ad_length,
|
|
|
|
plaintext_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_set_lengths(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, ad_length, plaintext_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)ad_length;
|
|
|
|
(void)plaintext_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_update_ad(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_update_ad( operation, input,
|
|
|
|
input_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_update_ad(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, input, input_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)input;
|
|
|
|
(void)input_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_update(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *output,
|
|
|
|
size_t output_size,
|
|
|
|
size_t *output_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_update( operation, input, input_length,
|
|
|
|
output, output_size,
|
|
|
|
output_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_update(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, input, input_length, output, output_size,
|
|
|
|
output_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)input;
|
|
|
|
(void)input_length;
|
|
|
|
(void)output;
|
|
|
|
(void)output_size;
|
|
|
|
(void)output_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_finish(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
uint8_t *ciphertext,
|
|
|
|
size_t ciphertext_size,
|
|
|
|
size_t *ciphertext_length,
|
|
|
|
uint8_t *tag,
|
|
|
|
size_t tag_size,
|
|
|
|
size_t *tag_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_finish( operation, ciphertext,
|
|
|
|
ciphertext_size,
|
|
|
|
ciphertext_length, tag,
|
|
|
|
tag_size, tag_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_finish(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, ciphertext, ciphertext_size,
|
|
|
|
ciphertext_length, tag, tag_size, tag_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)ciphertext;
|
|
|
|
(void)ciphertext_size;
|
|
|
|
(void)ciphertext_length;
|
|
|
|
(void)tag;
|
|
|
|
(void)tag_size;
|
|
|
|
(void)tag_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_verify(
|
|
|
|
psa_aead_operation_t *operation,
|
|
|
|
uint8_t *plaintext,
|
|
|
|
size_t plaintext_size,
|
|
|
|
size_t *plaintext_length,
|
|
|
|
const uint8_t *tag,
|
|
|
|
size_t tag_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_psa_aead_verify( operation, plaintext,
|
|
|
|
plaintext_size, plaintext_length,
|
|
|
|
tag, tag_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_verify(
|
2021-04-27 13:11:56 +02:00
|
|
|
operation, plaintext, plaintext_size,
|
|
|
|
plaintext_length, tag, tag_length ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)plaintext;
|
|
|
|
(void)plaintext_size;
|
|
|
|
(void)plaintext_length;
|
|
|
|
(void)tag;
|
|
|
|
(void)tag_length;
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_aead_abort(
|
|
|
|
psa_aead_operation_t *operation )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_CIPHER)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
|
|
|
return( mbedtls_psa_aead_abort( operation ) );
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-05-07 16:10:31 +02:00
|
|
|
return( mbedtls_test_transparent_aead_abort( operation ) );
|
2021-04-20 18:09:36 +02:00
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
}
|
|
|
|
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
2021-03-19 15:24:23 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MAC functions
|
|
|
|
*/
|
|
|
|
psa_status_t psa_driver_wrapper_mac_compute(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *mac,
|
|
|
|
size_t mac_size,
|
|
|
|
size_t *mac_length )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_transparent_mac_compute(
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes, key_buffer, key_buffer_size, alg,
|
|
|
|
input, input_length,
|
|
|
|
mac, mac_size, mac_length );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
|
|
|
status = mbedtls_psa_mac_compute(
|
|
|
|
attributes, key_buffer, key_buffer_size, alg,
|
|
|
|
input, input_length,
|
|
|
|
mac, mac_size, mac_length );
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_opaque_mac_compute(
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes, key_buffer, key_buffer_size, alg,
|
|
|
|
input, input_length,
|
|
|
|
mac, mac_size, mac_length );
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void) key_buffer;
|
|
|
|
(void) key_buffer_size;
|
|
|
|
(void) alg;
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
(void) mac;
|
|
|
|
(void) mac_size;
|
|
|
|
(void) mac_length;
|
|
|
|
(void) status;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_sign_setup(
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_transparent_mac_sign_setup(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2021-03-19 17:05:52 +01:00
|
|
|
status = mbedtls_psa_mac_sign_setup( &operation->ctx.mbedtls_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_opaque_mac_sign_setup(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID;
|
|
|
|
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void) status;
|
|
|
|
(void) key_buffer;
|
|
|
|
(void) key_buffer_size;
|
|
|
|
(void) alg;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_verify_setup(
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
size_t key_buffer_size,
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
{
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_location_t location =
|
|
|
|
PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );
|
|
|
|
|
|
|
|
switch( location )
|
|
|
|
{
|
|
|
|
case PSA_KEY_LOCATION_LOCAL_STORAGE:
|
|
|
|
/* Key is stored in the slot in export representation, so
|
|
|
|
* cycle through all known transparent accelerators */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_transparent_mac_verify_setup(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
/* Declared with fallback == true */
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
/* Fell through, meaning no accelerator supports this operation */
|
2021-03-19 17:05:52 +01:00
|
|
|
status = mbedtls_psa_mac_verify_setup( &operation->ctx.mbedtls_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
|
|
|
|
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
|
|
return( status );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
return( PSA_ERROR_NOT_SUPPORTED );
|
|
|
|
|
|
|
|
/* Add cases for opaque driver here */
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TEST_DRIVER_LOCATION:
|
2021-04-29 21:10:11 +02:00
|
|
|
status = mbedtls_test_opaque_mac_verify_setup(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
attributes,
|
|
|
|
key_buffer, key_buffer_size,
|
|
|
|
alg );
|
|
|
|
|
|
|
|
if( status == PSA_SUCCESS )
|
|
|
|
operation->id = PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID;
|
|
|
|
|
|
|
|
return( status );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
/* Key is declared with a lifetime not known to us */
|
|
|
|
(void) status;
|
|
|
|
(void) key_buffer;
|
|
|
|
(void) key_buffer_size;
|
|
|
|
(void) alg;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_update(
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-19 17:05:52 +01:00
|
|
|
return( mbedtls_psa_mac_update( &operation->ctx.mbedtls_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
input, input_length ) );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_transparent_mac_update(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
input, input_length ) );
|
|
|
|
|
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_opaque_mac_update(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
input, input_length ) );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
(void) input;
|
|
|
|
(void) input_length;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_sign_finish(
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
uint8_t *mac,
|
|
|
|
size_t mac_size,
|
|
|
|
size_t *mac_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-19 17:05:52 +01:00
|
|
|
return( mbedtls_psa_mac_sign_finish( &operation->ctx.mbedtls_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_size, mac_length ) );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_transparent_mac_sign_finish(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_size, mac_length ) );
|
|
|
|
|
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_opaque_mac_sign_finish(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_size, mac_length ) );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
(void) mac;
|
|
|
|
(void) mac_size;
|
|
|
|
(void) mac_length;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_verify_finish(
|
|
|
|
psa_mac_operation_t *operation,
|
|
|
|
const uint8_t *mac,
|
|
|
|
size_t mac_length )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-19 17:05:52 +01:00
|
|
|
return( mbedtls_psa_mac_verify_finish( &operation->ctx.mbedtls_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_length ) );
|
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_transparent_mac_verify_finish(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_length ) );
|
|
|
|
|
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_opaque_mac_verify_finish(
|
2021-03-19 17:05:52 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx,
|
2021-03-19 15:24:23 +01:00
|
|
|
mac, mac_length ) );
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
|
|
|
(void) mac;
|
|
|
|
(void) mac_length;
|
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_status_t psa_driver_wrapper_mac_abort(
|
|
|
|
psa_mac_operation_t *operation )
|
|
|
|
{
|
|
|
|
switch( operation->id )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
case PSA_CRYPTO_MBED_TLS_DRIVER_ID:
|
2021-03-19 18:28:56 +01:00
|
|
|
return( mbedtls_psa_mac_abort( &operation->ctx.mbedtls_ctx ) );
|
2021-03-19 15:24:23 +01:00
|
|
|
#endif /* MBEDTLS_PSA_BUILTIN_MAC */
|
|
|
|
|
|
|
|
#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
case PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_transparent_mac_abort(
|
2021-03-19 18:28:56 +01:00
|
|
|
&operation->ctx.transparent_test_driver_ctx ) );
|
2021-03-19 15:24:23 +01:00
|
|
|
case PSA_CRYPTO_OPAQUE_TEST_DRIVER_ID:
|
2021-04-29 21:10:11 +02:00
|
|
|
return( mbedtls_test_opaque_mac_abort(
|
2021-03-19 18:28:56 +01:00
|
|
|
&operation->ctx.opaque_test_driver_ctx ) );
|
2021-03-19 15:24:23 +01:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */
|
|
|
|
default:
|
2021-03-19 18:28:56 +01:00
|
|
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
2021-03-19 15:24:23 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-16 20:28:36 +02:00
|
|
|
/* End of automatically generated file. */
|