1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* * Base64.h * * Created on: 26/06/2012 * Author: Antonio */ #ifndef BASE64_H_ #define BASE64_H_ #include <string> std::string base64_encode(unsigned char const* , unsigned int len); std::string base64_decode(std::string const& s); #endif /* BASE64_H_ */