2010-02-14 365 views
49

我正在尋找使用openssl和C++創建sha256的哈希。我知道在Generate SHA hash in C++ using OpenSSL library有類似的帖子,但我正在尋找專門創建sha256。使用OpenSSL和C++生成sha256

更新:

似乎是包含路徑的問題。它不能找到任何OpenSSL的功能,即使我包括

#include "openssl/sha.h" 

,我包括在我的構建路徑

-I/opt/ssl/include/ -L/opt/ssl/lib/ -lcrypto 
+0

此外,作爲獎勵,它會很好,如果它會輸出在二進制散列:) –

+1

我發佈了一個新的答案,那裏解釋你想要什麼。如果答案有幫助,您可以將此問題視爲重複。 – AndiDog

+0

@AndiDog - 除了編譯器找不到函數外,一切似乎都正常工作。它甚至找不到對SHA1的引用。也沒有找到像SHA256_Final這樣的SHA256功能。不知道我在做什麼錯誤,我包含了 #include「openssl/sha.h」,並且我在編譯過程中包含了include和庫文件 -I/opt/ssl/include/-L/opt/ssl/lib/-lcrypto –

回答

58

我是這樣做的:

void sha256(char *string, char outputBuffer[65]) 
{ 
    unsigned char hash[SHA256_DIGEST_LENGTH]; 
    SHA256_CTX sha256; 
    SHA256_Init(&sha256); 
    SHA256_Update(&sha256, string, strlen(string)); 
    SHA256_Final(hash, &sha256); 
    int i = 0; 
    for(i = 0; i < SHA256_DIGEST_LENGTH; i++) 
    { 
     sprintf(outputBuffer + (i * 2), "%02x", hash[i]); 
    } 
    outputBuffer[64] = 0; 
} 

int sha256_file(char *path, char outputBuffer[65]) 
{ 
    FILE *file = fopen(path, "rb"); 
    if(!file) return -534; 

    byte hash[SHA256_DIGEST_LENGTH]; 
    SHA256_CTX sha256; 
    SHA256_Init(&sha256); 
    const int bufSize = 32768; 
    byte *buffer = malloc(bufSize); 
    int bytesRead = 0; 
    if(!buffer) return ENOMEM; 
    while((bytesRead = fread(buffer, 1, bufSize, file))) 
    { 
     SHA256_Update(&sha256, buffer, bytesRead); 
    } 
    SHA256_Final(hash, &sha256); 

    sha256_hash_string(hash, outputBuffer); 
    fclose(file); 
    free(buffer); 
    return 0; 
} 

這公司的C alled這樣的:

static unsigned char buffer[65]; 
sha256("string", buffer); 
printf("%s\n", buffer); 
+1

嗨,對於使用QT的大家:) - 您也可以使用這個,只需添加到你的項目文件'LIBS + = - lcrypto',然後你可以將代碼轉換爲類,一切都會正常工作) – TCB13

+3

-1:「SHA1_Init(),SHA1_Update()和SHA1_Final()返回1爲成功,0否則。「,http://www.openssl.org/docs/crypto/sha.htm。 – jww

+0

@noloader不相關,因爲這裏不使用這些函數。 –

1

我認爲,你只有用tatk代碼SHA256功能,以取代SHA1功能從您的文章鏈接

2

更 「C++」 肥胖型版本

#include <iostream> 
#include <sstream> 

#include "openssl/sha.h" 

using namespace std; 

string to_hex(unsigned char s) { 
    stringstream ss; 
    ss << hex << (int) s; 
    return ss.str(); 
} 

string sha256(string line) {  
    unsigned char hash[SHA256_DIGEST_LENGTH]; 
    SHA256_CTX sha256; 
    SHA256_Init(&sha256); 
    SHA256_Update(&sha256, line.c_str(), line.length()); 
    SHA256_Final(hash, &sha256); 

    string output = "";  
    for(int i = 0; i < SHA256_DIGEST_LENGTH; i++) { 
     output += to_hex(hash[i]); 
    } 
    return output; 
} 

