#ifndef __MimeBase64_h_ #define __MimeBase64_h_ #include /* ** encode ** ** base64 encode a string adding padding and line breaks as per spec. ** the result is appended to the destination. */ void base64Encode(std::string const &source, std::string &destination); std::string base64Encode(std::string const &source); #endif