/* * Copyright (C) 2014 Kyle Manna * Copyright (C) 2017 KeePassXC Team * * 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 . */ #include #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; }