2020-06-03 10:11:18 +02:00
|
|
|
/**
|
|
|
|
* \file helpers.h
|
|
|
|
*
|
|
|
|
* \brief This file contains the prototypes of helper functions for the
|
|
|
|
* purpose of testing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Copyright (C) 2020, ARM Limited, All Rights Reserved
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TEST_HELPERS_H
|
|
|
|
#define TEST_HELPERS_H
|
|
|
|
|
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
|
#include "mbedtls/config.h"
|
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
2020-06-09 16:27:37 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
#define mbedtls_fprintf fprintf
|
|
|
|
#define mbedtls_snprintf snprintf
|
|
|
|
#define mbedtls_calloc calloc
|
|
|
|
#define mbedtls_free free
|
|
|
|
#define mbedtls_exit exit
|
|
|
|
#define mbedtls_time time
|
|
|
|
#define mbedtls_time_t time_t
|
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
|
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-06-08 16:44:58 +02:00
|
|
|
int mbedtls_test_platform_setup( void );
|
|
|
|
void mbedtls_test_platform_teardown( void );
|
2020-06-09 16:27:37 +02:00
|
|
|
|
2020-06-08 17:05:57 +02:00
|
|
|
int mbedtls_test_unhexify( unsigned char *obuf, const char *ibuf );
|
|
|
|
void mbedtls_test_hexify( unsigned char *obuf,
|
|
|
|
const unsigned char *ibuf,
|
|
|
|
int len );
|
2020-06-09 16:27:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate and zeroize a buffer.
|
|
|
|
*
|
|
|
|
* If the size if zero, a pointer to a zeroized 1-byte buffer is returned.
|
|
|
|
*
|
|
|
|
* For convenience, dies if allocation fails.
|
|
|
|
*/
|
2020-06-10 10:42:18 +02:00
|
|
|
unsigned char *mbedtls_test_zero_alloc( size_t len );
|
2020-06-09 16:27:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate and fill a buffer from hex data.
|
|
|
|
*
|
|
|
|
* The buffer is sized exactly as needed. This allows to detect buffer
|
|
|
|
* overruns (including overreads) when running the test suite under valgrind.
|
|
|
|
*
|
|
|
|
* If the size if zero, a pointer to a zeroized 1-byte buffer is returned.
|
|
|
|
*
|
|
|
|
* For convenience, dies if allocation fails.
|
|
|
|
*/
|
2020-06-10 10:53:11 +02:00
|
|
|
unsigned char *mbedtls_test_unhexify_alloc( const char *ibuf, size_t *olen );
|
2020-06-09 16:27:37 +02:00
|
|
|
|
2020-06-10 11:03:08 +02:00
|
|
|
int mbedtls_test_hexcmp( uint8_t * a, uint8_t * b,
|
|
|
|
uint32_t a_len, uint32_t b_len );
|
2020-06-09 16:27:37 +02:00
|
|
|
|
2020-06-03 10:11:18 +02:00
|
|
|
#endif /* TEST_HELPERS_H */
|