blob: c81ef778fcfe4e7f53c6886f0326b04aebf35f01 (
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);
};
|