projects
/
oweals
/
minetest.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Translation to Portuguese of Brazil for Minetest
[oweals/minetest.git]
/
src
/
base64.h
1
#ifndef BASE64_HEADER
2
#define BASE64_HEADER
3
4
#include <string>
5
6
bool base64_is_valid(std::string const& s);
7
std::string base64_encode(unsigned char const* , unsigned int len);
8
std::string base64_decode(std::string const& s);
9
10
#endif // BASE64_HEADER