c++ 加密程序用php怎么写?
程序员文章站
2022-03-16 07:53:24
...
#define C1 34783
#define C2 55419
CString Encrypt(CString S, WORD Key) // 加密函数
{
CString Result,str;
int i,j;
Result=S; // 初始化结果字符串
for(i=0; i>8)); // 将密钥移位后与字符异或
Key = ((BYTE)Result.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
S=Result; // 保存结果
Result.Empty(); // 清除结果
for(i=0; i
这个问题已被关闭,原因:
回复内容:
#define C1 34783
#define C2 55419
CString Encrypt(CString S, WORD Key) // 加密函数
{
CString Result,str;
int i,j;
Result=S; // 初始化结果字符串
for(i=0; i>8)); // 将密钥移位后与字符异或
Key = ((BYTE)Result.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
S=Result; // 保存结果
Result.Empty(); // 清除结果
for(i=0; i
上一篇: PHP连接MySQL数据库并以json格式输出的相关讲解
下一篇: PHP中强制类型转换的示例详解