1
0

Base64.h 273 B

12345678910111213141516
  1. #ifndef UTIL_BASE64_H
  2. #define UTIL_BASE64_H
  3. #include <string>
  4. namespace Util {
  5. namespace Base64 {
  6. std::string Encode(unsigned char const* , unsigned int len);
  7. std::string Decode(std::string const& s);
  8. } // namespace Base64
  9. } // namespace Util
  10. #endif // UTIL_BASE64_H