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

#include <string>
#include "uscxml/Common.h"

namespace uscxml {

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

}

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