fix the includes in auth.h to point at mbdedtls in a relative manner

This commit is contained in:
otavepto 2023-12-25 04:56:09 +02:00
parent 7c4d394c0b
commit 8d9c91b0f2

View File

@ -5,18 +5,12 @@
#define AUTH_INCLUDE #define AUTH_INCLUDE
#include "base.h" #include "base.h"
//#include "common_includes.h" #include "mbedtls/pk.h"
#include <ctime> #include "mbedtls/x509.h"
#include <sstream> #include "mbedtls/error.h"
#include <string> #include "mbedtls/sha1.h"
#include <iostream> #include "mbedtls/entropy.h"
#include "../sha/sha1.hpp" #include "mbedtls/ctr_drbg.h"
#include "../mbedtls/mbedtls/pk.h"
#include "../mbedtls/mbedtls/x509.h"
#include "../mbedtls/mbedtls/error.h"
#include "../mbedtls/mbedtls/sha1.h"
#include "../mbedtls/mbedtls/entropy.h"
#include "../mbedtls/mbedtls/ctr_drbg.h"
// the data type is important, we depend on sizeof() for each one of them // the data type is important, we depend on sizeof() for each one of them