You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a service which used an older version of this library to implement webauthn. Users enrolled credentials for which the Backup Elligible flag wasn't stored. I would like a way to flag to the library that this information is unknown and should not be validated
The obvious solution would be to make the the BackupEligible flag a three valued type (true, fals, unknown) but that obviously poses compatibility challenges.
Use Case
Users who enrolled to my service for which the Backup Elligible flag wasn't stored should be able to login.
Documentation
No response
The text was updated successfully, but these errors were encountered:
Why not handle this via determining if the value was ever stored in your storage solution (i.e. nullable column) and on login update the credential in that instance to the attested value?
Load credentials with a null-like value which match the requested credential and update them if returned using the following structure path from the result from 1 i.e. .Response.AuthenticatorData.Flags:
Description
I have a service which used an older version of this library to implement webauthn. Users enrolled credentials for which the Backup Elligible flag wasn't stored. I would like a way to flag to the library that this information is unknown and should not be validated
The obvious solution would be to make the the BackupEligible flag a three valued type (true, fals, unknown) but that obviously poses compatibility challenges.
Use Case
Users who enrolled to my service for which the Backup Elligible flag wasn't stored should be able to login.
Documentation
No response
The text was updated successfully, but these errors were encountered: