blob: 25b0ff47ee5b9530eb31c952aea1fac4b3af357c (
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
|