diff options
Diffstat (limited to 'protocols/Skype/src/base64/base64.h')
-rw-r--r-- | protocols/Skype/src/base64/base64.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/protocols/Skype/src/base64/base64.h b/protocols/Skype/src/base64/base64.h new file mode 100644 index 0000000000..9406df7a8f --- /dev/null +++ b/protocols/Skype/src/base64/base64.h @@ -0,0 +1,12 @@ +#include <windows.h>
+
+class Base64
+{
+private:
+ static char CharBase64[];
+ static int IndexBase64[];
+
+public:
+ static ULONG Encode(const char *inputString, char *outputBuffer, SIZE_T nMaxLength);
+ static ULONG Decode(const char *inputString, char *outputBuffer, SIZE_T nMaxLength);
+};
\ No newline at end of file |