summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/base64/base64.h
blob: 9406df7a8f393310f13992e1e2a9fc8fac432c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
};