//=====================================================================================================================
// Base64
//
// Adapted from http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c
//=====================================================================================================================

#ifndef _BASE64_H_
#define _BASE64_H_

string base64_encode(BYTE const* buf, unsigned int bufLen);
vector<BYTE> base64_decode(string const&);

#endif
