Gabriele Contini
2020-01-01 bd879d3c9f5fef0107bc3036be3893edab14e89c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BASE64_H
#define BASE64_H
 
#include <string>
 
#if _WIN32
#include <wtypes.h>
#endif
 
namespace license {
 
unsigned char* unbase64(const char* ascii, int len, int* flen);
std::string base64(const void* binaryData, size_t len, int lineLenght = -1);
 
}  // namespace license
 
#endif