2021-04-29 21:10:11 +02:00
|
|
|
/*
|
|
|
|
|
* Test driver for MAC entry points.
|
|
|
|
|
*/
|
|
|
|
|
/* Copyright The Mbed TLS Contributors
|
|
|
|
|
* 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-05-27 14:49:25 +02:00
|
|
|
#include <test/helpers.h>
|
2021-04-29 21:10:11 +02:00
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_DRIVERS) && defined(PSA_CRYPTO_DRIVER_TEST)
|
|
|
|
|
#include "psa_crypto_mac.h"
|
|
|
|
|
|
|
|
|
|
#include "test/drivers/mac.h"
|
|
|
|
|
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1)
|
|
|
|
|
#include "libtestdriver1/library/psa_crypto_mac.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks_t mbedtls_test_driver_mac_hooks =
|
|
|
|
|
MBEDTLS_TEST_DRIVER_MAC_INIT;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_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 )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_compute(
|
2021-09-13 14:50:42 +02:00
|
|
|
(const libtestdriver1_psa_key_attributes_t *)attributes,
|
|
|
|
|
key_buffer, key_buffer_size, alg,
|
2021-04-29 21:10:11 +02:00
|
|
|
input, input_length,
|
|
|
|
|
mac, mac_size, mac_length );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_compute(
|
|
|
|
|
attributes, key_buffer, key_buffer_size, alg,
|
|
|
|
|
input, input_length,
|
|
|
|
|
mac, mac_size, mac_length );
|
|
|
|
|
#else
|
|
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
(void) input;
|
|
|
|
|
(void) input_length;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_size;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_sign_setup(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation,
|
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
|
size_t key_buffer_size,
|
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_sign_setup(
|
2021-09-13 14:50:42 +02:00
|
|
|
operation,
|
|
|
|
|
(const libtestdriver1_psa_key_attributes_t *)attributes,
|
|
|
|
|
key_buffer, key_buffer_size, alg );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_sign_setup(
|
|
|
|
|
operation, attributes, key_buffer, key_buffer_size, alg );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_verify_setup(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation,
|
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
|
size_t key_buffer_size,
|
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_verify_setup(
|
2021-09-13 14:50:42 +02:00
|
|
|
operation,
|
|
|
|
|
(const libtestdriver1_psa_key_attributes_t *)attributes,
|
|
|
|
|
key_buffer, key_buffer_size, alg );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_verify_setup(
|
|
|
|
|
operation, attributes, key_buffer, key_buffer_size, alg );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_update(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation,
|
|
|
|
|
const uint8_t *input,
|
|
|
|
|
size_t input_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_update(
|
2021-04-29 21:10:11 +02:00
|
|
|
operation, input, input_length );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_update(
|
|
|
|
|
operation, input, input_length );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
(void) input;
|
|
|
|
|
(void) input_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_sign_finish(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation,
|
|
|
|
|
uint8_t *mac,
|
|
|
|
|
size_t mac_size,
|
|
|
|
|
size_t *mac_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_sign_finish(
|
2021-04-29 21:10:11 +02:00
|
|
|
operation, mac, mac_size, mac_length );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_sign_finish(
|
|
|
|
|
operation, mac, mac_size, mac_length );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_size;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_verify_finish(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation,
|
|
|
|
|
const uint8_t *mac,
|
|
|
|
|
size_t mac_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_verify_finish(
|
2021-04-29 21:10:11 +02:00
|
|
|
operation, mac, mac_length );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_verify_finish(
|
|
|
|
|
operation, mac, mac_length );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_mac_abort(
|
|
|
|
|
mbedtls_transparent_test_driver_mac_operation_t *operation )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-09-13 14:50:42 +02:00
|
|
|
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
|
|
|
|
defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_MAC)
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
2021-03-13 18:19:08 +01:00
|
|
|
libtestdriver1_mbedtls_psa_mac_abort( operation );
|
2021-04-09 11:09:54 +02:00
|
|
|
#elif defined(MBEDTLS_PSA_BUILTIN_MAC)
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_psa_mac_abort( operation );
|
|
|
|
|
#else
|
|
|
|
|
(void) operation;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
|
|
|
|
#endif
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_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 )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
(void) input;
|
|
|
|
|
(void) input_length;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_size;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_sign_setup(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation,
|
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
|
size_t key_buffer_size,
|
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_verify_setup(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation,
|
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
|
const uint8_t *key_buffer,
|
|
|
|
|
size_t key_buffer_size,
|
|
|
|
|
psa_algorithm_t alg )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
(void) attributes;
|
|
|
|
|
(void) key_buffer;
|
|
|
|
|
(void) key_buffer_size;
|
|
|
|
|
(void) alg;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_update(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation,
|
|
|
|
|
const uint8_t *input,
|
|
|
|
|
size_t input_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
(void) input;
|
|
|
|
|
(void) input_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_sign_finish(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation,
|
|
|
|
|
uint8_t *mac,
|
|
|
|
|
size_t mac_size,
|
|
|
|
|
size_t *mac_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_size;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_verify_finish(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation,
|
|
|
|
|
const uint8_t *mac,
|
|
|
|
|
size_t mac_length )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
(void) mac;
|
|
|
|
|
(void) mac_length;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_mac_abort(
|
|
|
|
|
mbedtls_opaque_test_driver_mac_operation_t *operation )
|
|
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.hits++;
|
2021-04-29 21:10:11 +02:00
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
if( mbedtls_test_driver_mac_hooks.forced_status != PSA_SUCCESS )
|
2021-04-29 21:10:11 +02:00
|
|
|
{
|
2021-05-10 11:18:20 +02:00
|
|
|
mbedtls_test_driver_mac_hooks.driver_status =
|
|
|
|
|
mbedtls_test_driver_mac_hooks.forced_status;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-01 11:24:02 +02:00
|
|
|
(void) operation;
|
|
|
|
|
mbedtls_test_driver_mac_hooks.driver_status = PSA_ERROR_NOT_SUPPORTED;
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:18:20 +02:00
|
|
|
return( mbedtls_test_driver_mac_hooks.driver_status );
|
2021-04-29 21:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_PSA_CRYPTO_DRIVERS && PSA_CRYPTO_DRIVER_TEST */
|