3 * E-mail : pck@netcom.com
5 * Description: C implementation of the Blowfish algorithm.
13 unsigned int P
[16 + 2];
14 unsigned int S
[4*256];
17 void Blowfish_Init(BLOWFISH_CTX
*ctx
, unsigned char *key
, int keyLen
);
18 void Blowfish_Encrypt(BLOWFISH_CTX
*ctx
, unsigned int *xl
, unsigned int *xr
);
19 void Blowfish_Decrypt(BLOWFISH_CTX
*ctx
, unsigned int *xl
, unsigned int *xr
);