/** * @file base64.h * @brief Declaration of base64 Utilities * @author Andreas Aardal Hanssen * @date 2002-2005 */ #ifndef base64_h_included #define base64_h_included #include namespace Binc { std::string base64decode(const std::string &s_in); std::string base64encode(const std::string &s_in); } #endif