summaryrefslogtreecommitdiffstats
path: root/src/uscxml/util/Base64.h
blob: eaa7cfc66632d7e91438e4e488a1da1a85a6f9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// taken from http://www.adp-gmbh.ch/cpp/common/base64.html
#ifndef BASE64_H_5FKG12HF
#define BASE64_H_5FKG12HF

#include <string>

namespace uscxml {

std::string base64_encode(char const* , unsigned int len);
std::string base64_decode(std::string const& s);

}

#endif /* end of include guard: BASE64_H_5FKG12HF */