gpt4 book ai didi

C++:如何在不丢失 NUL 字符的情况下将 std::string 编码为 base64

转载 作者:行者123 更新时间:2023-11-30 03:40:37 28 4
gpt4 key购买 nike

我正在努力获取 someone else's code启动并运行。代码是用 C++ 编写的。失败的部分是将 std::string 转换为 base64:

std::string tmp = "\0";
tmp.append(strUserName);
tmp.append("\0");
tmp.append(strPassword);
tmp = base64_encode(tmp.c_str(), tmp.length());

其中 base64 是:

std::string base64_encode(char const* bytes_to_encode, unsigned int in_len) {
std::string ret;
int i = 0;
int j = 0;
unsigned char char_array_3[3];
unsigned char char_array_4[4];

while (in_len--) {
char_array_3[i++] = *(bytes_to_encode++);
if (i == 3) {
char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
char_array_4[3] = char_array_3[2] & 0x3f;

for(i = 0; (i <4) ; i++)
ret += base64_chars[char_array_4[i]];
i = 0;
}
}

if (i)
{
for(j = i; j < 3; j++)
char_array_3[j] = '\0';

char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
char_array_4[3] = char_array_3[2] & 0x3f;

for (j = 0; (j < i + 1); j++)
ret += base64_chars[char_array_4[j]];

while((i++ < 3))
ret += '=';

}

return ret;

}

它使用“tmp”字符串来调用服务器,并且必须在 base64 字符串中嵌入两个 NUL 字符(在 strUserName 之前和 strPassword 之前)。然而,似乎由于代码将 tmp 作为 c_str() 传递,NUL 字符被剥离。对此有好的解决方案吗?谢谢。

更新 我想我应该补充一点,代码包括“#include <asm/errno.h>”,我用谷歌搜索并没有找到与 macOS 的兼容性,所以我只是把它注释掉了。不确定那是不是使事情不起作用,但我对此表示怀疑。全面披露。

最佳答案

std::string tmp = "\0";tmp.append("\0"); 不要添加任何 '\0 ' 个字符到 tmp。采用 const char*std::string::stringstd::string::append 版本采用 NUL 终止C 风格的字符串,所以他们一看到 NUL 字符就停止。

要实际将 NUL 字符添加到您的字符串中,您需要使用构造函数和 append 方法,它们需要一个长度以及一个 const char*,或者需要计数和 char 的版本:

std::string tmp("\0", 1);
tmp.append(strUserName);
tmp.append("\0", 1);
tmp.append(strPassword);
tmp = base64_encode(tmp.c_str(), tmp.length());

关于C++:如何在不丢失 NUL 字符的情况下将 std::string 编码为 base64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37893573/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com