Safari partially supports AuthenticatorAttestationResponse.getPublicKey()#29458
Merged
caugner merged 3 commits intoApr 22, 2026
Merged
Conversation
Contributor
|
Tip: Review these changes grouped by change (recommended for most PRs), or grouped by feature (for large PRs). |
AuthenticatorAttestationResponse.getPublicKey() support status for SafariAuthenticatorAttestationResponse.getPublicKey()
caugner
reviewed
Apr 17, 2026
Contributor
|
@pilcrowonpaper Are you able to confirm whether Chrome and Firefox supports all three algorithm identifiers? |
Contributor
Author
|
@caugner From manual testing, both Firefox and Chrome supports -8 (Ed25519). I don't have an authenticator that supports -257 (RS256), but looking at the source code, I believe Firefox supports it (via |
Co-authored-by: Claas Augner <495429+caugner@users.noreply.github.com>
Contributor
Author
|
@caugner Chromium seems to have a test that checks for all three algorithms so it should support -257 (RS256) as well. |
caugner
approved these changes
Apr 22, 2026
This was referenced May 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Sets Safari's support for
AuthenticatorAttestationResponse.getPublicKey()topartial. The Web Authentication API specification (since level 2 where it was first described in) states that user agents MUST support algorithm -7 (ES256), -8 (Ed25519), and -257 (RS256). However, WebKit only supports -7 (ES256) and returnsnullfor the other 2 algorithms.Test results and supporting details