netxduo
NX_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_MD5_STRUCT::nx_md5_states
NX_MD5_STRUCT::nx_md5_states field
Syntax
Show:
Summary
Declaration
from
nx_md5.h:93
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_md5.h:93
context
->
nx_md5_states
[
0
]
=
0x67452301UL
;
/* Setup state A */
nx_md5.c:147
_nx_md5_initialize()
context
->
nx_md5_states
[
1
]
=
0xEFCDAB89UL
;
/* Setup state B */
nx_md5.c:148
_nx_md5_initialize()
context
->
nx_md5_states
[
2
]
=
0x98BADCFEUL
;
/* Setup state C */
nx_md5.c:149
_nx_md5_initialize()
context
->
nx_md5_states
[
3
]
=
0x10325476UL
;
/* Setup state D */
nx_md5.c:150
_nx_md5_initialize()
digest
[
0
]
=
(
UCHAR
)
context
->
nx_md5_states
[
0
]
;
nx_md5.c:358
_nx_md5_digest_calculate()
digest
[
1
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
8
)
;
nx_md5.c:359
_nx_md5_digest_calculate()
digest
[
2
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
16
)
;
nx_md5.c:360
_nx_md5_digest_calculate()
digest
[
3
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
0
]
>
>
24
)
;
nx_md5.c:361
_nx_md5_digest_calculate()
digest
[
4
]
=
(
UCHAR
)
context
->
nx_md5_states
[
1
]
;
nx_md5.c:362
_nx_md5_digest_calculate()
digest
[
5
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
8
)
;
nx_md5.c:363
_nx_md5_digest_calculate()
digest
[
6
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
16
)
;
nx_md5.c:364
_nx_md5_digest_calculate()
digest
[
7
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
1
]
>
>
24
)
;
nx_md5.c:365
_nx_md5_digest_calculate()
digest
[
8
]
=
(
UCHAR
)
context
->
nx_md5_states
[
2
]
;
nx_md5.c:366
_nx_md5_digest_calculate()
digest
[
9
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
8
)
;
nx_md5.c:367
_nx_md5_digest_calculate()
digest
[
10
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
16
)
;
nx_md5.c:368
_nx_md5_digest_calculate()
digest
[
11
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
2
]
>
>
24
)
;
nx_md5.c:369
_nx_md5_digest_calculate()
digest
[
12
]
=
(
UCHAR
)
context
->
nx_md5_states
[
3
]
;
nx_md5.c:370
_nx_md5_digest_calculate()
digest
[
13
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
8
)
;
nx_md5.c:371
_nx_md5_digest_calculate()
digest
[
14
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
16
)
;
nx_md5.c:372
_nx_md5_digest_calculate()
digest
[
15
]
=
(
UCHAR
)
(
context
->
nx_md5_states
[
3
]
>
>
24
)
;
nx_md5.c:373
_nx_md5_digest_calculate()
a
=
context
->
nx_md5_states
[
0
]
;
nx_md5.c:431
_nx_md5_process_buffer()
b
=
context
->
nx_md5_states
[
1
]
;
nx_md5.c:432
_nx_md5_process_buffer()
c
=
context
->
nx_md5_states
[
2
]
;
nx_md5.c:433
_nx_md5_process_buffer()
d
=
context
->
nx_md5_states
[
3
]
;
nx_md5.c:434
_nx_md5_process_buffer()
context
->
nx_md5_states
[
0
]
+=
a
;
nx_md5.c:521
_nx_md5_process_buffer()
context
->
nx_md5_states
[
1
]
+=
b
;
nx_md5.c:522
_nx_md5_process_buffer()
context
->
nx_md5_states
[
2
]
+=
c
;
nx_md5.c:523
_nx_md5_process_buffer()
context
->
nx_md5_states
[
3
]
+=
d
;
nx_md5.c:524
_nx_md5_process_buffer()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_MD5_STRUCT::nx_md5_states
is read by 3 functions:
All items filtered out
NX_MD5_STRUCT::nx_md5_states
_nx_md5_initialize()
_nx_md5_digest_calculate()
_nx_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