From f1000598cfdd80dc4dc0eb9bb1a0e3e142137856 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Fri, 28 Dec 2012 14:27:17 +0000 Subject: - code refactoring - added account registration - temporary disabled chatrooms git-svn-id: http://svn.miranda-ng.org/main/trunk@2869 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/base64/base64.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 protocols/Skype/src/base64/base64.h (limited to 'protocols/Skype/src/base64/base64.h') 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 + +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 -- cgit v1.2.3