mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-10 07:36:28 -04:00
Move the definition of data_t to a header file
This way it can be used in helper functions. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
7db8e89da1
commit
34cb462882
@ -58,6 +58,13 @@
|
|||||||
#include "mbedtls/bignum.h"
|
#include "mbedtls/bignum.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** The type of test case arguments that contain binary data. */
|
||||||
|
typedef struct data_tag
|
||||||
|
{
|
||||||
|
uint8_t * x;
|
||||||
|
uint32_t len;
|
||||||
|
} data_t;
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
MBEDTLS_TEST_RESULT_SUCCESS = 0,
|
MBEDTLS_TEST_RESULT_SUCCESS = 0,
|
||||||
|
@ -51,13 +51,6 @@ typedef UINT32 uint32_t;
|
|||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Type for Hex parameters */
|
|
||||||
typedef struct data_tag
|
|
||||||
{
|
|
||||||
uint8_t * x;
|
|
||||||
uint32_t len;
|
|
||||||
} data_t;
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* Status and error constants */
|
/* Status and error constants */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user