netxduo
right_half_bit_swap
is only used within netxduo.
Symbol previews are coming soon...
Symbols
loading (2/7)...
Files
loading (6/7)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
netxduo
right_half_bit_swap
right_half_bit_swap variable
Syntax
Show:
Summary
Declaration
from
nx_crypto_des.c:147
static
const
ULONG
right_half_bit_swap
[
16
]
=
{
0x00000000UL
,
0x01000000UL
,
0x00010000UL
,
0x01010000UL
,
0x00000100UL
,
0x01000100UL
,
0x00010100UL
,
0x01010100UL
,
0x00000001UL
,
0x01000001UL
,
0x00010001UL
,
0x01010001UL
,
0x00000101UL
,
0x01000101UL
,
0x00010101UL
,
0x01010101UL
}
;
Examples
References
from
examples
Code
Location
Referrer
static
const
ULONG
right_half_bit_swap
[
16
]
=
nx_crypto_des.c:147
right
=
(
right_half_bit_swap
[
(
right
>
>
1
)
&
0xf
]
<
<
3
)
|
(
right_half_bit_swap
[
(
right
>
>
9
)
&
0xf
]
<
<
2
)
|
nx_crypto_des.c:233
_nx_crypto_des_key_set()
(
right_half_bit_swap
[
(
right
>
>
17
)
&
0xf
]
<
<
1
)
|
(
right_half_bit_swap
[
(
right
>
>
25
)
&
0xf
]
)
|
nx_crypto_des.c:234
_nx_crypto_des_key_set()
(
right_half_bit_swap
[
(
right
>
>
4
)
&
0xf
]
<
<
7
)
|
(
right_half_bit_swap
[
(
right
>
>
12
)
&
0xf
]
<
<
6
)
|
nx_crypto_des.c:235
_nx_crypto_des_key_set()
(
right_half_bit_swap
[
(
right
>
>
20
)
&
0xf
]
<
<
5
)
|
(
right_half_bit_swap
[
(
right
>
>
28
)
&
0xf
]
<
<
4
)
;
nx_crypto_des.c:236
_nx_crypto_des_key_set()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
right_half_bit_swap
is read by 1 function:
All items filtered out
right_half_bit_swap
_nx_crypto_des_key_set()
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