mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
72 lines
2.1 KiB
C++
72 lines
2.1 KiB
C++
|
|
/*
|
||
|
|
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
|
||
|
|
*
|
||
|
|
* 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 "keys/YkChallengeResponseKeyCLI.h"
|
||
|
|
#include "keys/drivers/YubiKey.h"
|
||
|
|
|
||
|
|
#include "core/Tools.h"
|
||
|
|
#include "crypto/CryptoHash.h"
|
||
|
|
#include "crypto/Random.h"
|
||
|
|
|
||
|
|
#include <QFile>
|
||
|
|
#include <QtCore/qglobal.h>
|
||
|
|
|
||
|
|
QUuid YkChallengeResponseKeyCLI::UUID("e2be77c0-c810-417a-8437-32f41d00bd1d");
|
||
|
|
|
||
|
|
YkChallengeResponseKeyCLI::YkChallengeResponseKeyCLI(int slot,
|
||
|
|
bool blocking,
|
||
|
|
QString messageInteraction,
|
||
|
|
FILE* outputDescriptor)
|
||
|
|
: ChallengeResponseKey(UUID)
|
||
|
|
, m_slot(slot)
|
||
|
|
, m_blocking(blocking)
|
||
|
|
, m_messageInteraction(messageInteraction)
|
||
|
|
, m_out(outputDescriptor)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
QByteArray YkChallengeResponseKeyCLI::rawKey() const
|
||
|
|
{
|
||
|
|
return m_key;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Assumes yubikey()->init() was called
|
||
|
|
*/
|
||
|
|
bool YkChallengeResponseKeyCLI::challenge(const QByteArray& c)
|
||
|
|
{
|
||
|
|
return challenge(c, 2);
|
||
|
|
}
|
||
|
|
|
||
|
|
bool YkChallengeResponseKeyCLI::challenge(const QByteArray& challenge, unsigned int retries)
|
||
|
|
{
|
||
|
|
QTextStream out(m_out, QIODevice::WriteOnly);
|
||
|
|
do {
|
||
|
|
--retries;
|
||
|
|
|
||
|
|
if (m_blocking) {
|
||
|
|
out << m_messageInteraction << endl;
|
||
|
|
}
|
||
|
|
YubiKey::ChallengeResult result = YubiKey::instance()->challenge(m_slot, m_blocking, challenge, m_key);
|
||
|
|
if (result == YubiKey::SUCCESS) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
} while (retries > 0);
|
||
|
|
|
||
|
|
return false;
|
||
|
|
}
|