summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/WhatsAPI++/base64.h
blob: 2ece162b89b169d87772be7780d56f4105a4bc0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Base64.h
 *
 *  Created on: 26/06/2012
 *      Author: Antonio
 */

#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_ */