mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
10 lines
225 B
C++
Executable File
10 lines
225 B
C++
Executable File
#ifndef base64_h
|
|
#define base64_h
|
|
|
|
#include <string>
|
|
|
|
std::string base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len);
|
|
std::string base64_decode(std::string const& encoded_string);
|
|
|
|
|
|
#endif /* base64_h */ |