netxduo
NX_CRYPTO_GCM_BLOCK_SIZE
is only used within netxduo.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
netxduo
NX_CRYPTO_GCM_BLOCK_SIZE
NX_CRYPTO_GCM_BLOCK_SIZE macro
Syntax
Show:
Summary
Declaration
from
nx_crypto_gcm.h:66
#define
NX_CRYPTO_GCM_BLOCK_SIZE
16
Examples
References
from
examples
Code
Location
#define
NX_CRYPTO_GCM_BLOCK_SIZE
16
nx_crypto_gcm.h:66
UCHAR
v
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:206
NX_CRYPTO_MEMSET
(
output
,
0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:210
NX_CRYPTO_MEMCPY
(
v
,
y
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
/* Use case of memcpy is verified. */
nx_crypto_gcm.c:211
j
=
NX_CRYPTO_GCM_BLOCK_SIZE
-
1
;
nx_crypto_gcm.c:224
UCHAR
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:296
input
+=
NX_CRYPTO_GCM_BLOCK_SIZE
;
nx_crypto_gcm.c:306
UCHAR
aes_output
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:373
crypto_function
(
crypto_metadata
,
counter_block
,
aes_output
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:382
input
+=
NX_CRYPTO_GCM_BLOCK_SIZE
;
nx_crypto_gcm.c:390
output
+=
NX_CRYPTO_GCM_BLOCK_SIZE
;
nx_crypto_gcm.c:391
crypto_function
(
crypto_metadata
,
counter_block
,
aes_output
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:397
UCHAR
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:467
if
(
block_size
!=
NX_CRYPTO_GCM_BLOCK_SIZE
)
nx_crypto_gcm.c:471
NX_CRYPTO_MEMSET
(
hkey
,
0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:477
crypto_function
(
crypto_metadata
,
hkey
,
hkey
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:478
if
(
iv_len
==
NX_CRYPTO_GCM_BLOCK_SIZE
-
4
)
nx_crypto_gcm.c:483
NX_CRYPTO_MEMSET
(
j0
,
0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:498
NX_CRYPTO_MEMSET
(
tmp_block
,
0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:502
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
-
2
]
=
(
UCHAR
)
(
(
(
iv_len
<
<
3
)
&
0xFF00
)
>
>
8
)
;
nx_crypto_gcm.c:503
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
-
1
]
=
(
UCHAR
)
(
(
iv_len
<
<
3
)
&
0x00FF
)
;
nx_crypto_gcm.c:504
_nx_crypto_gcm_ghash_update
(
hkey
,
tmp_block
,
NX_CRYPTO_GCM_BLOCK_SIZE
,
j0
)
;
nx_crypto_gcm.c:505
NX_CRYPTO_MEMSET
(
s
,
0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
nx_crypto_gcm.c:509
NX_CRYPTO_MEMCPY
(
counter
,
j0
,
NX_CRYPTO_GCM_BLOCK_SIZE
)
;
/* Use case of memcpy is verified. */
nx_crypto_gcm.c:513
if
(
block_size
!=
NX_CRYPTO_GCM_BLOCK_SIZE
)
nx_crypto_gcm.c:582
UCHAR
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:651
if
(
block_size
!=
NX_CRYPTO_GCM_BLOCK_SIZE
)
nx_crypto_gcm.c:656
_nx_crypto_gcm_ghash_update
(
hkey
,
tmp_block
,
NX_CRYPTO_GCM_BLOCK_SIZE
,
s
)
;
nx_crypto_gcm.c:679
_nx_crypto_gcm_gctr
(
crypto_metadata
,
crypto_function
,
s
,
s
,
NX_CRYPTO_GCM_BLOCK_SIZE
,
j0
)
;
nx_crypto_gcm.c:683
if
(
block_size
!=
NX_CRYPTO_GCM_BLOCK_SIZE
)
nx_crypto_gcm.c:751
UCHAR
tmp_block
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.c:819
if
(
block_size
!=
NX_CRYPTO_GCM_BLOCK_SIZE
)
nx_crypto_gcm.c:825
_nx_crypto_gcm_ghash_update
(
hkey
,
tmp_block
,
NX_CRYPTO_GCM_BLOCK_SIZE
,
s
)
;
nx_crypto_gcm.c:848
_nx_crypto_gcm_gctr
(
crypto_metadata
,
crypto_function
,
s
,
s
,
NX_CRYPTO_GCM_BLOCK_SIZE
,
j0
)
;
nx_crypto_gcm.c:856
UCHAR
nx_crypto_gcm_hkey
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.h:78
UCHAR
nx_crypto_gcm_j0
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.h:79
UCHAR
nx_crypto_gcm_s
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.h:80
UCHAR
nx_crypto_gcm_counter
[
NX_CRYPTO_GCM_BLOCK_SIZE
]
;
nx_crypto_gcm.h:81
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