mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-05-07 09:05:11 -04:00
Reports: Add "Known Bad" flag for entries
* Fixes #4168 * Introduce a custom data element stored with an entry to indicate that it is a "Known Bad" entry. This flag causes database reports to skip these entries. * The current number of known bad entries is displayed in the statistics report. * Add context menu to reports to easily exclude entries.
This commit is contained in:
parent
ce8f32e797
commit
3c19fdd193
20 changed files with 620 additions and 279 deletions
|
@ -24,6 +24,9 @@
|
|||
#include "PasswordHealth.h"
|
||||
#include "zxcvbn.h"
|
||||
|
||||
// Define the static member variable with the custom field name
|
||||
const QString PasswordHealth::OPTION_KNOWN_BAD = QStringLiteral("KnownBad");
|
||||
|
||||
PasswordHealth::PasswordHealth(double entropy)
|
||||
: m_score(entropy)
|
||||
, m_entropy(entropy)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue