mbedTLS
GET_UINT32_BE
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
GET_UINT32_BE
GET_UINT32_BE macro
Syntax
Show:
Summary
Declaration
from
esp_sha1.c:50
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
{
\
(
n
)
=
(
(
uint32_t
)
(
b
)
[
(
i
)
]
<
<
24
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
1
]
<
<
16
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
2
]
<
<
8
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
3
]
)
;
\
}
Arguments
Argument
n
b
i
Examples
References
from
examples
Code
Location
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
esp_aes_gcm.c:115
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
esp_sha1.c:50
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
esp_sha256.c:50
GET_UINT32_BE
(
hi
,
h
,
0
)
;
esp_aes_gcm.c:153
GET_UINT32_BE
(
lo
,
h
,
4
)
;
esp_aes_gcm.c:154
GET_UINT32_BE
(
hi
,
h
,
8
)
;
esp_aes_gcm.c:157
GET_UINT32_BE
(
lo
,
h
,
12
)
;
esp_aes_gcm.c:158
GET_UINT32_BE
(
W
[
0
]
,
data
,
0
)
;
esp_sha1.c:128
GET_UINT32_BE
(
W
[
1
]
,
data
,
4
)
;
esp_sha1.c:129
GET_UINT32_BE
(
W
[
2
]
,
data
,
8
)
;
esp_sha1.c:130
GET_UINT32_BE
(
W
[
3
]
,
data
,
12
)
;
esp_sha1.c:131
GET_UINT32_BE
(
W
[
4
]
,
data
,
16
)
;
esp_sha1.c:132
GET_UINT32_BE
(
W
[
5
]
,
data
,
20
)
;
esp_sha1.c:133
GET_UINT32_BE
(
W
[
6
]
,
data
,
24
)
;
esp_sha1.c:134
GET_UINT32_BE
(
W
[
7
]
,
data
,
28
)
;
esp_sha1.c:135
GET_UINT32_BE
(
W
[
8
]
,
data
,
32
)
;
esp_sha1.c:136
GET_UINT32_BE
(
W
[
9
]
,
data
,
36
)
;
esp_sha1.c:137
GET_UINT32_BE
(
W
[
10
]
,
data
,
40
)
;
esp_sha1.c:138
GET_UINT32_BE
(
W
[
11
]
,
data
,
44
)
;
esp_sha1.c:139
GET_UINT32_BE
(
W
[
12
]
,
data
,
48
)
;
esp_sha1.c:140
GET_UINT32_BE
(
W
[
13
]
,
data
,
52
)
;
esp_sha1.c:141
GET_UINT32_BE
(
W
[
14
]
,
data
,
56
)
;
esp_sha1.c:142
GET_UINT32_BE
(
W
[
15
]
,
data
,
60
)
;
esp_sha1.c:143
GET_UINT32_BE
(
W
[
i
]
,
data
,
4
*
i
)
;
esp_sha256.c:208
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out