We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea5d0d commit 2533c83Copy full SHA for 2533c83
source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.h
@@ -25,9 +25,18 @@
25
* @brief Helper functions originating from mbedTLS.
26
*/
27
28
+#ifndef _MBEDTLS_UTILS_H_
29
+#define _MBEDTLS_UTILS_H_
30
+
31
/* Standard includes. */
32
#include <string.h>
33
34
+/* *INDENT-OFF* */
35
+#ifdef __cplusplus
36
+ extern "C" {
37
+#endif
38
+/* *INDENT-ON* */
39
40
/*-----------------------------------------------------------*/
41
42
/**
@@ -71,3 +80,11 @@ int convert_pem_to_der( const unsigned char * pucInput,
71
80
int PKI_RSA_RSASSA_PKCS1_v15_Encode( const unsigned char * hash,
72
81
size_t dst_len,
73
82
unsigned char * dst );
83
84
85
86
+ }
87
88
89
90
+#endif /* ifndef _MBEDTLS_UTILS_H_ */
0 commit comments