Closed Jampire closed 2 months ago
Related to https://github.com/w3c/webauthn/issues/1757
@mergify rebase
rebase
@mergify rebase
rebase
@mergify rebase
rebase
Hi,
I tried to rebase it and merge into 5.0.x, but it looks like I do not have the permissions. I created #647 that is exactly the same.
Target branch:
PublicKeyCredentialCreationOptions
can be created with an emptypubKeyCredParams
array by default. However, some of the authenticators (like NordPass) don't support this. They are crashed when no algorithms are provided for registration options. Other authenticators (like 1Password) useES256 (-7)
by default on their side in such case.@simplewebauthn/server
sets [-8, -7, -257] algorithms by default. The same is done by W3C Webauthn specification.This PR suggests to do the same.
Also, there is incorrect information in the documentation:
It's not true right now: an empty array is sent to the authenticator.