Refactored MUtils::Hash functions.
[MUtilities.git] / include / MUtils / Hash.h
blob313d827fd0b7c3b6565ff37d6c7fe0c9d0ae9f16
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library 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 GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 //MUtils
25 #include <MUtils/Global.h>
27 //Qt
28 #include <QByteArray>
29 #include <QFile>
31 namespace MUtils
33 namespace Hash
35 static const quint16 HASH_BLAKE2_512 = 0x0000U;
36 static const quint16 HASH_KECCAK_224 = 0x0100U;
37 static const quint16 HASH_KECCAK_256 = 0x0101U;
38 static const quint16 HASH_KECCAK_384 = 0x0102U;
39 static const quint16 HASH_KECCAK_512 = 0x0103U;
41 class MUTILS_API Hash
43 public:
44 Hash(const char* key = NULL) {};
45 virtual ~Hash(void) {};
47 bool update(const quint8 *const data, const quint32 len) { return process(data, len); }
48 bool update(const QByteArray &data) { return process(((const quint8*)data.constData()), ((quint32)data.length())); }
49 bool update(QFile &file);
51 QByteArray digest(const bool bAsHex = true) { return bAsHex ? finalize().toHex() : finalize(); }
53 protected:
54 virtual bool process(const quint8 *const data, const quint32 len) = 0;
55 virtual QByteArray finalize(void) = 0;
58 Hash *create(const quint16 &hashId, const char *const key = NULL);