2011-11-13 14:55:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2017-06-09 23:40:36 +02:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-11-13 14:55:20 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
#include "DatabaseOpenWidget.h"
|
|
|
|
#include "ui_DatabaseOpenWidget.h"
|
2011-11-13 14:55:20 +01:00
|
|
|
|
2011-12-25 20:36:45 +01:00
|
|
|
#include "core/Config.h"
|
2012-06-28 09:21:15 +02:00
|
|
|
#include "core/Database.h"
|
2014-01-12 17:08:36 +01:00
|
|
|
#include "core/FilePath.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "crypto/Random.h"
|
|
|
|
#include "format/KeePass2Reader.h"
|
2011-12-26 01:21:29 +01:00
|
|
|
#include "gui/FileDialog.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "gui/MainWindow.h"
|
2013-10-08 22:09:20 +02:00
|
|
|
#include "gui/MessageBox.h"
|
2011-12-24 19:19:52 +01:00
|
|
|
#include "keys/FileKey.h"
|
2011-11-13 14:55:20 +01:00
|
|
|
#include "keys/PasswordKey.h"
|
2017-02-21 01:06:32 +01:00
|
|
|
#include "keys/YkChallengeResponseKey.h"
|
|
|
|
|
|
|
|
#include "config-keepassx.h"
|
2014-05-26 00:49:28 -07:00
|
|
|
|
2017-02-23 23:52:36 +01:00
|
|
|
#include <QSharedPointer>
|
2018-03-31 16:01:30 -04:00
|
|
|
#include <QtConcurrentRun>
|
2011-11-13 14:55:20 +01:00
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent)
|
2017-03-10 20:42:59 +01:00
|
|
|
: DialogyWidget(parent)
|
|
|
|
, m_ui(new Ui::DatabaseOpenWidget())
|
|
|
|
, m_db(nullptr)
|
2011-11-13 14:55:20 +01:00
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
2015-01-19 23:14:59 +00:00
|
|
|
m_ui->messageWidget->setHidden(true);
|
2018-02-15 22:08:28 +01:00
|
|
|
m_ui->checkPassword->setChecked(true);
|
2015-01-19 23:14:59 +00:00
|
|
|
|
2012-07-02 18:47:12 +02:00
|
|
|
QFont font = m_ui->labelHeadline->font();
|
|
|
|
font.setBold(true);
|
|
|
|
font.setPointSize(font.pointSize() + 2);
|
|
|
|
m_ui->labelHeadline->setFont(font);
|
|
|
|
|
2014-01-12 17:08:36 +01:00
|
|
|
m_ui->buttonTogglePassword->setIcon(filePath()->onOffIcon("actions", "password-show"));
|
2018-03-31 16:01:30 -04:00
|
|
|
connect(m_ui->buttonTogglePassword, SIGNAL(toggled(bool)), m_ui->editPassword, SLOT(setShowPassword(bool)));
|
2011-12-24 19:19:52 +01:00
|
|
|
connect(m_ui->buttonBrowseFile, SIGNAL(clicked()), SLOT(browseKeyFile()));
|
|
|
|
|
2011-11-16 18:46:09 +01:00
|
|
|
connect(m_ui->editPassword, SIGNAL(textChanged(QString)), SLOT(activatePassword()));
|
2011-12-24 19:19:52 +01:00
|
|
|
connect(m_ui->comboKeyFile, SIGNAL(editTextChanged(QString)), SLOT(activateKeyFile()));
|
2014-05-26 00:49:28 -07:00
|
|
|
|
2012-04-05 19:03:55 +02:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(openDatabase()));
|
2011-12-24 19:19:52 +01:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
2017-01-14 17:08:48 -08:00
|
|
|
|
2017-02-21 01:06:32 +01:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
|
|
|
QSizePolicy sp = m_ui->yubikeyProgress->sizePolicy();
|
|
|
|
sp.setRetainSizeWhenHidden(true);
|
|
|
|
m_ui->yubikeyProgress->setSizePolicy(sp);
|
|
|
|
|
2017-02-20 22:07:01 +01:00
|
|
|
connect(m_ui->buttonRedetectYubikey, SIGNAL(clicked()), SLOT(pollYubikey()));
|
2017-02-21 01:06:32 +01:00
|
|
|
connect(m_ui->comboChallengeResponse, SIGNAL(activated(int)), SLOT(activateChallengeResponse()));
|
|
|
|
#else
|
|
|
|
m_ui->checkChallengeResponse->setVisible(false);
|
|
|
|
m_ui->buttonRedetectYubikey->setVisible(false);
|
|
|
|
m_ui->comboChallengeResponse->setVisible(false);
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
|
|
|
#endif
|
2017-02-20 20:24:38 +01:00
|
|
|
|
2017-02-12 16:57:01 +01:00
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
// add random padding to layouts to align widgets properly
|
|
|
|
m_ui->dialogButtonsLayout->setContentsMargins(10, 0, 15, 0);
|
|
|
|
m_ui->gridLayout->setContentsMargins(10, 0, 0, 0);
|
|
|
|
m_ui->labelLayout->setContentsMargins(10, 0, 10, 0);
|
|
|
|
#endif
|
2012-06-28 09:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DatabaseOpenWidget::~DatabaseOpenWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-26 15:37:25 +01:00
|
|
|
void DatabaseOpenWidget::showEvent(QShowEvent* event)
|
|
|
|
{
|
|
|
|
DialogyWidget::showEvent(event);
|
|
|
|
m_ui->editPassword->setFocus();
|
2017-02-21 02:19:11 +01:00
|
|
|
|
|
|
|
#ifdef WITH_XC_YUBIKEY
|
2017-10-24 15:25:38 +02:00
|
|
|
// showEvent() may be called twice, so make sure we are only polling once
|
|
|
|
if (!m_yubiKeyBeingPolled) {
|
2018-03-31 16:01:30 -04:00
|
|
|
connect(
|
|
|
|
YubiKey::instance(), SIGNAL(detected(int, bool)), SLOT(yubikeyDetected(int, bool)), Qt::QueuedConnection);
|
2017-10-24 15:25:38 +02:00
|
|
|
connect(YubiKey::instance(), SIGNAL(detectComplete()), SLOT(yubikeyDetectComplete()), Qt::QueuedConnection);
|
|
|
|
connect(YubiKey::instance(), SIGNAL(notFound()), SLOT(noYubikeyFound()), Qt::QueuedConnection);
|
|
|
|
|
|
|
|
pollYubikey();
|
|
|
|
m_yubiKeyBeingPolled = true;
|
|
|
|
}
|
2017-02-21 02:19:11 +01:00
|
|
|
#endif
|
2016-11-26 15:37:25 +01:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:25:42 -04:00
|
|
|
void DatabaseOpenWidget::hideEvent(QHideEvent* event)
|
|
|
|
{
|
|
|
|
DialogyWidget::hideEvent(event);
|
|
|
|
|
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
// Don't listen to any Yubikey events if we are hidden
|
|
|
|
disconnect(YubiKey::instance(), 0, this, 0);
|
2017-10-24 15:25:38 +02:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2017-10-07 21:25:42 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-07-06 18:50:52 +02:00
|
|
|
void DatabaseOpenWidget::load(const QString& filename)
|
2012-06-28 09:21:15 +02:00
|
|
|
{
|
|
|
|
m_filename = filename;
|
2011-12-25 20:36:45 +01:00
|
|
|
|
2012-07-02 18:47:12 +02:00
|
|
|
m_ui->labelFilename->setText(filename);
|
|
|
|
|
2015-04-14 23:10:37 +02:00
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
2015-03-14 22:06:53 -05:00
|
|
|
QHash<QString, QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
|
|
|
if (lastKeyFiles.contains(m_filename)) {
|
|
|
|
m_ui->checkKeyFile->setChecked(true);
|
|
|
|
m_ui->comboKeyFile->addItem(lastKeyFiles[m_filename].toString());
|
|
|
|
}
|
2011-12-25 20:36:45 +01:00
|
|
|
}
|
2012-04-22 20:57:42 +02:00
|
|
|
|
|
|
|
m_ui->editPassword->setFocus();
|
2011-11-13 14:55:20 +01:00
|
|
|
}
|
|
|
|
|
2017-09-23 11:43:29 -04:00
|
|
|
void DatabaseOpenWidget::clearForms()
|
|
|
|
{
|
|
|
|
m_ui->editPassword->clear();
|
|
|
|
m_ui->comboKeyFile->clear();
|
2018-02-15 22:08:28 +01:00
|
|
|
m_ui->checkPassword->setChecked(true);
|
2017-09-23 11:43:29 -04:00
|
|
|
m_ui->checkKeyFile->setChecked(false);
|
|
|
|
m_ui->checkChallengeResponse->setChecked(false);
|
|
|
|
m_ui->buttonTogglePassword->setChecked(false);
|
|
|
|
m_db = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
Database* DatabaseOpenWidget::database()
|
2011-11-13 14:55:20 +01:00
|
|
|
{
|
2012-04-05 19:03:55 +02:00
|
|
|
return m_db;
|
2011-11-13 14:55:20 +01:00
|
|
|
}
|
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
void DatabaseOpenWidget::enterKey(const QString& pw, const QString& keyFile)
|
2012-04-24 11:47:16 +02:00
|
|
|
{
|
|
|
|
if (!pw.isNull()) {
|
|
|
|
m_ui->editPassword->setText(pw);
|
|
|
|
}
|
|
|
|
if (!keyFile.isEmpty()) {
|
2014-12-01 22:45:11 +01:00
|
|
|
m_ui->comboKeyFile->setEditText(keyFile);
|
2012-04-24 11:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
openDatabase();
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
void DatabaseOpenWidget::openDatabase()
|
2011-11-13 14:55:20 +01:00
|
|
|
{
|
2012-04-05 19:03:55 +02:00
|
|
|
KeePass2Reader reader;
|
2017-10-21 14:00:25 +02:00
|
|
|
QSharedPointer<CompositeKey> masterKey = databaseKey();
|
2017-10-14 22:12:45 -04:00
|
|
|
if (masterKey.isNull()) {
|
2017-10-05 14:44:05 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-10-12 12:12:00 +02:00
|
|
|
|
2018-03-10 16:01:53 +02:00
|
|
|
m_ui->editPassword->setShowPassword(false);
|
|
|
|
QCoreApplication::processEvents();
|
|
|
|
|
2012-10-12 12:12:00 +02:00
|
|
|
QFile file(m_filename);
|
|
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
2018-03-31 16:01:30 -04:00
|
|
|
m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(file.errorString()),
|
|
|
|
MessageWidget::Error);
|
2012-10-12 12:12:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m_db) {
|
|
|
|
delete m_db;
|
|
|
|
}
|
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
2017-10-05 14:44:05 -04:00
|
|
|
m_db = reader.readDatabase(&file, *masterKey);
|
2012-10-12 12:12:00 +02:00
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
|
|
|
if (m_db) {
|
2015-01-19 23:14:59 +00:00
|
|
|
if (m_ui->messageWidget->isVisible()) {
|
|
|
|
m_ui->messageWidget->animatedHide();
|
|
|
|
}
|
2017-02-23 23:52:36 +01:00
|
|
|
emit editFinished(true);
|
2017-10-05 14:44:05 -04:00
|
|
|
} else {
|
|
|
|
m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(reader.errorString()),
|
|
|
|
MessageWidget::Error);
|
2012-10-12 12:12:00 +02:00
|
|
|
m_ui->editPassword->clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-21 14:00:25 +02:00
|
|
|
QSharedPointer<CompositeKey> DatabaseOpenWidget::databaseKey()
|
2012-10-12 12:12:00 +02:00
|
|
|
{
|
2017-10-21 14:00:25 +02:00
|
|
|
auto masterKey = QSharedPointer<CompositeKey>::create();
|
2012-04-05 19:03:55 +02:00
|
|
|
|
2011-11-13 14:55:20 +01:00
|
|
|
if (m_ui->checkPassword->isChecked()) {
|
2017-10-05 14:44:05 -04:00
|
|
|
masterKey->addKey(PasswordKey(m_ui->editPassword->text()));
|
2011-11-13 14:55:20 +01:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:25:57 +02:00
|
|
|
QHash<QString, QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
2017-02-20 22:07:01 +01:00
|
|
|
QHash<QString, QVariant> lastChallengeResponse = config()->get("LastChallengeResponse").toHash();
|
2011-12-25 20:36:45 +01:00
|
|
|
|
2011-11-13 14:55:20 +01:00
|
|
|
if (m_ui->checkKeyFile->isChecked()) {
|
2011-12-24 19:19:52 +01:00
|
|
|
FileKey key;
|
2011-12-25 20:36:45 +01:00
|
|
|
QString keyFilename = m_ui->comboKeyFile->currentText();
|
2011-12-24 19:19:52 +01:00
|
|
|
QString errorMsg;
|
2011-12-25 20:36:45 +01:00
|
|
|
if (!key.load(keyFilename, &errorMsg)) {
|
2018-03-31 16:01:30 -04:00
|
|
|
m_ui->messageWidget->showMessage(tr("Can't open key file:\n%1").arg(errorMsg), MessageWidget::Error);
|
2017-10-21 14:00:25 +02:00
|
|
|
return QSharedPointer<CompositeKey>();
|
2011-12-24 19:19:52 +01:00
|
|
|
}
|
2017-12-27 14:20:28 +01:00
|
|
|
if (key.type() != FileKey::Hashed && !config()->get("Messages/NoLegacyKeyFileWarning").toBool()) {
|
|
|
|
QMessageBox legacyWarning;
|
|
|
|
legacyWarning.setWindowTitle(tr("Legacy key file format"));
|
|
|
|
legacyWarning.setText(tr("You are using a legacy key file format which may become\n"
|
2018-03-31 16:01:30 -04:00
|
|
|
"unsupported in the future.\n\n"
|
|
|
|
"Please consider generating a new key file."));
|
2017-12-27 14:20:28 +01:00
|
|
|
legacyWarning.setIcon(QMessageBox::Icon::Warning);
|
|
|
|
legacyWarning.addButton(QMessageBox::Ok);
|
|
|
|
legacyWarning.setDefaultButton(QMessageBox::Ok);
|
|
|
|
legacyWarning.setCheckBox(new QCheckBox(tr("Don't show this warning again")));
|
|
|
|
|
2018-03-31 16:01:30 -04:00
|
|
|
connect(legacyWarning.checkBox(), &QCheckBox::stateChanged, [](int state) {
|
2017-12-27 14:20:28 +01:00
|
|
|
config()->set("Messages/NoLegacyKeyFileWarning", state == Qt::CheckState::Checked);
|
|
|
|
});
|
|
|
|
|
|
|
|
legacyWarning.exec();
|
|
|
|
}
|
2017-10-05 14:44:05 -04:00
|
|
|
masterKey->addKey(key);
|
2011-12-25 20:36:45 +01:00
|
|
|
lastKeyFiles[m_filename] = keyFilename;
|
2017-02-20 22:07:01 +01:00
|
|
|
} else {
|
2011-12-25 20:36:45 +01:00
|
|
|
lastKeyFiles.remove(m_filename);
|
|
|
|
}
|
|
|
|
|
2017-02-20 22:07:01 +01:00
|
|
|
if (m_ui->checkChallengeResponse->isChecked()) {
|
|
|
|
lastChallengeResponse[m_filename] = true;
|
|
|
|
} else {
|
|
|
|
lastChallengeResponse.remove(m_filename);
|
|
|
|
}
|
|
|
|
|
2015-04-14 23:10:37 +02:00
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
2015-03-14 22:06:53 -05:00
|
|
|
config()->set("LastKeyFiles", lastKeyFiles);
|
|
|
|
}
|
2011-12-24 19:19:52 +01:00
|
|
|
|
2017-02-21 01:06:32 +01:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
config()->set("LastChallengeResponse", lastChallengeResponse);
|
|
|
|
}
|
2014-05-26 00:49:28 -07:00
|
|
|
|
|
|
|
if (m_ui->checkChallengeResponse->isChecked()) {
|
2017-03-10 20:42:59 +01:00
|
|
|
int selectionIndex = m_ui->comboChallengeResponse->currentIndex();
|
|
|
|
int comboPayload = m_ui->comboChallengeResponse->itemData(selectionIndex).toInt();
|
2014-05-26 00:49:28 -07:00
|
|
|
|
2017-03-10 20:42:59 +01:00
|
|
|
// read blocking mode from LSB and slot index number from second LSB
|
|
|
|
bool blocking = comboPayload & 1;
|
2017-10-05 14:44:05 -04:00
|
|
|
int slot = comboPayload >> 1;
|
|
|
|
auto key = QSharedPointer<YkChallengeResponseKey>(new YkChallengeResponseKey(slot, blocking));
|
|
|
|
masterKey->addChallengeResponseKey(key);
|
2014-05-26 00:49:28 -07:00
|
|
|
}
|
2017-02-21 01:06:32 +01:00
|
|
|
#endif
|
2014-05-26 00:49:28 -07:00
|
|
|
|
2012-10-12 12:12:00 +02:00
|
|
|
return masterKey;
|
2011-11-13 14:55:20 +01:00
|
|
|
}
|
2011-11-16 18:46:09 +01:00
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
void DatabaseOpenWidget::reject()
|
|
|
|
{
|
2017-02-21 02:19:11 +01:00
|
|
|
emit editFinished(false);
|
2012-06-28 09:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::activatePassword()
|
2011-11-16 18:46:09 +01:00
|
|
|
{
|
|
|
|
m_ui->checkPassword->setChecked(true);
|
|
|
|
}
|
2011-12-24 19:19:52 +01:00
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
void DatabaseOpenWidget::activateKeyFile()
|
2011-12-24 19:19:52 +01:00
|
|
|
{
|
|
|
|
m_ui->checkKeyFile->setChecked(true);
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:49:28 -07:00
|
|
|
void DatabaseOpenWidget::activateChallengeResponse()
|
|
|
|
{
|
|
|
|
m_ui->checkChallengeResponse->setChecked(true);
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:21:15 +02:00
|
|
|
void DatabaseOpenWidget::browseKeyFile()
|
2011-12-24 19:19:52 +01:00
|
|
|
{
|
|
|
|
QString filters = QString("%1 (*);;%2 (*.key)").arg(tr("All files"), tr("Key files"));
|
2017-11-16 16:04:30 +01:00
|
|
|
if (!config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
fileDialog()->setNextForgetDialog();
|
|
|
|
}
|
2011-12-26 01:21:29 +01:00
|
|
|
QString filename = fileDialog()->getOpenFileName(this, tr("Select key file"), QString(), filters);
|
2011-12-24 19:19:52 +01:00
|
|
|
|
|
|
|
if (!filename.isEmpty()) {
|
2011-12-25 20:36:45 +01:00
|
|
|
m_ui->comboKeyFile->lineEdit()->setText(filename);
|
2011-12-24 19:19:52 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-26 00:49:28 -07:00
|
|
|
|
2017-02-20 22:07:01 +01:00
|
|
|
void DatabaseOpenWidget::pollYubikey()
|
|
|
|
{
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(false);
|
|
|
|
m_ui->checkChallengeResponse->setEnabled(false);
|
|
|
|
m_ui->checkChallengeResponse->setChecked(false);
|
|
|
|
m_ui->comboChallengeResponse->setEnabled(false);
|
|
|
|
m_ui->comboChallengeResponse->clear();
|
2017-02-20 23:20:32 +01:00
|
|
|
m_ui->yubikeyProgress->setVisible(true);
|
2017-02-23 23:52:36 +01:00
|
|
|
|
|
|
|
// YubiKey init is slow, detect asynchronously to not block the UI
|
2017-02-20 22:07:01 +01:00
|
|
|
QtConcurrent::run(YubiKey::instance(), &YubiKey::detect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::yubikeyDetected(int slot, bool blocking)
|
2014-05-26 00:49:28 -07:00
|
|
|
{
|
|
|
|
YkChallengeResponseKey yk(slot, blocking);
|
2017-03-10 20:42:59 +01:00
|
|
|
// add detected YubiKey to combo box and encode blocking mode in LSB, slot number in second LSB
|
2017-02-23 23:52:36 +01:00
|
|
|
m_ui->comboChallengeResponse->addItem(yk.getName(), QVariant((slot << 1) | blocking));
|
2017-02-20 22:07:01 +01:00
|
|
|
|
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
QHash<QString, QVariant> lastChallengeResponse = config()->get("LastChallengeResponse").toHash();
|
|
|
|
if (lastChallengeResponse.contains(m_filename)) {
|
|
|
|
m_ui->checkChallengeResponse->setChecked(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:25:42 -04:00
|
|
|
void DatabaseOpenWidget::yubikeyDetectComplete()
|
|
|
|
{
|
|
|
|
m_ui->comboChallengeResponse->setEnabled(true);
|
|
|
|
m_ui->checkChallengeResponse->setEnabled(true);
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(true);
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
2017-10-24 15:25:38 +02:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2017-10-07 21:25:42 -04:00
|
|
|
}
|
|
|
|
|
2017-02-20 22:07:01 +01:00
|
|
|
void DatabaseOpenWidget::noYubikeyFound()
|
|
|
|
{
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(true);
|
2017-02-20 23:20:32 +01:00
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
2017-10-24 15:25:38 +02:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2014-05-26 00:49:28 -07:00
|
|
|
}
|