2014-05-26 03:46:41 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Kyle Manna <kyle@kylemanna.com>
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2014-05-26 03:46:41 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "TestYkChallengeResponseKey.h"
|
2020-04-06 08:42:20 -04:00
|
|
|
|
|
|
|
#include "core/Tools.h"
|
2018-01-24 07:22:20 -05:00
|
|
|
#include "crypto/Crypto.h"
|
2021-04-22 23:07:49 -04:00
|
|
|
#include "keys/ChallengeResponseKey.h"
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2021-04-22 23:07:49 -04:00
|
|
|
#include <QCryptographicHash>
|
2020-04-06 08:42:20 -04:00
|
|
|
#include <QSignalSpy>
|
2021-07-11 22:10:29 -04:00
|
|
|
#include <QTest>
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
QTEST_GUILESS_MAIN(TestYubiKeyChallengeResponse)
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
void TestYubiKeyChallengeResponse::initTestCase()
|
2014-05-26 03:46:41 -04:00
|
|
|
{
|
2017-02-24 15:00:48 -05:00
|
|
|
// crypto subsystem needs to be initialized for YubiKey testing
|
|
|
|
QVERIFY(Crypto::init());
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
if (!YubiKey::instance()->isInitialized()) {
|
|
|
|
QSKIP("Unable to initialize YubiKey interface.");
|
2014-05-26 03:46:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
void TestYubiKeyChallengeResponse::testDetectDevices()
|
2014-05-26 03:46:41 -04:00
|
|
|
{
|
2020-04-06 08:42:20 -04:00
|
|
|
YubiKey::instance()->findValidKeys();
|
|
|
|
|
|
|
|
// Look at the information retrieved from the key(s)
|
2023-12-10 13:48:43 -05:00
|
|
|
const auto foundKeys = YubiKey::instance()->foundKeys();
|
|
|
|
for (auto i = foundKeys.cbegin(); i != foundKeys.cend(); ++i) {
|
|
|
|
const auto& displayName = i.value();
|
2021-04-22 23:07:49 -04:00
|
|
|
QVERIFY(displayName.contains("Challenge-Response - Slot") || displayName.contains("Configured Slot -"));
|
2023-12-10 13:48:43 -05:00
|
|
|
QVERIFY(displayName.contains(QString::number(i.key().first)));
|
|
|
|
QVERIFY(displayName.contains(QString::number(i.key().second)));
|
2014-05-26 03:46:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
/**
|
|
|
|
* Secret key for the YubiKey slot used by the unit test is
|
|
|
|
* 1c e3 0f d7 8d 20 dc fa 40 b5 0c 18 77 9a fb 0f 02 28 8d b7
|
|
|
|
* This secret can be on either slot but must be passive.
|
|
|
|
*/
|
|
|
|
void TestYubiKeyChallengeResponse::testKeyChallenge()
|
2014-05-26 03:46:41 -04:00
|
|
|
{
|
2023-12-10 13:48:43 -05:00
|
|
|
auto keys = YubiKey::instance()->foundKeys().keys();
|
2020-04-06 08:42:20 -04:00
|
|
|
if (keys.isEmpty()) {
|
|
|
|
QSKIP("No YubiKey devices were detected.");
|
|
|
|
}
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
// Find a key that is configured in passive mode
|
|
|
|
bool wouldBlock = false;
|
|
|
|
YubiKeySlot pKey(0, 0);
|
|
|
|
for (auto key : keys) {
|
|
|
|
if (YubiKey::instance()->testChallenge(key, &wouldBlock) && !wouldBlock) {
|
|
|
|
pKey = key;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Tools::wait(100);
|
2020-01-07 22:06:31 -05:00
|
|
|
}
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2020-04-06 08:42:20 -04:00
|
|
|
if (pKey.first == 0) {
|
|
|
|
/* Testing active mode in unit tests is unreasonable */
|
|
|
|
QSKIP("No YubiKey contains a slot in passive mode.");
|
2020-01-07 22:06:31 -05:00
|
|
|
}
|
2014-05-26 03:46:41 -04:00
|
|
|
|
2021-04-22 23:07:49 -04:00
|
|
|
QScopedPointer<ChallengeResponseKey> key(new ChallengeResponseKey(pKey));
|
2020-04-06 08:42:20 -04:00
|
|
|
|
|
|
|
QByteArray ba("UnitTest");
|
|
|
|
QVERIFY(key->challenge(ba));
|
2021-04-22 23:07:49 -04:00
|
|
|
QCOMPARE(key->rawKey().size(), 20);
|
|
|
|
auto hash = QString(QCryptographicHash::hash(key->rawKey(), QCryptographicHash::Sha256).toHex());
|
|
|
|
QCOMPARE(hash, QString("2f7802c7112c301303526e7737b54d546c905076dca6e9538edf761a2264cd70"));
|
2014-05-26 03:46:41 -04:00
|
|
|
}
|