我正在尝试计算字符串iEk21fuwZApXlz93750dmW22pw389dPwOkm198sOkJEn37DjqZ32lpRu76xmw288xSQ9
的SHA256哈希
当我运行C++代码时,我得到的字符串甚至不是有效的SHA256哈希。但是,当我运行echo -n iEk21fuwZApXlz93750dmW22pw389dPwOkm198sOkJEn37DjqZ32lpRu76xmw288xSQ9 | openssl sha256
时,我得到了正确的哈希值。这是我的C++代码:
#include <iostream>
#include <time.h>
#include <sstream>
#include <string>
#include <iomanip>
#include <typeinfo>
#include <openssl/sha.h>
#include <cstdio>
#include <cstring>
std::string hash256(std::string string) {
unsigned char digest[SHA256_DIGEST_LENGTH];
SHA256_CTX ctx;
SHA256_Init(&ctx);
SHA256_Update(&ctx, string.c_str(), std::strlen(string.c_str()));
SHA256_Final(digest, &ctx);
char mdString[SHA256_DIGEST_LENGTH*2+1];
for (int i = 0; i < SHA256_DIGEST_LENGTH; i++)
std::sprintf(&mdString[i*2], "%02x", (unsigned int)digest[i]);
return std::string(mdString);
}
int main(int argc, char *argv[])
{
const char *hash = hash256("iEk21fuwZApXlz93750dmW22pw389dPwOkm198sOkJEn37DjqZ32lpRu76xmw288xSQ9").c_str();
std::cout << hash << std::endl;
return 0;
}
需要注意的另一件事:当我在在线编译器(例如Coliru)中运行代码时,我得到了正确的哈希值。我正在使用OpenSSL版本
OpenSSL 1.0.1g 7 Apr 2014
在Cygwin上使用G++进行编译 最佳答案
正如@Alan Stokes指出的,由于对字符串内部结构的悬挂引用,您具有 undefined 的行为。在main中更改hash
的声明:
std::string hash = hash256("...");
关于c++ - C++ SHA256与命令行SHA256不同,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23982425/