Home
Download
API Documentation
Development
Loading...
Searching...
No Matches
src
tools
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
11
namespace
NAF
12
{
13
namespace
Tools
14
{
15
class
HMACTool;
16
}
17
}
18
19
using namespace
NAF;
20
21
class
NAF::Tools::HMACTool
22
{
23
public
:
24
HMACTool
();
25
26
std::string Encode_(std::string text_to_encode);
27
};
28
29
#endif
//NAF_TOOLS_HMACTOOL
NAF::Tools::HMACTool
Definition
hmac_tool.h:22