C ++:如何将std :: string编码为base64而不会丢失NUL字符

时间:2016-06-18 05:28:38

标签: c++ base64 nul

我正在努力让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的兼容性所以我只是评论了它..不确定是否这使得事情变得不起作用,但我对此表示怀疑。完全披露。

1 个答案:

答案 0 :(得分:2)

std::string tmp = "\0";tmp.append("\0");不会向'\0'添加任何tmp个字符。 std::string::stringstd::string::append的{​​{1}}版本采用NUL终止的C风格字符串,因此只要看到NUL字符就会停止。

要在字符串中实际添加NUL字符,您需要使用构造函数和const char*方法,这些方法需要一个长度和append,或者需要计数的版本和const char*

char