使用 OpenSSL 和 C 產生 SHA256
在本文中,我們將探討如何使用 OpenSSL 函式庫和 C 產生 SHA256 雜湊值。 SHA256 是一種廣泛使用的加密雜湊函數,可產生任意資料的唯一 256 位元摘要。
實作
首先,我們需要確保 OpenSSL 開發我們的系統上提供了函式庫和標頭。包含必要的標頭後,我們可以繼續實作:
<code class="cpp">#include <openssl/sha.h> // Function to generate SHA256 hash of a string void sha256_string(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; }</code>
要從檔案產生SHA256 哈希,我們使用以下函數:
<code class="cpp">int sha256_file(char *path, char outputBuffer[65]) { FILE *file = fopen(path, "rb"); if (!file) return -534; unsigned char hash[SHA256_DIGEST_LENGTH]; SHA256_CTX sha256; SHA256_Init(&sha256); const int bufSize = 32768; unsigned char *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; }</code>
要使用這些函數,只需將輸入字串或檔案路徑作為參數傳遞即可。產生的 SHA256 雜湊值將在提供的輸出緩衝區中傳回。
以上是如何使用 OpenSSL 和 C 產生 SHA256 雜湊值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!