/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include class tst_QCryptographicHash : public QObject { Q_OBJECT private slots: void repeated_result_data(); void repeated_result(); void intermediary_result_data(); void intermediary_result(); void sha1(); }; #include void tst_QCryptographicHash::repeated_result_data() { intermediary_result_data(); } void tst_QCryptographicHash::repeated_result() { QFETCH(int, algo); QCryptographicHash::Algorithm _algo = QCryptographicHash::Algorithm(algo); QCryptographicHash hash(_algo); QFETCH(QByteArray, first); hash.addData(first); QFETCH(QByteArray, hash_first); QByteArray result = hash.result(); QCOMPARE(result, hash_first); QCOMPARE(result, hash.result()); hash.reset(); hash.addData(first); result = hash.result(); QCOMPARE(result, hash_first); QCOMPARE(result, hash.result()); } void tst_QCryptographicHash::intermediary_result_data() { QTest::addColumn("algo"); QTest::addColumn("first"); QTest::addColumn("second"); QTest::addColumn("hash_first"); QTest::addColumn("hash_firstsecond"); QTest::newRow("md4") << int(QCryptographicHash::Md4) << QByteArray("abc") << QByteArray("abc") << QByteArray::fromHex("A448017AAF21D8525FC10AE87AA6729D") << QByteArray::fromHex("03E5E436DAFAF3B9B3589DB83C417C6B"); QTest::newRow("md5") << int(QCryptographicHash::Md5) << QByteArray("abc") << QByteArray("abc") << QByteArray::fromHex("900150983CD24FB0D6963F7D28E17F72") << QByteArray::fromHex("440AC85892CA43AD26D44C7AD9D47D3E"); QTest::newRow("sha1") << int(QCryptographicHash::Sha1) << QByteArray("abc") << QByteArray("abc") << QByteArray::fromHex("A9993E364706816ABA3E25717850C26C9CD0D89D") << QByteArray::fromHex("F8C1D87006FBF7E5CC4B026C3138BC046883DC71"); } void tst_QCryptographicHash::intermediary_result() { QFETCH(int, algo); QCryptographicHash::Algorithm _algo = QCryptographicHash::Algorithm(algo); QCryptographicHash hash(_algo); QFETCH(QByteArray, first); hash.addData(first); QFETCH(QByteArray, hash_first); QByteArray result = hash.result(); QCOMPARE(result, hash_first); // don't reset QFETCH(QByteArray, second); QFETCH(QByteArray, hash_firstsecond); hash.addData(second); result = hash.result(); QCOMPARE(result, hash_firstsecond); hash.reset(); } void tst_QCryptographicHash::sha1() { // SHA1("abc") = // A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D QCOMPARE(QCryptographicHash::hash("abc", QCryptographicHash::Sha1).toHex().toUpper(), QByteArray("A9993E364706816ABA3E25717850C26C9CD0D89D")); // SHA1("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq") = // 84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1 QCOMPARE(QCryptographicHash::hash("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", QCryptographicHash::Sha1).toHex().toUpper(), QByteArray("84983E441C3BD26EBAAE4AA1F95129E5E54670F1")); // SHA1(A million repetitions of "a") = // 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F QByteArray as; for (int i = 0; i < 1000000; ++i) as += 'a'; QCOMPARE(QCryptographicHash::hash(as, QCryptographicHash::Sha1).toHex().toUpper(), QByteArray("34AA973CD4C4DAA4F61EEB2BDBAD27316534016F")); } QTEST_MAIN(tst_QCryptographicHash) #include "tst_qcryptographichash.moc" h'>* Build break fixAri Lehtola2012-02-141-1/+2 * Initializes seqDumpPos on qiodevice.cppNick Ratelle2012-02-141-1/+2 * test: Do not mark tst_qdeclarativeerror as insignificant anymoreSergio Ahumada2012-02-131-2/+0 * Fixed compiler warning about unused variable with QT_NO_TEXTCODEC.Andreas Holzammer2012-02-111-0/+3 * Added QAccessibleGroupBoxJosé Millán Soto2012-02-105-18/+192 * Symbian: Fix for VKB default language to English in RTL variantSatyam Bandarapu2012-02-101-1/+1 * Raise loopLevel for deleteLater in event filtersJohn Stanley2012-02-103-12/+16 * When doing mouse move compression, pass non-MotionNotify events to installed ...John Stanley2012-02-101-1/+4 * Pass events to installed event dispatcher event filters before passing them t...John Stanley2012-02-103-13/+25 * test: Do not mark tst_qdeclarativetimer as insignificant anymoreSergio Ahumada2012-02-101-2/+0 * test: Do not mark tst_uic3 as insignificant anymoreSergio Ahumada2012-02-101-2/+0 * test: Mark tst_QMdiSubWindow with insignificant_test on Mac OS XSergio Ahumada2012-02-101-1/+1 * test: Re-enabled passing test in tst_qdbuspendingcallSergio Ahumada2012-02-101-2/+0 * QTextEngine - treat a fullstop (0x2E) as the same script as the preceeding te...John Tapsell2012-02-102-7/+57 * Harfbuzz-thai: Hide ZWJ and ZWNJ characters and show Inherited charactersJohn Tapsell2012-02-102-3/+50 * Harfbuzz-thai - When calling HB_OpenTypePosition we must set doLogClusters to...John Tapsell2012-02-101-1/+1 * Fix crash in qt_init when the XFIXES extension is not available.David Faure2012-02-101-0/+8 * Fix unstable test due to a race in QThreadBradley T. Hughes2012-02-091-1/+1 * Fixes a possible out-of-bound write in QByteArray.Nick Ratelle2012-02-091-6/+11 * realpath(X,0) IS supported on QNX.Nick Ratelle2012-02-091-1/+1 * Fix qmake evaluation of QMAKE_TARGET.arch on msvc2010 x86_64Giotis Nikos2012-02-091-2/+8 * Fix QListView::scrollTo() when there are hidden rowsJani Honkonen2012-02-092-1/+53 * Avoiding early deleteLater in Symbian with better loopLevel trackingMurray Read2012-02-095-21/+159 * Harfbuzz-thai - fix to_tis620 function for latin charactersJohn Tapsell2012-02-091-1/+1 * Symbian building: enable symbian platform autodetectionPasi Pentikainen2012-02-091-3/+0 * Symbian: Fix for blank window after taping Editing options.Satyam Bandarapu2012-02-09