Include fixups (headers moves to private directory)
Signed-off-by: Anton Matkin <anton.matkin@arm.com>
diff --git a/include/mbedtls/debug.h b/include/mbedtls/debug.h
index b6d4e27..c293e87 100644
--- a/include/mbedtls/debug.h
+++ b/include/mbedtls/debug.h
@@ -15,7 +15,7 @@
#include "mbedtls/ssl.h"
#if defined(MBEDTLS_ECP_C)
-#include "mbedtls/ecp.h"
+#include "mbedtls/private/ecp.h"
#endif
#if defined(MBEDTLS_DEBUG_C)
diff --git a/include/mbedtls/error.h b/include/mbedtls/error.h
index 7abb00f..ee3d093 100644
--- a/include/mbedtls/error.h
+++ b/include/mbedtls/error.h
@@ -11,7 +11,7 @@
#define MBEDTLS_ERROR_H
#include "mbedtls/build_info.h"
-#include "mbedtls/error_common.h"
+#include "mbedtls/private/error_common.h"
#include <stddef.h>
diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index 628d5c7..36132c3 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -14,8 +14,8 @@
#include "mbedtls/build_info.h"
-#include "mbedtls/bignum.h"
-#include "mbedtls/ecp.h"
+#include "mbedtls/private/bignum.h"
+#include "mbedtls/private/ecp.h"
#include "mbedtls/ssl_ciphersuites.h"
@@ -27,7 +27,7 @@
#include "mbedtls/md.h"
#if defined(MBEDTLS_KEY_EXCHANGE_SOME_ECDH_OR_ECDHE_ANY_ENABLED)
-#include "mbedtls/ecdh.h"
+#include "mbedtls/private/ecdh.h"
#endif
#if defined(MBEDTLS_HAVE_TIME)
diff --git a/include/mbedtls/ssl_ciphersuites.h b/include/mbedtls/ssl_ciphersuites.h
index b031231..c97f6ab 100644
--- a/include/mbedtls/ssl_ciphersuites.h
+++ b/include/mbedtls/ssl_ciphersuites.h
@@ -14,7 +14,7 @@
#include "mbedtls/build_info.h"
#include "mbedtls/pk.h"
-#include "mbedtls/cipher.h"
+#include "mbedtls/private/cipher.h"
#include "mbedtls/md.h"
#ifdef __cplusplus
diff --git a/include/mbedtls/x509.h b/include/mbedtls/x509.h
index b1a80e3..f0742a8 100644
--- a/include/mbedtls/x509.h
+++ b/include/mbedtls/x509.h
@@ -17,7 +17,7 @@
#include "mbedtls/pk.h"
#if defined(MBEDTLS_RSA_C)
-#include "mbedtls/rsa.h"
+#include "mbedtls/private/rsa.h"
#endif
/**
diff --git a/include/mbedtls/x509_crt.h b/include/mbedtls/x509_crt.h
index bbe5fc4..a7bf029 100644
--- a/include/mbedtls/x509_crt.h
+++ b/include/mbedtls/x509_crt.h
@@ -15,7 +15,7 @@
#include "mbedtls/x509.h"
#include "mbedtls/x509_crl.h"
-#include "mbedtls/bignum.h"
+#include "mbedtls/private/bignum.h"
/**
* \addtogroup x509_module