mirror of
https://github.com/JDM170/model_coder
synced 2025-12-10 05:57:19 +07:00
12 lines
217 B
C++
12 lines
217 B
C++
#ifndef _BASE64_H_
|
|
#define _BASE64_H_
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
typedef unsigned char BYTE;
|
|
|
|
std::string base64encode(BYTE const*, unsigned int);
|
|
std::vector<BYTE> base64decode(std::string const&);
|
|
|
|
#endif
|