summaryrefslogtreecommitdiff
path: root/SDL_Core/src/thirdPartyLibs/encryption/include/encryption/Base64.h
blob: 645ca5b7d6cf3e201118e8ad8c70f7ccf3300b01 (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