mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
* Fix #3684 - Include YubiKey headers in CLI tests * Skip building testguibrowser if browser integration is disabled * Cleanup test CMakeLists
84 lines
1.7 KiB
C++
84 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2014 Kyle Manna <kyle@kylemanna.com>
|
|
* Copyright (C) 2017 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 <stdio.h>
|
|
|
|
#include "core/Global.h"
|
|
#include "crypto/Random.h"
|
|
|
|
#include "YubiKey.h"
|
|
|
|
YubiKey::YubiKey()
|
|
: m_yk_void(NULL)
|
|
, m_ykds_void(NULL)
|
|
{
|
|
}
|
|
|
|
YubiKey* YubiKey::m_instance(Q_NULLPTR);
|
|
|
|
YubiKey* YubiKey::instance()
|
|
{
|
|
if (!m_instance) {
|
|
m_instance = new YubiKey();
|
|
}
|
|
|
|
return m_instance;
|
|
}
|
|
|
|
bool YubiKey::init()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool YubiKey::deinit()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void YubiKey::detect()
|
|
{
|
|
}
|
|
|
|
bool YubiKey::getSerial(unsigned int& serial)
|
|
{
|
|
Q_UNUSED(serial);
|
|
|
|
return false;
|
|
}
|
|
|
|
QString YubiKey::getVendorName()
|
|
{
|
|
return "YubiKeyStub";
|
|
}
|
|
|
|
YubiKey::ChallengeResult YubiKey::challenge(int slot, bool mayBlock, const QByteArray& chal, QByteArray& resp)
|
|
{
|
|
Q_UNUSED(slot);
|
|
Q_UNUSED(mayBlock);
|
|
Q_UNUSED(chal);
|
|
Q_UNUSED(resp);
|
|
|
|
return ERROR;
|
|
}
|
|
|
|
bool YubiKey::checkSlotIsBlocking(int slot, QString& errorMessage)
|
|
{
|
|
Q_UNUSED(slot);
|
|
Q_UNUSED(errorMessage);
|
|
return false;
|
|
}
|