Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/Utils.h')
-rw-r--r--src/cli/Utils.h35
1 files changed, 17 insertions, 18 deletions
diff --git a/src/cli/Utils.h b/src/cli/Utils.h
index b7fa63acf..0cd5c0bea 100644
--- a/src/cli/Utils.h
+++ b/src/cli/Utils.h
@@ -20,41 +20,40 @@
#include "cli/TextStream.h"
#include "core/Database.h"
+#include "core/EntryAttributes.h"
#include "keys/CompositeKey.h"
#include "keys/FileKey.h"
#include "keys/PasswordKey.h"
#include <QtCore/qglobal.h>
-#ifdef WITH_XC_YUBIKEY
-#include "keys/YkChallengeResponseKey.h"
-#include "keys/YkChallengeResponseKeyCLI.h"
-#include "keys/drivers/YubiKey.h"
-#endif
-
namespace Utils
{
- extern FILE* STDOUT;
- extern FILE* STDERR;
- extern FILE* STDIN;
- extern FILE* DEVNULL;
+ extern QTextStream STDOUT;
+ extern QTextStream STDERR;
+ extern QTextStream STDIN;
+ extern QTextStream DEVNULL;
+
+ void setDefaultTextStreams();
void setStdinEcho(bool enable);
- QString getPassword(FILE* outputDescriptor = STDOUT);
- QSharedPointer<PasswordKey> getPasswordFromStdin();
+ QString getPassword(bool quiet = false);
+ QSharedPointer<PasswordKey> getConfirmedPassword();
int clipText(const QString& text);
QSharedPointer<Database> unlockDatabase(const QString& databaseFilename,
const bool isPasswordProtected = true,
const QString& keyFilename = {},
const QString& yubiKeySlot = {},
- FILE* outputDescriptor = STDOUT,
- FILE* errorDescriptor = STDERR);
+ bool quiet = false);
QStringList splitCommandString(const QString& command);
- namespace Test
- {
- void setNextPassword(const QString& password);
- }
+ /**
+ * If `attributes` contains an attribute named `name` (case-sensitive),
+ * returns a list containing only `name`. Otherwise, returns the list of
+ * all attribute names in `attributes` matching the given name
+ * (case-insensitive).
+ */
+ QStringList findAttributes(const EntryAttributes& attributes, const QString& name);
}; // namespace Utils
#endif // KEEPASSXC_UTILS_H