qa: Replace Qt module includes by class ones
[quassel.git] / src / core / storage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
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 General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "storage.h"
22
23 #include <random>
24
25 #include <QCryptographicHash>
26
27 Storage::Storage(QObject* parent)
28     : QObject(parent)
29 {}
30
31 QString Storage::hashPassword(const QString& password)
32 {
33     return hashPasswordSha2_512(password);
34 }
35
36 bool Storage::checkHashedPassword(const UserId user, const QString& password, const QString& hashedPassword, const Storage::HashVersion version)
37 {
38     bool passwordCorrect = false;
39
40     switch (version) {
41     case Storage::HashVersion::Sha1:
42         passwordCorrect = checkHashedPasswordSha1(password, hashedPassword);
43         break;
44
45     case Storage::HashVersion::Sha2_512:
46         passwordCorrect = checkHashedPasswordSha2_512(password, hashedPassword);
47         break;
48
49     default:
50         qWarning() << "Password hash version" << QString(version) << "is not supported, please reset password";
51     }
52
53     if (passwordCorrect && version < Storage::HashVersion::Latest) {
54         updateUser(user, password);
55     }
56
57     return passwordCorrect;
58 }
59
60 QString Storage::hashPasswordSha1(const QString& password)
61 {
62     return QString(QCryptographicHash::hash(password.toUtf8(), QCryptographicHash::Sha1).toHex());
63 }
64
65 bool Storage::checkHashedPasswordSha1(const QString& password, const QString& hashedPassword)
66 {
67     return hashPasswordSha1(password) == hashedPassword;
68 }
69
70 QString Storage::hashPasswordSha2_512(const QString& password)
71 {
72     // Generate a salt of 512 bits (64 bytes) using the Mersenne Twister
73     std::random_device seed;
74     std::mt19937 generator(seed());
75     std::uniform_int_distribution<int> distribution(0, 255);
76     QByteArray saltBytes;
77     saltBytes.resize(64);
78     for (int i = 0; i < 64; i++) {
79         saltBytes[i] = (unsigned char)distribution(generator);
80     }
81     QString salt(saltBytes.toHex());
82
83     // Append the salt to the password, hash the result, and append the salt value
84     return sha2_512(password + salt) + ":" + salt;
85 }
86
87 bool Storage::checkHashedPasswordSha2_512(const QString& password, const QString& hashedPassword)
88 {
89     QRegExp colonSplitter("\\:");
90     QStringList hashedPasswordAndSalt = hashedPassword.split(colonSplitter);
91
92     if (hashedPasswordAndSalt.size() == 2) {
93         return sha2_512(password + hashedPasswordAndSalt[1]) == hashedPasswordAndSalt[0];
94     }
95     else {
96         qWarning() << "Password hash and salt were not in the correct format";
97         return false;
98     }
99 }
100
101 QString Storage::sha2_512(const QString& input)
102 {
103     return QString(QCryptographicHash::hash(input.toUtf8(), QCryptographicHash::Sha512).toHex());
104 }