From 78c4103171732369725487b5f0e43816e1ea1256 Mon Sep 17 00:00:00 2001 From: nancy.liao <huihui.liao@greentest.com.cn> Date: 周三, 28 5月 2025 16:58:22 +0800 Subject: [PATCH] 修复了缺少头文件编译报错的问题 --- src/library/base/base64.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/library/base/base64.h b/src/library/base/base64.h index f64c4cd..65932c1 100644 --- a/src/library/base/base64.h +++ b/src/library/base/base64.h @@ -2,14 +2,16 @@ #define BASE64_H #include <string> +#include <vector> #if _WIN32 #include <wtypes.h> #endif +#include <cstdint> namespace license { -unsigned char* unbase64(const char* ascii, int len, int* flen); +std::vector<uint8_t> unbase64(const std::string& base64_data); std::string base64(const void* binaryData, size_t len, int lineLenght = -1); } // namespace license -- Gitblit v1.9.1