nancy.liao
2025-05-28 78c4103171732369725487b5f0e43816e1ea1256
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef BASE64_H
#define BASE64_H
 
#include <string>
#include <vector>
 
#if _WIN32
#include <wtypes.h>
#endif
#include <cstdint>
 
namespace license {
 
std::vector<uint8_t> unbase64(const std::string& base64_data);
std::string base64(const void* binaryData, size_t len, int lineLenght = -1);
 
}  // namespace license
 
#endif