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.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/utils/base64.hpp b/src/utils/base64.hpp
new file mode 100644
index 0000000..7c08d82
--- /dev/null
+++ b/src/utils/base64.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "biboumi.h"
+
+#ifdef BOTAN_FOUND
+
+#include <string>
+
+namespace base64
+{
+std::string encode(const std::string& input);
+}
+
+#endif