WebAuthn
WebAuthn copied to clipboard
A simple PHP WebAuthn (FIDO2/Passkey) server library
For some reason, I'm getting this error on login from `navigator.credentials.create`. This happen sometimes and for some accounts but not for others. Can you tell what is the reason/source of...
my solokey would `registration ok, but certificate does not match any of the selected root ca.` until I added both those certificates found from https://s2pki.net. mds certs did not work.
``` base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated ``` ``` $userHandle = base64_decode($post->userHandle); ``` to ``` $userHandle = isset($post->userHandle) ? base64_decode($post->userHandle) : null; ``` fixed...
basically a mode that does allow for non/self attestation, while still preserving the integrity of those that do provide attestation: 1) keep a list of MDS'd authenticators identifiers (AAGUID and...
Using your library great success with PC and android mobile with google password manager. So I purchased a Thetis Pro-C FIDO2 Security Key Passkey Device to use. I used the...
I clicked on "new registration", clicked create in the browser alert and received "invalid atttestation format: none" Version 135.0.7049.115 (Official Build) (arm64) macOS Sequoia 15.4 (24E248)
when checking over attestations for stats and nerdism, I noticed something weird. several of the attestations were not chaining down to root. While I have been using an older version...
I have been able to make this work flawlessly w/ my app, but still can't seem to get 1Pass to work. The console tells me... passkey-save-prompt/1r4ne3m received error: "save-passkey-failed" For...
Was getting failures on apple passkeys when using touchID as the SigCounter remains at 0. hint found via apple passkey issue on stack overflow. https://stackoverflow.com/questions/78776653/passkey-counter-always-0-macos
Fixed some typos.