mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
parent
3bbaeab278
commit
ba1bbd3b52
4 changed files with 9 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue