diff options
Diffstat (limited to '')
-rw-r--r-- | WebServer/base64.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebServer/base64.h b/WebServer/base64.h new file mode 100644 index 000000000..91b731417 --- /dev/null +++ b/WebServer/base64.h @@ -0,0 +1,4 @@ +#include <string>
+
+std::string base64_encode(unsigned char const* , unsigned int len);
+std::string base64_decode(std::string const& s);
|