Files
model_coder/base64.h
2020-09-13 19:34:35 +07:00

13 lines
234 B
C++

#ifndef _BASE64_H_
#define _BASE64_H_
#include <vector>
#include <string>
using namespace std;
typedef unsigned char BYTE;
string base64encode(BYTE const* buf, unsigned int bufLen);
vector<BYTE> base64decode(string const&);
#endif