mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Feature : Clip command using native programs. (#792)
* Adding a timeout option * Using native apps. * Renaming PasswordInput -> Utils
This commit is contained in:
parent
90468e8095
commit
1edabc4b3c
7 changed files with 105 additions and 28 deletions
|
@ -26,7 +26,7 @@
|
|||
#include <QStringList>
|
||||
#include <QTextStream>
|
||||
|
||||
#include "cli/PasswordInput.h"
|
||||
#include "cli/Utils.h"
|
||||
#include "core/Database.h"
|
||||
#include "format/KeePass2Reader.h"
|
||||
#include "keys/CompositeKey.h"
|
||||
|
@ -66,7 +66,7 @@ int Extract::execute(int argc, char** argv)
|
|||
out << "Insert the database password\n> ";
|
||||
out.flush();
|
||||
|
||||
QString line = PasswordInput::getPassword();
|
||||
QString line = Utils::getPassword();
|
||||
CompositeKey key = CompositeKey::readFromLine(line);
|
||||
|
||||
QString databaseFilename = args.at(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue