summaryrefslogtreecommitdiffstats
path: root/src/common/base64.h
blob: 48a13fe5d054fd946f670e301c518be0eca27938 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __BASE64_H__
#define __BASE64_H__

#include <string>

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

#endif /* __BASE64_H__ */