Created
July 25, 2013 19:27
-
-
Save woodja/6082940 to your computer and use it in GitHub Desktop.
Generate Base64 encoded SHA256 HMAC using C++ and Crypto++ http://www.cryptopp.com for use with AWS API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using std::cout; | |
using std::cerr; | |
using std::endl; | |
#include <string> | |
using std::string; | |
#include "cryptlib.h" | |
using CryptoPP::Exception; | |
#include "hmac.h" | |
using CryptoPP::HMAC; | |
#include "sha.h" | |
using CryptoPP::SHA256; | |
#include "base64.h" | |
using CryptoPP::Base64Encoder; | |
#include "filters.h" | |
using CryptoPP::StringSink; | |
using CryptoPP::StringSource; | |
using CryptoPP::HashFilter; | |
string sign(string key, string plain) | |
{ | |
string mac, encoded; | |
try | |
{ | |
HMAC< SHA256 > hmac((byte*)key.c_str(), key.length()); | |
StringSource(plain, true, | |
new HashFilter(hmac, | |
new StringSink(mac) | |
) // HashFilter | |
); // StringSource | |
} | |
catch(const CryptoPP::Exception& e) | |
{ | |
cerr << e.what() << endl; | |
} | |
encoded.clear(); | |
StringSource(mac, true, | |
new Base64Encoder( | |
new StringSink(encoded) | |
) // Base64Encoder | |
); // StringSource | |
return encoded; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment