keepassxc

Форк
0
/
TestCryptoHash.cpp 
64 строки · 2.6 Кб
1
/*
2
 *  Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "TestCryptoHash.h"
19

20
#include "crypto/Crypto.h"
21
#include "crypto/CryptoHash.h"
22

23
#include <QTest>
24

25
QTEST_GUILESS_MAIN(TestCryptoHash)
26

27
void TestCryptoHash::initTestCase()
28
{
29
    QVERIFY(Crypto::init());
30
}
31

32
void TestCryptoHash::test()
33
{
34
    CryptoHash cryptoHash1(CryptoHash::Sha256);
35
    QCOMPARE(cryptoHash1.result(),
36
             QByteArray::fromHex("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"));
37

38
    QByteArray source2 = QString("KeePassX").toLatin1();
39
    QByteArray result2 = CryptoHash::hash(source2, CryptoHash::Sha256);
40
    QCOMPARE(result2, QByteArray::fromHex("0b56e5f65263e747af4a833bd7dd7ad26a64d7a4de7c68e52364893dca0766b4"));
41

42
    CryptoHash cryptoHash3(CryptoHash::Sha256);
43
    cryptoHash3.addData(QString("KeePa").toLatin1());
44
    cryptoHash3.addData(QString("ssX").toLatin1());
45
    QCOMPARE(cryptoHash3.result(),
46
             QByteArray::fromHex("0b56e5f65263e747af4a833bd7dd7ad26a64d7a4de7c68e52364893dca0766b4"));
47

48
    CryptoHash cryptoHash2(CryptoHash::Sha512);
49
    QCOMPARE(cryptoHash2.result(),
50
             QByteArray::fromHex("cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff831"
51
                                 "8d2877eec2f63b931bd47417a81a538327af927da3e"));
52

53
    QByteArray result3 = CryptoHash::hash(source2, CryptoHash::Sha512);
54
    QCOMPARE(result3,
55
             QByteArray::fromHex("0d41b612584ed39ff72944c29494573e40f4bb95283455fae2e0be1e3565aa9f48057d59e6ff"
56
                                 "d777970e282871c25a549a2763e5b724794f312c97021c42f91d"));
57

58
    CryptoHash cryptoHash4(CryptoHash::Sha512);
59
    cryptoHash4.addData(QString("KeePa").toLatin1());
60
    cryptoHash4.addData(QString("ssX").toLatin1());
61
    QCOMPARE(cryptoHash4.result(),
62
             QByteArray::fromHex("0d41b612584ed39ff72944c29494573e40f4bb95283455fae2e0be1e3565aa9f48057d59e6ffd777970e2"
63
                                 "82871c25a549a2763e5b724794f312c97021c42f91d"));
64
}
65

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.