文本加密和对应的解密

加密:

CString Encrypt(CString S, WORD Key) // 加密函数
{
    CString Result,str;
    int i,j;
    
    Result=S; // 初始化结果字符串
    for(i=0; i// 依次对字符串中各字符进行操作
    {
        Result.SetAt(i, S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
        Key = ((BYTE)Result.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
    }
    S=Result; // 保存结果
    Result.Empty(); // 清除结果
    for(i=0; i// 对加密结果进行转换
    {
        j=(BYTE)S.GetAt(i); // 提取字符
        // 将字符转换为两个字母保存
        str="12"; // 设置str长度为2
        str.SetAt(0, 65+j/26);//这里将65改大点的数例如256,密文就会变乱码,效果更好,相应的,解密处要改为相同的数
        str.SetAt(1, 65+j%26);
        Result += str;
    }
    return Result;
}

解密:

CString Decrypt(CString S, WORD Key) // 解密函数
{
    CString Result,str;
    int i,j;
    
    Result.Empty(); // 清除结果
    for(i=0; i < S.GetLength()/2; i++) // 将字符串两个字母一组进行处理
    {
        j = ((BYTE)S.GetAt(2*i)-65)*26;//相应的,解密处要改为相同的数
        
        j += (BYTE)S.GetAt(2*i+1)-65;
        str="1"; // 设置str长度为1
        str.SetAt(0, j);
        Result+=str; // 追加字符,还原字符串
    }
    S=Result; // 保存中间结果
    for(i=0; i// 依次对字符串中各字符进行操作
    {
        Result.SetAt(i, (BYTE)S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
        Key = ((BYTE)S.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
    }
    return Result;
}

调用:

void CTest28Dlg::OnButton2() 
{ 
CString text=_T("192.168.18.14");//需要加密的字符串
WORD key=1314;//key
CString jiami=Encrypt(text,key);//加密
AfxMessageBox(_T("密文:")+jiami);
CString jiemi=Decrypt(jiami,key);//解密
AfxMessageBox(_T("原文
// TODO: Add your control notification handler code here
}

 

转载于:https://www.cnblogs.com/GodPan/articles/3236783.html

你可能感兴趣的:(文本加密和对应的解密)