bf.h

来自「JPHide 和JPSeek 的源代码!JPHide&JPSeek是一个JPEG」· C头文件 代码 · 共 21 行

H
21
字号
/* The data block processed by the encryption algorithm - 64 bits */typedef unsigned long Blowfish_Data[2];/* The key as entered by the user - size may vary */typedef char Blowfish_UserKey[16];/* The expanded key for internal use - 18+4*256 words*/typedef unsigned long Blowfish_Key[1042];#ifdef Strict_Type_Checkextern void Blowfish_Encrypt(Blowfish_Data dataIn, Blowfish_Data dataOut,			     Blowfish_Key key);extern void Blowfish_Decrypt(Blowfish_Data dataIn, Blowfish_Data dataOut,			     Blowfish_Key key);extern void Blowfish_ExpandUserKey(Blowfish_UserKey userKey, int userKeyLen,				   Blowfish_Key key);#elseextern void Blowfish_Encrypt(void *dataIn, void *dataOut, void *key);extern void Blowfish_Decrypt(void *dataIn, void *dataOut, void *key);extern void Blowfish_ExpandUserKey(void *userKey, int userKeyLen, void *key);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?