decentralized-identity / decentralized-identity/didcomm-messaging
Section 12.1.2 has a typo in the "kid" field
- Dominant language
- JavaScript
- Stars
- 193
- Forks
- 60
- PR merge metrics
- No merged PRs in 30d
Description
For Bob's Secrets, for each key the "kid" field name contains a trailing whitespace character which causes parsing issues.
"kid " should be "kid"
Example:
```
{
"kid ":"did:example:bob#key-x25519-1",
"kty":"OKP",
"d":"b9NnuOCB0hm7YGNvaE9DMhwH_wjZA1-gWD6dA0JWdL0",
"crv":"X25519",
"x":"GDTrI66K0pFfO54tlCSvfjjNapIs44dzpneBgyx0S3E"
},
```
Should become:
```
{
"kid":"did:example:bob#key-x25519-1",
"kty":"OKP",
"d":"b9NnuOCB0hm7YGNvaE9DMhwH_wjZA1-gWD6dA0JWdL0",
"crv":"X25519",
"x":"GDTrI66K0pFfO54tlCSvfjjNapIs44dzpneBgyx0S3E"
},
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.