]> git.lizzy.rs Git - dragonfireclient.git/blob - src/util/string.cpp
Hopefully fix includes on mingw
[dragonfireclient.git] / src / util / string.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "string.h"
21
22 #include "../sha1.h"
23 #include "../base64.h"
24
25 // Get an sha-1 hash of the player's name combined with
26 // the password entered. That's what the server uses as
27 // their password. (Exception : if the password field is
28 // blank, we send a blank password - this is for backwards
29 // compatibility with password-less players).
30 std::string translatePassword(std::string playername, std::wstring password)
31 {
32         if(password.length() == 0)
33                 return "";
34
35         std::string slt = playername + wide_to_narrow(password);
36         SHA1 sha1;
37         sha1.addBytes(slt.c_str(), slt.length());
38         unsigned char *digest = sha1.getDigest();
39         std::string pwd = base64_encode(digest, 20);
40         free(digest);
41         return pwd;
42 }
43