-
Notifications
You must be signed in to change notification settings - Fork 3
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
Remove txAuthSimple, update hmac-secret, improve cancel, add Stax support #27
Conversation
This extension has been removed from WebAuthn Spec here: w3c/webauthn#1386 It could still be used, but there was no concrete usage of it. If it were to be replaced, we should probably consider the payment extension: https://w3c.github.io/secure-payment-confirmation/
FIDO2.1 specification and conformance tools enforce that: The authenticator generates two random 32-byte values (called CredRandomWithUV and CredRandomWithoutUV) and associates them with the credential.
2a0ea53
to
ba85790
Compare
This field is optional in FIDO2 in some cases, but required in FIDO2.1. Some browser enforces it, see mozilla/authenticator-rs#319 As not including it is an unnecessary optimisation, we rather always put it if it causes compatibiity issue.
ba85790
to
85e1d76
Compare
src/ctap2_get_assertion_flow.c
Outdated
} else { | ||
ctap2_get_assertion_user_cancel(); | ||
#ifdef HAVE_NBGL | ||
app_nbgl_status("Log in cancelled", false, ui_idle, NBGL_NO_TUNE); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Login" as line 64 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one wasn't on the figma design, I'm changing it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved with minor typo
85e1d76
to
8256eb0
Compare
No description provided.