blob: da219d2af9efd7ef6908a97becd78f38fe2c72dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @file base64.h
* @brief Declaration of base64 Utilities
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#ifndef base64_h_included
#define base64_h_included
#include <string>
namespace Binc {
std::string base64decode(const std::string &s_in);
std::string base64encode(const std::string &s_in);
}
#endif
|