The code below generates a signed hash using HMAC SHA256. This code compiles and works fine on Debian Jessie and Ubuntu 16.04 (OpenSSL 1.0.2g 1 Mar 2016).
#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;
}
HOWEVER....
When compiling it on Debian Stretch I get the following error:
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,
^
And this has to do with the new OpenSSL version (OpenSSL 1.1.0f 25 May 2017).
QUESTION
Why am I experiencing the problem with OpenSSL 1.1, and how to fix it in a way that maintains backward compatibility with OpenSSL 1.0?