使用OpenSSL库在C ++中生成SHA哈希


Answers:


82

在命令行中,它很简单:

printf "compute sha1" | openssl sha1

您可以像这样调用库:

#include <stdio.h>
#include <string.h>
#include <openssl/sha.h>

int main()
{
    unsigned char ibuf[] = "compute sha1";
    unsigned char obuf[20];

    SHA1(ibuf, strlen(ibuf), obuf);

    int i;
    for (i = 0; i < 20; i++) {
        printf("%02x ", obuf[i]);
    }
    printf("\n");

    return 0;
}


8
不要忘记链接到libcrypto和libssl
AbiusX 2011年

6
使用SHA256(ibuf,strlen(ibuf),obuf);会更安全。
HighLife

8
在C ++中,您的代码给出:::'strlen':无法将参数1从'unsigned char [13]'转换为'const char *'
Robel Sharma

3
命令行示例不完整。为了使echo抑制尾随的换行符,应在其中添加'-n',如:echo -n“ compute sha1” | openssl sha1
matt bezark 2012年

8
不知道为什么这个答案被接受,因为它不能编译。

61

OpenSSL的文档很糟糕,没有代码示例,但是您在这里:

#include <openssl/sha.h>

bool simpleSHA256(void* input, unsigned long length, unsigned char* md)
{
    SHA256_CTX context;
    if(!SHA256_Init(&context))
        return false;

    if(!SHA256_Update(&context, (unsigned char*)input, length))
        return false;

    if(!SHA256_Final(md, &context))
        return false;

    return true;
}

用法:

unsigned char md[SHA256_DIGEST_LENGTH]; // 32 bytes
if(!simpleSHA256(<data buffer>, <data length>, md))
{
    // handle error
}

之后,md将包含二进制的SHA-256消息摘要。其他SHA系列成员也可以使用类似的代码,只需替换代码中的“ 256”即可。

如果您有更大的数据,您当然应该在数据块到达时提供它们(多次SHA256_Update调用)。


2
代码不错,但是省略了返回值检查。由于其高完整性代码,因此可以进行改进。很多人会在不考虑或检查的情况下复制/粘贴它。
jww

没有返回值。只需查看链接的文档。
AndiDog

9
嗯,实际上我的链接描述了返回值,但是我通过谷歌搜索发现的返回值却没有。将更新示例代码。(当然,人们不假思索地复制不是我的问题,更多的是整个行业的问题;)
AndiDog

4

@AndiDog版本适用于大文件:

static const int K_READ_BUF_SIZE{ 1024 * 16 };

std::optional<std::string> CalcSha256(std::string filename)
{
    // Initialize openssl
    SHA256_CTX context;
    if(!SHA256_Init(&context))
    {
        return std::nullopt;
    }

    // Read file and update calculated SHA
    char buf[K_READ_BUF_SIZE];
    std::ifstream file(filename, std::ifstream::binary);
    while (file.good())
    {
        file.read(buf, sizeof(buf));
        if(!SHA256_Update(&context, buf, file.gcount()))
        {
            return std::nullopt;
        }
    }

    // Get Final SHA
    unsigned char result[SHA256_DIGEST_LENGTH];
    if(!SHA256_Final(result, &context))
    {
        return std::nullopt;
    }

    // Transform byte-array to string
    std::stringstream shastr;
    shastr << std::hex << std::setfill('0');
    for (const auto &byte: result)
    {
        shastr << std::setw(2) << (int)byte;
    }
    return shastr.str();
}

3

命令行上的正确语法应该是

echo -n "compute sha1" | openssl sha1

否则,您还将对尾随换行符进行哈希处理。


1

这是使用BIO计算sha-1摘要的OpenSSL示例:

#include <openssl/bio.h>
#include <openssl/evp.h>

std::string sha1(const std::string &input)
{
    BIO * p_bio_md  = nullptr;
    BIO * p_bio_mem = nullptr;

    try
    {
        // make chain: p_bio_md <-> p_bio_mem
        p_bio_md = BIO_new(BIO_f_md());
        if (!p_bio_md) throw std::bad_alloc();
        BIO_set_md(p_bio_md, EVP_sha1());

        p_bio_mem = BIO_new_mem_buf((void*)input.c_str(), input.length());
        if (!p_bio_mem) throw std::bad_alloc();
        BIO_push(p_bio_md, p_bio_mem);

        // read through p_bio_md
        // read sequence: buf <<-- p_bio_md <<-- p_bio_mem
        std::vector<char> buf(input.size());
        for (;;)
        {
            auto nread = BIO_read(p_bio_md, buf.data(), buf.size());
            if (nread  < 0) { throw std::runtime_error("BIO_read failed"); }
            if (nread == 0) { break; } // eof
        }

        // get result
        char md_buf[EVP_MAX_MD_SIZE];
        auto md_len = BIO_gets(p_bio_md, md_buf, sizeof(md_buf));
        if (md_len <= 0) { throw std::runtime_error("BIO_gets failed"); }

        std::string result(md_buf, md_len);

        // clean
        BIO_free_all(p_bio_md);

        return result;
    }
    catch (...)
    {
        if (p_bio_md) { BIO_free_all(p_bio_md); }
        throw;
    }
}

尽管它比SHA1OpenSSL调用函数要长,但它更通用,可以重新处理以与文件流一起使用(从而处理任意长度的数据)。


0

@Nayfe代码的C版本,从文件生成SHA1哈希:

可以如下使用:

水库变量包含SHA1哈希。

您可以使用以下for循环将其打印在屏幕上:

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.