summaryrefslogtreecommitdiff
path: root/indra/llcommon/llbase32.h
diff options
context:
space:
mode:
authorKelly Washington <kelly@lindenlab.com>2007-03-05 22:25:49 +0000
committerKelly Washington <kelly@lindenlab.com>2007-03-05 22:25:49 +0000
commit26029868758949697c2cf7c4a21a88eea3c2a7d5 (patch)
tree1861c3ccf96e16184941a78f58d4952ebecb6d5a /indra/llcommon/llbase32.h
parent1d18eb043ab71998bded6931e181e53cbb9bf386 (diff)
merge -r58599:58732 branches/im-email-base32 to release
Diffstat (limited to 'indra/llcommon/llbase32.h')
-rw-r--r--indra/llcommon/llbase32.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/indra/llcommon/llbase32.h b/indra/llcommon/llbase32.h
new file mode 100644
index 0000000000..5fd06f9e30
--- /dev/null
+++ b/indra/llcommon/llbase32.h
@@ -0,0 +1,19 @@
+/**
+ * @file llbase32.h
+ * @brief base32 encoding that returns a std::string
+ * @author James Cook
+ *
+ * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LLBASE32_H
+#define LLBASE32_h
+
+class LLBase32
+{
+public:
+ static std::string encode(const U8* input, size_t input_size);
+};
+
+#endif