summaryrefslogtreecommitdiff
path: root/indra/llcommon/llbase64.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon/llbase64.h')
-rw-r--r--indra/llcommon/llbase64.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/indra/llcommon/llbase64.h b/indra/llcommon/llbase64.h
new file mode 100644
index 0000000000..6e8b817ba7
--- /dev/null
+++ b/indra/llcommon/llbase64.h
@@ -0,0 +1,19 @@
+/**
+ * @file llbase64.h
+ * @brief Wrapper for apr base64 encoding that returns a std::string
+ * @author James Cook
+ *
+ * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LLBASE64_H
+#define LLBASE64_h
+
+class LLBase64
+{
+public:
+ static std::string encode(const U8* input, size_t input_size);
+};
+
+#endif