aboutsummaryrefslogtreecommitdiff
path: root/src/base64.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-06-03 20:32:44 +0300
committerPerttu Ahola <celeron55@gmail.com>2012-06-03 20:32:44 +0300
commite2ea71113672de8189d8e0a5b347c8cf08ea2bf6 (patch)
treef5ac19d887cb7a17db1ff40e8334284bb5e96172 /src/base64.h
parent74aa598769b7d6b34af8a3c022ff9b3b79a293eb (diff)
downloadminetest-e2ea71113672de8189d8e0a5b347c8cf08ea2bf6.tar.gz
minetest-e2ea71113672de8189d8e0a5b347c8cf08ea2bf6.tar.bz2
minetest-e2ea71113672de8189d8e0a5b347c8cf08ea2bf6.zip
Check password hash validity
Diffstat (limited to 'src/base64.h')
-rw-r--r--src/base64.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base64.h b/src/base64.h
index 65d5db8b2..a29e69687 100644
--- a/src/base64.h
+++ b/src/base64.h
@@ -1,4 +1,5 @@
#include <string>
+bool base64_is_valid(std::string const& s);
std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);