EHS Embedded HTTP Server  1.5.1.0
base64.h
1 /* vim: set et ts=4 sw=4 cindent: */
2 #ifndef _BASE64_H_
3 #define _BASE64_H_
4 
5 #include <string>
6 
7 std::string base64_encode(unsigned char const* , unsigned int len);
8 std::string base64_decode(std::string const& s);
9 
10 #endif