mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Add configurable password strength check on database password (#9782)
* Set default value of DatabasePasswordMinimumQuality to 3 (do not accept a master password that is less than Good) * Add custom message box button "Continue with weak password"
This commit is contained in:
parent
b2e6dc5fda
commit
d44486ce94
10 changed files with 67 additions and 1 deletions
|
@ -286,7 +286,10 @@ void TestGui::testCreateDatabase()
|
|||
tmpFile.close();
|
||||
fileDialog()->setNextFileName(tmpFile.fileName());
|
||||
|
||||
// click Continue on the warning due to weak password
|
||||
MessageBox::setNextAnswer(MessageBox::ContinueWithWeakPass);
|
||||
QTest::keyClick(fileEdit, Qt::Key::Key_Enter);
|
||||
|
||||
tmpFile.remove(););
|
||||
|
||||
triggerAction("actionDatabaseNew");
|
||||
|
|
|
@ -1879,6 +1879,8 @@ bool TestGuiFdoSecrets::driveNewDatabaseWizard()
|
|||
tmpFile.close();
|
||||
fileDialog()->setNextFileName(tmpFile.fileName());
|
||||
|
||||
// click Continue on the warning due to weak password
|
||||
MessageBox::setNextAnswer(MessageBox::ContinueWithWeakPass);
|
||||
wizard->accept();
|
||||
|
||||
tmpFile.remove();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue