File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 39
39
40
40
#ifdef INCLUDE_MBEDTLS
41
41
42
+ #ifndef MBEDTLS_GET_UINT32_BE
43
+ // including it here as it is defined only for private use in the mbedTLS sources
44
+ #define MBEDTLS_GET_UINT32_BE ( data , offset ) \
45
+ ( \
46
+ ( (uint32_t) ( data )[( offset ) ] << 24 ) \
47
+ | ( (uint32_t) ( data )[( offset ) + 1] << 16 ) \
48
+ | ( (uint32_t) ( data )[( offset ) + 2] << 8 ) \
49
+ | ( (uint32_t) ( data )[( offset ) + 3] ) \
50
+ )
51
+ #endif
52
+
42
53
43
54
/***********************************************************************
44
55
**
Original file line number Diff line number Diff line change 26
26
***********************************************************************/
27
27
28
28
#include "sys-core.h"
29
- #include "mbedtls/common.h"
30
29
#include "mbedtls/rsa.h"
31
30
#include "mbedtls/dhm.h"
32
31
#include "mbedtls/bignum.h"
You can’t perform that action at this time.
0 commit comments