10 lines
249 B
C
Raw Normal View History

2012-08-19 22:30:59 -04:00
#ifndef BASE64_HEADER
#define BASE64_HEADER
#include <string>
2012-06-03 20:32:44 +03:00
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);
2012-08-19 22:30:59 -04:00
#endif // BASE64_HEADER