Loading...
Searching...
No Matches
hmac_tool.h
1
2#ifndef NAF_TOOLS_HMACTOOL
3#define NAF_TOOLS_HMACTOOL
4
5#include <string>
6
7#include "Poco/HMACEngine.h"
8#include "Poco/SHA1Engine.h"
9
10
11namespace NAF
12{
13 namespace Tools
14 {
15 class HMACTool;
16 }
17}
18
19using namespace NAF;
20
22{
23 public:
24 HMACTool();
25
26 std::string Encode_(std::string text_to_encode);
27};
28
29#endif //NAF_TOOLS_HMACTOOL
Definition hmac_tool.h:22