Increase max TOTP step to 24 hours

* Fixes #7095
This commit is contained in:
Jonathan White 2023-02-21 22:26:06 -05:00
parent 3bbaeab278
commit ba1bbd3b52
4 changed files with 9 additions and 2 deletions

View file

@ -59,6 +59,12 @@ void TestTotp::testParseSecret()
QCOMPARE(settings->step, 30u);
QCOMPARE(settings->algorithm, Totp::Algorithm::Sha512);
// Max TOTP step of 24-hours
secret.replace("period=30", "period=90000");
settings = Totp::parseSettings(secret);
QVERIFY(!settings.isNull());
QCOMPARE(settings->step, 86400u);
// KeeOTP Parsing
secret = "key=HXDMVJECJJWSRBY%3d&step=25&size=8&otpHashMode=Sha256";
settings = Totp::parseSettings(secret);