17 lines
273 B
C++
17 lines
273 B
C++
#ifndef UTIL_BASE64_H
|
|
#define UTIL_BASE64_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace Util {
|
|
namespace Base64 {
|
|
|
|
std::string Encode(unsigned char const* , unsigned int len);
|
|
std::string Decode(std::string const& s);
|
|
|
|
} // namespace Base64
|
|
} // namespace Util
|
|
|
|
#endif // UTIL_BASE64_H
|