code_app/third_party/base64/base64.h

10 lines
183 B
C
Raw Normal View History

#ifndef _BASE64_H_
#define _BASE64_H_
2022-05-03 10:25:52 +00:00
#include <string>
std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);
#endif