Add 2FA support (#112)

This commit is contained in:
Kevin Yue
2021-12-20 22:20:02 +08:00
committed by GitHub
parent 9d6ec84c14
commit 8f27c92e7b
14 changed files with 286 additions and 124 deletions

View File

@@ -55,3 +55,13 @@ void GatewayAuthenticatorParams::setClientos(const QString &newClientos)
m_clientos = newClientos;
}
const QString &GatewayAuthenticatorParams::inputStr() const
{
return m_inputStr;
}
void GatewayAuthenticatorParams::setInputStr(const QString &inputStr)
{
m_inputStr = inputStr;
}