-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Allow three instead of two PIN retries per boot #35
Comments
robin-nitrokey
added a commit
to robin-nitrokey/fido-authenticator
that referenced
this issue
Jul 7, 2023
Previously, a PinAuthBlocked error was already returned after two wrong PIN entries. The reason for this as that decrement_retries also checks if the allowed retries are exceeded. This as unnecessary because pin_blocked is always checked before decrement_retries is called. This patch removes the check in decrement_retries. Fixes: trussed-dev#35
robin-nitrokey
added a commit
to robin-nitrokey/fido-authenticator
that referenced
this issue
Jul 10, 2023
Previously, a PinAuthBlocked error was already returned after two wrong PIN entries. The reason for this as that decrement_retries also checks if the allowed retries are exceeded. This as unnecessary because pin_blocked is always checked before decrement_retries is called. This patch removes the check in decrement_retries. Fixes: trussed-dev#35
nickray
pushed a commit
to robin-nitrokey/fido-authenticator
that referenced
this issue
Sep 13, 2023
Previously, a PinAuthBlocked error was already returned after two wrong PIN entries. The reason for this as that decrement_retries also checks if the allowed retries are exceeded. This as unnecessary because pin_blocked is always checked before decrement_retries is called. This patch removes the check in decrement_retries. Fixes: trussed-dev#35
nickray
pushed a commit
that referenced
this issue
Sep 13, 2023
Previously, a PinAuthBlocked error was already returned after two wrong PIN entries. The reason for this as that decrement_retries also checks if the allowed retries are exceeded. This as unnecessary because pin_blocked is always checked before decrement_retries is called. This patch removes the check in decrement_retries. Fixes: #35
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, a
PinAuthBlocked
error is already returned after two wrong PIN entries. The reason for this is thatdecrement_retries
also checks if the allowed retries are exceeded. This is unnecessary becausepin_blocked
is always checked beforedecrement_retries
is called.The text was updated successfully, but these errors were encountered: