1 #ifndef TC_HEADER_Crypto_Blowfish
2 #define TC_HEADER_Crypto_Blowfish
8 typedef struct BF_KEY_STRUCT
10 unsigned __int32 pbox
[18];
11 unsigned __int32 pbox_dec
[18];
12 unsigned __int32 sbox
[4*256];
15 void BlowfishSetKey (BF_KEY
*key
, int keylength
, unsigned char *key_string
);
16 void BlowfishEncryptLE (unsigned char *in
, unsigned char *out
, BF_KEY
*ks
, int encrypt
);
22 #endif // TC_HEADER_Crypto_Blowfish