int main() { 
    cout << sha256("hello, world") << endl; 

    return 0; 
} 
+1

-1:「SHA1_Init(),SHA1_Update()和SHA1_Final()返回1表示成功,否則表示0。「,openssl.org/docs/crypto/sha.htm。 – jww

+3

不想用C風格的返回值檢查來遮蔽代碼。 DIY如果你在乎 – Max

+9

「DIY如果你在乎」 - 抱歉給你帶來不便。人們會盲目地複製/粘貼它。忽略返回值是一種危險的做法,不應該被證明(特別是在高完整性代碼中)。 – jww

30

基於STD

#include <iostream> 
#include <iomanip> 
#include <sstream> 
#include <string> 

using namespace std; 

#include <openssl/sha.h> 
string sha256(const string str) 
{ 
    unsigned char hash[SHA256_DIGEST_LENGTH]; 
    SHA256_CTX sha256; 
    SHA256_Init(&sha256); 
    SHA256_Update(&sha256, str.c_str(), str.size()); 
    SHA256_Final(hash, &sha256); 
    stringstream ss; 
    for(int i = 0; i < SHA256_DIGEST_LENGTH; i++) 
    { 
     ss << hex << setw(2) << setfill('0') << (int)hash[i]; 
    } 
    return ss.str(); 
} 

int main() { 
    cout << sha256("1234567890_1") << endl; 
    cout << sha256("1234567890_2") << endl; 
    cout << sha256("1234567890_3") << endl; 
    cout << sha256("1234567890_4") << endl; 
    return 0; 
} 
+3

還沒有測試過,但是這絕對比所有其他「C++」版本更清晰。 –

+4

該代碼編譯並生成了預期的輸出。在Ubuntu上,你可以使用:sudo apt-get install libssl-dev && g ++ -lcrypto main.cc來編譯它。 – Homer6

+1

這個解決方案實際上比公認的更好,因爲ostringstream比數組和sprintf更安全得多。 – omni

5

使用OpenSSL的EVP interface(以下爲OpenSSL的1.1):

#include <iomanip> 
#include <iostream> 
#include <sstream> 
#include <string> 
#include <openssl/evp.h> 

bool computeHash(const std::string& unhashed, std::string& hashed) 
{ 
    bool success = false; 

    EVP_MD_CTX* context = EVP_MD_CTX_new(); 

    if(context != NULL) 
    { 
     if(EVP_DigestInit_ex(context, EVP_sha256(), NULL)) 
     { 
      if(EVP_DigestUpdate(context, unhashed.c_str(), unhashed.length())) 
      { 
       unsigned char hash[EVP_MAX_MD_SIZE]; 
       unsigned int lengthOfHash = 0; 

       if(EVP_DigestFinal_ex(context, hash, &lengthOfHash)) 
       { 
        std::stringstream ss; 
        for(unsigned int i = 0; i < lengthOfHash; ++i) 
        { 
         ss << std::hex << std::setw(2) << std::setfill('0') << (int)hash[i]; 
        } 

        hashed = ss.str(); 
        success = true; 
       } 
      } 
     } 

     EVP_MD_CTX_free(context); 
    } 

    return success; 
} 

int main(int, char**) 
{ 
    std::string pw1 = "password1", pw1hashed; 
    std::string pw2 = "password2", pw2hashed; 
    std::string pw3 = "password3", pw3hashed; 
    std::string pw4 = "password4", pw4hashed; 

    hashPassword(pw1, pw1hashed); 
    hashPassword(pw2, pw2hashed); 
    hashPassword(pw3, pw3hashed); 
    hashPassword(pw4, pw4hashed); 

    std::cout << pw1hashed << std::endl; 
    std::cout << pw2hashed << std::endl; 
    std::cout << pw3hashed << std::endl; 
    std::cout << pw4hashed << std::endl; 

    return 0; 
} 

優點這個更高層次的接口是你只需要將EVP_sha256()呼叫換成另一個摘要的功能,例如, EVP_sha512(),以使用不同的摘要。所以它增加了一些靈活性。