Fix keepassxc-browser password entropy display (#3107)
* Pass correct entropy amount to keepassxc-browser instead of amount of bits for both password and passphrase. * Rename json key from "login" to "entropy" (keeping "login" key for backwards compatibility). * Also make some changes to entropy calculation methods: - Rename PassphraseGenerator::calculateEntropy to estimateEntropy - Rename PasswordGenerator::calculateEntropy to estimateEntropy
This commit is contained in:
committed by
Jonathan White
parent
7ceca8ff3c
commit
e40f10657d
@@ -254,9 +254,9 @@ void PasswordGeneratorWidget::updatePasswordStrength(const QString& password)
|
||||
{
|
||||
double entropy = 0.0;
|
||||
if (m_ui->tabWidget->currentIndex() == Password) {
|
||||
entropy = m_passwordGenerator->calculateEntropy(password);
|
||||
entropy = m_passwordGenerator->estimateEntropy(password);
|
||||
} else {
|
||||
entropy = m_dicewareGenerator->calculateEntropy(password);
|
||||
entropy = m_dicewareGenerator->estimateEntropy();
|
||||
}
|
||||
|
||||
m_ui->entropyLabel->setText(tr("Entropy: %1 bit").arg(QString::number(entropy, 'f', 2)));
|
||||
|
||||
Reference in New Issue
Block a user