You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef base64_h
|
|
#define base64_h
|
|
|
|
#include <string>
|
|
|
|
std::string base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len);
|
|
std::string base64_decode(std::string const& encoded_string);
|
|
|
|
|
|
#endif /* base64_h */ |