Skip to content

Commit

Permalink
ECDSA support
Browse files Browse the repository at this point in the history
  • Loading branch information
afflerbach authored and Johannes Koch committed Dec 2, 2021
1 parent 5804e94 commit 9e1ad2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
- access-control definitions:
- `basic_auth`, `beta_oauth2`, `beta_oidc`, `jwt`, `saml`

### Added

- completion for EC signing algorithms [#56](https://github.com/avenga/couper-vscode/pull/56)

---

> 2021-11-25
Expand Down
2 changes: 1 addition & 1 deletion src/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ const attributes = {
},
signature_algorithm: {
parents: ['jwt', 'jwt_signing_profile'],
options: ['HS256', 'HS384', 'HS512', 'RS256', 'RS384', 'RS512']
options: ['ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', 'RS512']
},
signing_key: {
parents: ['jwt']
Expand Down

0 comments on commit 9e1ad2c

Please sign in to comment.