mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Fix issues with TOTP
* otp setting is properly loaded and saved (Fix #2671) * Removing the key from TOTP Setup clears all TOTP settings for entry * Santize TOTP key prior to storing in OTP format
This commit is contained in:
parent
d3a424cc74
commit
cc932eff30
5 changed files with 67 additions and 30 deletions
|
@ -427,14 +427,21 @@ QString Entry::totp() const
|
|||
void Entry::setTotp(QSharedPointer<Totp::Settings> settings)
|
||||
{
|
||||
beginUpdate();
|
||||
m_data.totpSettings = std::move(settings);
|
||||
|
||||
auto text = Totp::writeSettings(m_data.totpSettings, title(), username());
|
||||
if (m_attributes->hasKey(Totp::ATTRIBUTE_OTP)) {
|
||||
m_attributes->set(Totp::ATTRIBUTE_OTP, text, true);
|
||||
if (settings->key.isEmpty()) {
|
||||
m_data.totpSettings.reset();
|
||||
m_attributes->remove(Totp::ATTRIBUTE_OTP);
|
||||
m_attributes->remove(Totp::ATTRIBUTE_SEED);
|
||||
m_attributes->remove(Totp::ATTRIBUTE_SETTINGS);
|
||||
} else {
|
||||
m_attributes->set(Totp::ATTRIBUTE_SEED, m_data.totpSettings->key, true);
|
||||
m_attributes->set(Totp::ATTRIBUTE_SETTINGS, text);
|
||||
m_data.totpSettings = std::move(settings);
|
||||
|
||||
auto text = Totp::writeSettings(m_data.totpSettings, title(), username());
|
||||
if (m_attributes->hasKey(Totp::ATTRIBUTE_OTP)) {
|
||||
m_attributes->set(Totp::ATTRIBUTE_OTP, text, true);
|
||||
} else {
|
||||
m_attributes->set(Totp::ATTRIBUTE_SEED, m_data.totpSettings->key, true);
|
||||
m_attributes->set(Totp::ATTRIBUTE_SETTINGS, text);
|
||||
}
|
||||
}
|
||||
endUpdate();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue