Added base64 Encore & Decode function

This commit is contained in:
Antoine Pilote
2024-08-05 23:29:09 -04:00
parent 1995d429ca
commit f392ded8b3
2 changed files with 42 additions and 0 deletions

View File

@@ -21,5 +21,8 @@ namespace Nuake
static float ToFloat(const std::string& string);
static std::string ToUpper(const std::string& string);
static std::string ToLower(const std::string& string);
static std::string Base64Encode(const std::vector<uint8_t>& data);
static std::vector<uint8_t> Base64Decode(const std::string& data);
};
}