aboutsummaryrefslogtreecommitdiff
path: root/base64.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-06 20:21:16 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-06 20:21:16 +0200
commitaa5365666bb17299035a3d857bcce962004bda1e (patch)
tree5381d1aa601812662eed0611c223785945502542 /base64.h
parent053d2e76ad5848c8d95d7d56bfe7f8a6a324c229 (diff)
Base64 and import/export keys
Diffstat (limited to 'base64.h')
-rw-r--r--base64.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/base64.h b/base64.h
new file mode 100644
index 0000000..d18f819
--- /dev/null
+++ b/base64.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <string>
+
+namespace Base64{
+
+ std::string encode(const std::string&);
+ std::string decode(const std::string&);
+
+}