summaryrefslogtreecommitdiff
path: root/SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h')
-rw-r--r--SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h b/SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h
new file mode 100644
index 000000000..645ca5b7d
--- /dev/null
+++ b/SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h
@@ -0,0 +1,9 @@
+#ifndef BASE64_H
+#define BASE64_H
+
+#include <string>
+
+std::string base64_encode(unsigned char const* , unsigned int len);
+std::string base64_decode(std::string const& s);
+
+#endif // BASE64_H