⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bf.h

📁 jphs是一个linux系统下可对JPEG图像进行信息隐藏的程序
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -