Go to the source code of this file.
◆ BF_ENC
#define BF_ENC |
( |
|
LL, |
|
|
|
R, |
|
|
|
S, |
|
|
|
P |
|
) |
| |
Value: LL^=((( S[ (
R>>24
L) ] + \
S[0x0100+((
R>>16
L)&0xff)])^ \
S[0x0200+((
R>> 8
L)&0xff)])+ \
S[0x0300+((
R )&0xff)])&0xffffffff;
Definition at line 99 of file bf_locl.h.
◆ l2n
Value:(*((c)++)=(
unsigned char)(((l)>>24
L)&0xff), \
*((c)++)=(
unsigned char)(((l)>>16
L)&0xff), \
*((c)++)=(
unsigned char)(((l)>> 8
L)&0xff), \
*((c)++)=(unsigned char)(((l) )&0xff))
Definition at line 91 of file bf_locl.h.
◆ n2l
Value:(l =((
unsigned long)(*((c)++)))<<24
L, \
l|=((
unsigned long)(*((c)++)))<<16
L, \
l|=((
unsigned long)(*((c)++)))<< 8
L, \
l|=((unsigned long)(*((c)++))))
Definition at line 85 of file bf_locl.h.