We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code result match with Google Authenticator
var base32Bytes = Base32Encoding.ToBytes(key); var totp = new Totp(base32Bytes); var totpCode = totp.ComputeTotp();
This code result not match with Google Authenticator
var base32Bytes = Base32Encoding.ToBytes(key); var totp = new Totp(base32Bytes, totpSize: 6, step: 60); var totpCode = totp.ComputeTotp();
Google Authenticator URI example
var uriString = new OtpUri(OtpType.Totp, key, "[email protected]", "Test Not Working", digits: 6, period: 60).ToString();
The text was updated successfully, but these errors were encountered:
period must be 30.
Sorry, something went wrong.
No branches or pull requests
This code result match with Google Authenticator
This code result not match with Google Authenticator
Google Authenticator URI example
var uriString = new OtpUri(OtpType.Totp, key, "[email protected]", "Test Not Working", digits: 6, period: 60).ToString();
The text was updated successfully, but these errors were encountered: