C++如何将无符号字符数组转换为字符串?

C++ how to convert unsigned char array to string?

本文关键字:转换 字符串 数组 字符 无符号 C++      更新时间:2023-10-16

我正在测试一段执行二进制文件的哈希操作(sha256(的代码,我有这样的东西:

for(i = 0; i < SHA256_DIGEST_LENGTH; i++) printf("%02x", c[i]);

这将打印如下内容:

12b64492d18aa37d609f27cb02ce5ba381068d1ef5625193df68451c650a2b8d

我问我该怎么做才能将下面显示的字符串放入 C++ 中的字符串变量中。

谢谢

#include <iomanip>
#include <sstream>
#include <string>
std::ostringstream oss;
for(int i = 0; i < SHA256_DIGEST_LENGTH; ++i) 
{
oss << std::hex << std::setw(2) << std::setfill('0') << +c[i];
}
auto str = oss.str();

要打印出十六进制值,可以使用std::hex格式; 要设置宽度和填充字符,请使用std::setwstd::setfill,它们是<iomanip>的一部分。 由于您不显示c的数据类型,因此我想/建议使用无符号整数类型,例如unsigned char.我稍微调整了代码以使其自包含(:

#define SHA256_DIGEST_LENGTH 256
#include <iostream>
#include <sstream>
#include <iomanip>
int main() {
unsigned char c[SHA256_DIGEST_LENGTH];
for (unsigned int i=0; i<SHA256_DIGEST_LENGTH; i++)
c[i]=i;
std::stringstream ss;
for(int i = 0; i < SHA256_DIGEST_LENGTH; i++) {
ss << std::hex << std::setw(2) << std::setfill('0') << (unsigned int)c[i];
}
std::cout << ss.str();
}

输出:

000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff

只是为了比较,这是sprintf版本:

#include <stdio.h>
#include <string>
std::string ss;
ss.resize(SHA256_DIGEST_LENGTH * 2 + 1); // includes space for terminating NUL
int used = 0;
for(int i = 0; i < SHA256_DIGEST_LENGTH; i++)
used += sprintf(&ss[used], "%02x", c[i]);
ss.resize(used);

请注意,最初使缓冲区大于必要的大小并没有什么坏处,因为使用了最终的确切大小,但如果缓冲区可能太小,则必须使用snprintf并传递剩余的缓冲区空间 (ss.size() - used(。