Skip to content

Commit 9f49906

Browse files
committed
Make crypto_struct internal
Move crypto_struct.h, which doen't specify the API or ABI of the library, to the internal include folder. These headers should not get distrubuted with our shared library, for example, as they contain implementation details that may change between version of the shared library.
1 parent 5535578 commit 9f49906

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/psa/crypto_struct.h renamed to library/include/crypto_struct.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* \file psa/crypto_struct.h
2+
* \file crypto_struct.h
33
*
44
* \brief PSA cryptography module: Mbed TLS structured type implementations
55
*
@@ -38,7 +38,7 @@
3838
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
3939
* in each of its header files. */
4040
#if !defined(MBEDTLS_CONFIG_FILE)
41-
#include "../mbedtls/config.h"
41+
#include "mbedtls/config.h"
4242
#else
4343
#include MBEDTLS_CONFIG_FILE
4444
#endif

0 commit comments

Comments
 (0)