/* * Base64.h * * Created on: 26/06/2012 * Author: Antonio */ #ifndef BASE64_H_ #define BASE64_H_ #include std::string base64_encode(unsigned char const* , unsigned int len); std::string base64_decode(std::string const& s); #endif /* BASE64_H_ */