35 lines
571 B
C
35 lines
571 B
C
#ifndef ROMprot_HEADERS_SEEN
|
|
//check header file for re-def conflicts
|
|
|
|
#define ROMprot_HEADERS_SEEN
|
|
|
|
|
|
#include "KeyGen.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "mbedtls/aes.h"
|
|
#include "mbedtls/bignum.h"
|
|
#include "mbedtls/entropy.h"
|
|
#include "mbedtls/ctr_drbg.h"
|
|
#include "mbedtls/hmac_drbg.h"
|
|
#include "mbedtls/ecdh.h"
|
|
#include "mbedtls/ecdsa.h"
|
|
#include "mbedtls/ecp.h"
|
|
#include "mbedtls/rsa.h"
|
|
#include "mbedtls/sha256.h"
|
|
#include "mbedtls/hkdf.h"
|
|
#include "mbedtls/pk.h"
|
|
|
|
|
|
|
|
|
|
DIMASTATUS ROMprotocol(void);
|
|
|
|
|
|
|
|
|
|
#endif |