#ifndef BASE64_H #define BASE64_H #include #include #if _WIN32 #include #endif #include namespace license { std::vector unbase64(const std::string& base64_data); std::string base64(const void* binaryData, size_t len, int lineLenght = -1); } // namespace license #endif