2020-07-16 20:26:18 +02:00
|
|
|
/*
|
2020-09-04 13:07:15 +02:00
|
|
|
* Test driver for signature functions.
|
2020-07-16 20:26:18 +02:00
|
|
|
*/
|
2020-09-02 13:43:46 +02:00
|
|
|
/* Copyright The Mbed TLS Contributors
|
2020-07-16 20:26:18 +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.
|
|
|
|
*/
|
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#ifndef PSA_CRYPTO_TEST_DRIVERS_SIGNATURE_H
|
|
|
|
#define PSA_CRYPTO_TEST_DRIVERS_SIGNATURE_H
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
2020-07-16 20:26:18 +02:00
|
|
|
#include <psa/crypto_driver_common.h>
|
|
|
|
|
2020-09-07 12:58:16 +02:00
|
|
|
typedef struct {
|
|
|
|
/* If non-null, on success, copy this to the output. */
|
|
|
|
void *forced_output;
|
|
|
|
size_t forced_output_length;
|
|
|
|
/* If not PSA_SUCCESS, return this error code instead of processing the
|
|
|
|
* function call. */
|
|
|
|
psa_status_t forced_status;
|
2020-10-23 11:45:43 +02:00
|
|
|
/* Count the amount of times one of the signature driver functions is called. */
|
2020-09-07 12:58:16 +02:00
|
|
|
unsigned long hits;
|
2021-04-13 12:41:34 +02:00
|
|
|
} mbedtls_test_driver_signature_hooks_t;
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
#define MBEDTLS_TEST_DRIVER_SIGNATURE_INIT { NULL, 0, PSA_SUCCESS, 0 }
|
|
|
|
static inline mbedtls_test_driver_signature_hooks_t
|
|
|
|
mbedtls_test_driver_signature_hooks_init( void )
|
2020-09-07 12:58:16 +02:00
|
|
|
{
|
2021-04-13 12:41:34 +02:00
|
|
|
const mbedtls_test_driver_signature_hooks_t
|
|
|
|
v = MBEDTLS_TEST_DRIVER_SIGNATURE_INIT;
|
2020-09-07 12:58:16 +02:00
|
|
|
return( v );
|
|
|
|
}
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
extern mbedtls_test_driver_signature_hooks_t
|
|
|
|
mbedtls_test_driver_signature_sign_hooks;
|
|
|
|
extern mbedtls_test_driver_signature_hooks_t
|
|
|
|
mbedtls_test_driver_signature_verify_hooks;
|
2020-07-17 19:46:15 +02:00
|
|
|
|
2021-04-22 11:32:19 +02:00
|
|
|
psa_status_t mbedtls_test_transparent_signature_sign_message(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *signature,
|
|
|
|
size_t signature_size,
|
|
|
|
size_t *signature_length );
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_signature_sign_message(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
uint8_t *signature,
|
|
|
|
size_t signature_size,
|
|
|
|
size_t *signature_length );
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_transparent_signature_verify_message(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *signature,
|
|
|
|
size_t signature_length );
|
|
|
|
|
|
|
|
psa_status_t mbedtls_test_opaque_signature_verify_message(
|
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key,
|
|
|
|
size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *input,
|
|
|
|
size_t input_length,
|
|
|
|
const uint8_t *signature,
|
|
|
|
size_t signature_length );
|
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
psa_status_t mbedtls_test_transparent_signature_sign_hash(
|
2020-07-16 20:26:18 +02:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key, size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash, size_t hash_length,
|
|
|
|
uint8_t *signature, size_t signature_size, size_t *signature_length );
|
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
psa_status_t mbedtls_test_opaque_signature_sign_hash(
|
2020-07-16 20:26:18 +02:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key, size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash, size_t hash_length,
|
|
|
|
uint8_t *signature, size_t signature_size, size_t *signature_length );
|
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
psa_status_t mbedtls_test_transparent_signature_verify_hash(
|
2020-07-17 19:46:15 +02:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key, size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash, size_t hash_length,
|
|
|
|
const uint8_t *signature, size_t signature_length );
|
|
|
|
|
2021-04-13 12:41:34 +02:00
|
|
|
psa_status_t mbedtls_test_opaque_signature_verify_hash(
|
2020-07-17 19:46:15 +02:00
|
|
|
const psa_key_attributes_t *attributes,
|
|
|
|
const uint8_t *key, size_t key_length,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const uint8_t *hash, size_t hash_length,
|
|
|
|
const uint8_t *signature, size_t signature_length );
|
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
|
|
#endif /* PSA_CRYPTO_TEST_DRIVERS_SIGNATURE_H */
|