icinga2/lib/base/base64.hpp

26 lines
334 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef BASE64_H
#define BASE64_H
#include "remote/i2-remote.hpp"
#include "base/string.hpp"
namespace icinga
{
/**
* Base64
*
* @ingroup remote
*/
struct Base64
{
static String Decode(const String& data);
static String Encode(const String& data);
};
}
#endif /* BASE64_H */