blob: 5f2d6743d0cef43caf9bc5bc66953acb3b3a4d70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef BASE64_HEADER
#define BASE64_HEADER
#include <string>
bool base64_is_valid(std::string const& s);
std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);
#endif // BASE64_HEADER
|