Skip to content
This repository was archived by the owner on Jun 11, 2026. It is now read-only.
This repository was archived by the owner on Jun 11, 2026. It is now read-only.

Incorrect identifier format for JWK #38

Description

Describe the bug
The kid of the JWKs included in the controller document incorrectly includes the # which is used by relative DID URLs. This should be removed.

To Reproduce

"publicKeyJwk": {
    "crv": "Ed25519",
    "kid": "#p4U5jGNxVwia",
    "kty": "OKP",
    "x": "YcE5uHJk07w6lGs7_ym5bU7qmsVOVl_6ZIrTpsvhWTk"
}

Expected behavior

"publicKeyJwk": {
    "crv": "Ed25519",
    "kid": "p4U5jGNxVwia",
    "kty": "OKP",
    "x": "YcE5uHJk07w6lGs7_ym5bU7qmsVOVl_6ZIrTpsvhWTk"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions