SHA256 HMAC使用OpenSL 1.1不编译

SHA256 HMAC using OpenSSL 1.1 not compiling

本文关键字:编译 OpenSL HMAC 使用 SHA256      更新时间:2023-10-16

下面的代码使用HMAC SHA256生成签名的哈希。此代码在Debian Jessie和Ubuntu 16.04(OpenSSL 1.0.2G 2016年3月1日(上进行编译和工作正常。

#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <iomanip>
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
string HMAC256(string data, string key)
{
        stringstream ss;
        HMAC_CTX ctx;
        unsigned int  len;
        unsigned char out[EVP_MAX_MD_SIZE];
        HMAC_Init(&ctx, key.c_str(), key.length(), EVP_sha256());
        HMAC_Update(&ctx, (unsigned char*)data.c_str(), data.length());
        HMAC_Final(&ctx, out, &len);
        HMAC_cleanup(&ctx); 
        for (unsigned int i = 0;  i < len;  i++)
        {
          ss << setw(2) << setfill('0') << hex << static_cast<int> (out[i]);
        }
        return ss.str();
}
int main()
{
    cout << HMAC256("AAAA","BBBB") << endl;
    return 0;
}

但是....

在Debian Stretch上进行编译时,我会收到以下错误:

hmac256.cpp: In function ‘std::__cxx11::string HMAC256(std::__cxx11::string, std::__cxx11::string)’:
hmac256.cpp:14:18: error: aggregate ‘HMAC_CTX ctx’ has incomplete type and cannot be defined
         HMAC_CTX ctx;
                  ^~~
hmac256.cpp:18:9: warning: ‘int HMAC_Init(HMAC_CTX*, const void*, int, const EVP_MD*)’ is deprecated [-Wdeprecated-declarations]
         HMAC_Init(&ctx, key.c_str(), key.length(), EVP_sha256());
         ^~~~~~~~~
In file included from /usr/include/openssl/hmac.h:13:0,
                 from hmac256.cpp:2:
/usr/include/openssl/hmac.h:28:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur int HMAC_Init(HMAC_CTX *ctx, const void *key, int len,
 ^

这与新的OpenSSL版本有关(OpenSSL 1.1.0F 2017年5月25日(。

问题

为什么我会遇到OpenSSL 1.1的问题,以及如何以保持与OpenSSL 1.0向后兼容的方式进行修复?

用于修复错误,请阅读:升级到OpenSSL 1.1.0。基本上,您需要创建一个新的HMAC_CTX如下:

HMAC_CTX *h = HMAC_CTX_new();
HMAC_Init_ex(h, key, keylen, EVP_sha256(), NULL);
...
HMAC_CTX_free(h);

对于向后兼容性,您可以考虑使用宏来控制代码块进行编译。