mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
SSH Agent: Track which database owns a key for remove-on-lock
Fixes #4532
This commit is contained in:
parent
9e17d52e8e
commit
a1b4a3f8b7
6 changed files with 60 additions and 37 deletions
|
@ -221,8 +221,8 @@ DatabaseWidget::DatabaseWidget(QSharedPointer<Database> db, QWidget* parent)
|
|||
|
||||
#ifdef WITH_XC_SSHAGENT
|
||||
if (sshAgent()->isEnabled()) {
|
||||
connect(this, SIGNAL(databaseLocked()), sshAgent(), SLOT(databaseModeChanged()));
|
||||
connect(this, SIGNAL(databaseUnlocked()), sshAgent(), SLOT(databaseModeChanged()));
|
||||
connect(this, SIGNAL(databaseLockRequested()), sshAgent(), SLOT(databaseLocked()));
|
||||
connect(this, SIGNAL(databaseUnlocked()), sshAgent(), SLOT(databaseUnlocked()));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -739,7 +739,7 @@ void DatabaseWidget::addToAgent()
|
|||
|
||||
OpenSSHKey key;
|
||||
if (settings.toOpenSSHKey(currentEntry, key, true)) {
|
||||
SSHAgent::instance()->addIdentity(key, settings);
|
||||
SSHAgent::instance()->addIdentity(key, settings, database()->uuid());
|
||||
} else {
|
||||
m_messageWidget->showMessage(key.errorString(), MessageWidget::Error);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue