c++ - 如何使用 XOR 加密字符串而不包含奇怪的字符?

标签 c++ visual-studio encryption cryptography xor

以下代码工作正常,但我希望加密字符串上不包含奇怪的字符,例如“\x03”。如何实现这一目标?

string XOR_Encryption(string toBeEncrypted, string sKey)
{
    string sEncrypted(toBeEncrypted);
    unsigned int iKey(sKey.length()), iIn(toBeEncrypted.length()), x(0);
    for (unsigned int i = 0; i < iIn; i++)
    {
        sEncrypted[i] = toBeEncrypted[i] ^ sKey[x];
        if (++x == iKey) { x = 0; }
    }
    return sEncrypted;
}

用法:

    string message = "gbpi";
    string Key("Q4s4R4t");

    string encrypted_message = XOR_Encryption(message, Key);
    cout << "encoded: " << encrypted_message << endl;

    string decryptedMessage = XOR_Encryption(encrypted_message, Key);
    cout << "decoded: " << decryptedMessage << endl;

最佳答案

引用suggestion @kelalaka,这是使用十六进制编码的解决方案:

#include "stdafx.h"

#include <stdio.h>
#include <conio.h>
#include <string>
#include <stdlib.h>
#include <iostream>

string XOR_Encryption(string toBeEncrypted, string sKey)
{
    string sEncrypted(toBeEncrypted);
    unsigned int iKey(sKey.length()), iIn(toBeEncrypted.length()), x(0);
    for (unsigned int i = 0; i < iIn; i++)
    {
        sEncrypted[i] = toBeEncrypted[i] ^ sKey[x];
        if (++x == iKey) { x = 0; }
    }
    return sEncrypted;
}

void stream2hex(const string str, string& hexstr, bool capital = false)
{
    hexstr.resize(str.size() * 2);
    const size_t a = capital ? 'A' - 1 : 'a' - 1;

    for (size_t i = 0, c = str[0] & 0xFF; i < hexstr.size(); c = str[i / 2] & 0xFF)
    {
        hexstr[i++] = c > 0x9F ? (c / 16 - 9) | a : c / 16 | '0';
        hexstr[i++] = (c & 0xF) > 9 ? (c % 16 - 9) | a : c % 16 | '0';
    }
}

void hex2stream(const string hexstr, string& str)
{
    str.resize((hexstr.size() + 1) / 2);

    for (size_t i = 0, j = 0; i < str.size(); i++, j++)
    {
        str[i] = (hexstr[j] & '@' ? hexstr[j] + 9 : hexstr[j]) << 4, j++;
        str[i] |= (hexstr[j] & '@' ? hexstr[j] + 9 : hexstr[j]) & 0xF;
    }
}

int _tmain(int argc, _TCHAR* argv[])
{
    string text = "text";
    string Key("password");

    string encrypted_message = XOR_Encryption(text, Key);
    stream2hex(encrypted_message, encrypted_message, true);
    cout << "encoded: " << encrypted_message << endl;

    hex2stream(encrypted_message, encrypted_message);
    string decryptedMessage = XOR_Encryption(encrypted_message, Key);
    cout << "decoded: " << decryptedMessage << endl;

   getch();

   return 0;
}

关于c++ - 如何使用 XOR 加密字符串而不包含奇怪的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60686526/

相关文章:

visual-studio - 为什么 MSBuild 将 .tlog 文件生成到 CMakeFiles/CompilerIdC 中,我该如何让它停止?

java - 处理 Java 加密异常

c++ - 如何从 lambda 推导出返回类型?

.NET Core 发布 appsettings.json

c++ - 如何在 OpenCV 中查找图像中的轮廓?

c# - 查找在 Visual Studio 或单元测试中未使用 await 的异步用法

c - Arduino AES128加密-解密问题

.net - 大写字母加密,无特殊字符

C++ 从文件 I/O 解析数据

c++ - 需要帮助运算符重载以便我可以显示函数