netxduo
NX_CRYPTO_MD5_STRUCT::nx_md5_states
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_MD5_STRUCT::nx_md5_states
NX_CRYPTO_MD5_STRUCT::nx_md5_states field
Syntax
Show:
Summary
Declaration
from
nx_crypto_md5.h:102
ULONG
nx_md5_states
[
4
]
;
Examples
References
from
examples
Code
Location
Referrer
ULONG
nx_md5_states
[
4
]
;
/* Contains each state (A,B,C,D) */
nx_crypto_md5.h:102
context
->
nx_md5_states
[
0
]
=
0x67452301UL
;
/* Setup state A */
nx_crypto_md5.c:153
_nx_crypto_md5_initialize()
context
->
nx_md5_states
[
1
]
=
0xEFCDAB89UL
;
/* Setup state B */
nx_crypto_md5.c:154
_nx_crypto_md5_initialize()
context
->
nx_md5_states
[
2
]
=
0x98BADCFEUL
;
/* Setup state C */
nx_crypto_md5.c:155
_nx_crypto_md5_initialize()
context
->
nx_md5_states
[
3
]
=
0x10325476UL
;
/* Setup state D */
nx_crypto_md5.c:156
_nx_crypto_md5_initialize()
digest
[
0
]
=
(
UCHAR
)
context
->
nx_md5_states
[
0
]
;
nx_crypto_md5.c:371
_nx_crypto_md5_digest_calculate()
digest
[
1
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
8
)
;
nx_crypto_md5.c:372
_nx_crypto_md5_digest_calculate()
digest
[
2
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
16
)
;
nx_crypto_md5.c:373
_nx_crypto_md5_digest_calculate()
digest
[
3
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
24
)
;
nx_crypto_md5.c:374
_nx_crypto_md5_digest_calculate()
digest
[
4
]
=
(
UCHAR
)
context
->
nx_md5_states
[
1
]
;
nx_crypto_md5.c:375
_nx_crypto_md5_digest_calculate()
digest
[
5
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
8
)
;
nx_crypto_md5.c:376
_nx_crypto_md5_digest_calculate()
digest
[
6
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
16
)
;
nx_crypto_md5.c:377
_nx_crypto_md5_digest_calculate()
digest
[
7
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
24
)
;
nx_crypto_md5.c:378
_nx_crypto_md5_digest_calculate()
digest
[
8
]
=
(
UCHAR
)
context
->
nx_md5_states
[
2
]
;
nx_crypto_md5.c:379
_nx_crypto_md5_digest_calculate()
digest
[
9
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
8
)
;
nx_crypto_md5.c:380
_nx_crypto_md5_digest_calculate()
digest
[
10
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
16
)
;
nx_crypto_md5.c:381
_nx_crypto_md5_digest_calculate()
digest
[
11
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
24
)
;
nx_crypto_md5.c:382
_nx_crypto_md5_digest_calculate()
digest
[
12
]
=
(
UCHAR
)
context
->
nx_md5_states
[
3
]
;
nx_crypto_md5.c:383
_nx_crypto_md5_digest_calculate()
digest
[
13
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
8
)
;
nx_crypto_md5.c:384
_nx_crypto_md5_digest_calculate()
digest
[
14
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
16
)
;
nx_crypto_md5.c:385
_nx_crypto_md5_digest_calculate()
digest
[
15
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
24
)
;
nx_crypto_md5.c:386
_nx_crypto_md5_digest_calculate()
a
=
context
->
nx_md5_states
[
0
]
;
nx_crypto_md5.c:448
_nx_crypto_md5_process_buffer()
b
=
context
->
nx_md5_states
[
1
]
;
nx_crypto_md5.c:449
_nx_crypto_md5_process_buffer()
c
=
context
->
nx_md5_states
[
2
]
;
nx_crypto_md5.c:450
_nx_crypto_md5_process_buffer()
d
=
context
->
nx_md5_states
[
3
]
;
nx_crypto_md5.c:451
_nx_crypto_md5_process_buffer()
context
->
nx_md5_states
[
0
]
+=
a
;
nx_crypto_md5.c:538
_nx_crypto_md5_process_buffer()
context
->
nx_md5_states
[
1
]
+=
b
;
nx_crypto_md5.c:539
_nx_crypto_md5_process_buffer()
context
->
nx_md5_states
[
2
]
+=
c
;
nx_crypto_md5.c:540
_nx_crypto_md5_process_buffer()
context
->
nx_md5_states
[
3
]
+=
d
;
nx_crypto_md5.c:541
_nx_crypto_md5_process_buffer()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_CRYPTO_MD5_STRUCT::nx_md5_states
is read by 3 functions:
All items filtered out
NX_CRYPTO_MD5_STRUCT::nx_md5_states
_nx_crypto_md5_initialize()
_nx_crypto_md5_digest_calculate()
_nx_crypto_md5_process_buffer()
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