Skip to content

Commit

Permalink
Use jsonc for JSON with comments in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBlueHat authored Jun 5, 2024
1 parent 29cfe6f commit 272e23b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,31 +185,31 @@ on your issuer and verifier endpoints.
You can specify the key types supported by your implementation in the issuer
and verifier configs as shown in this example:
```json
```jsonc
{
"issuers": [{
...
// ...
"supportedEcdsaKeyTypes": ["P-256", "P-384"]
"tags": ["ecdsa-rdfc-2019"]
}, {
...
// ...
"supportedEcdsaKeyTypes": ["P-256", "P-384"]
"tags": ["ecdsa-jcs-2019"]
}, {
...
// ...
"supportedEcdsaKeyTypes": ["P-256"]
"tags": ["ecdsa-sd-2023"]
}],
"verifiers": [{
...
// ...
"supportedEcdsaKeyTypes": ["P-256", "P-384"]
"tags": ["ecdsa-rdfc-2019"]
}, {
...
// ...
"supportedEcdsaKeyTypes": ["P-256", "P-384"]
"tags": ["ecdsa-jcs-2019"]
}, {
...
// ...
"supportedEcdsaKeyTypes": ["P-256"]
"tags": ["ecdsa-sd-2023"]
}]
Expand Down

0 comments on commit 272e23b

Please sign in to comment.