X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fstorage.h;h=9b9ce4f04e921e1e4986936970eb963373e5dded;hp=9984d3177bcc51d0c48ec0fc3a0fa9de3970a283;hb=d8b10ef03c8edcec9e81ee126fd5a83e350b1571;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609 diff --git a/src/core/storage.h b/src/core/storage.h index 9984d317..9b9ce4f0 100644 --- a/src/core/storage.h +++ b/src/core/storage.h @@ -42,6 +42,16 @@ public: NotAvailable // remove the storage backend from the list of avaliable backends }; + enum HashVersion { + Sha1, +#if QT_VERSION >= 0x050000 + Sha2_512, + Latest=Sha2_512 +#else + Latest=Sha1 +#endif + }; + public slots: /* General */ @@ -408,10 +418,17 @@ signals: void userRemoved(UserId); protected: - //! when implementing a storage handler, use this method to crypt user passwords. - /** This guarantees compatibility with other storage handlers and allows easy migration - */ - QString cryptedPassword(const QString &password); + QString hashPassword(const QString &password); + bool checkHashedPassword(const UserId user, const QString &password, const QString &hashedPassword, const Storage::HashVersion version); + +private: + QString hashPasswordSha1(const QString &password); + bool checkHashedPasswordSha1(const QString &password, const QString &hashedPassword); + +#if QT_VERSION >= 0x050000 + QString hashPasswordSha2_512(const QString &password); + bool checkHashedPasswordSha2_512(const QString &password, const QString &hashedPassword); +#endif };