mirror of
https://github.com/JDM170/model_coder
synced 2025-12-10 05:57:19 +07:00
13 lines
234 B
C++
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
|