docs: add EdDSA/Ed25519 to allowed WebAuthn signature schemes#250
Draft
mraszyk wants to merge 1 commit into
Draft
docs: add EdDSA/Ed25519 to allowed WebAuthn signature schemes#250mraszyk wants to merge 1 commit into
mraszyk wants to merge 1 commit into
Conversation
|
🤖 Here's your preview: https://z4vwg-raaaa-aaaam-aiiga-cai.icp0.io |
eichhorl
approved these changes
May 13, 2026
Member
|
changelog lives here: https://github.com/dfinity/developer-docs/blob/main/docs/references/ic-interface-spec/changelog.md note: the original PR also didn't include any entry in the changelog |
Author
We should only update the changelog and merge this PR when it is actually rolled out in production. |
Member
|
converted into draft to avoid accidental merge |
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
Update the IC interface specification to allow EdDSA on curve Ed25519 as a third WebAuthn signature scheme (alongside ECDSA P-256 and RSA PKCS#1v1.5), mirroring the implementation change in dfinity/ic#10081.
Changes
docs/references/ic-interface-spec.md§Web Authentication: addEdDSA on curve Ed25519to the allowed-schemes list; clarify the signature encoding note to call out that Ed25519 WebAuthn signatures are the raw 64-byteR || sconcatenation from RFC 8032 §5.1.6 (not DER-wrapped, which only applies to ECDSA).docs/references/_attachments/interface-spec-changelog.md: new entry. The version number (0.61.0) is a placeholder — happy to adjust to whatever the maintainers prefer.Context
Was triggered by the implementation work in dfinity/ic#10081 to accept Ed25519 WebAuthn keys (e.g. NitroKey 3A authenticators emit
kty=OKP / alg=EdDSA / crv=Ed25519). Reviewer @eichhorl asked whether there's a corresponding spec PR — this is it.