summaryrefslogtreecommitdiff
path: root/src/utils/base64.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/base64.hpp')
-rw-r--r--src/utils/base64.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/base64.hpp b/src/utils/base64.hpp
new file mode 100644
index 0000000..1dd4a4d
--- /dev/null
+++ b/src/utils/base64.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "biboumi.h"
+
+#include <string>
+
+namespace base64
+{
+std::string encode(const std::string& input);
+}