Skip to content

Commit

Permalink
docs(jwt) add HS384 & HS512 algorithm options
Browse files Browse the repository at this point in the history
  • Loading branch information
kepkin authored and thibaultcha committed Aug 21, 2018
1 parent 3f617c0 commit b1f61fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/plugins/jwt.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ HTTP/1.1 201 Created
form parameter | default | description
--- | --- | ---
`key`<br>*optional* | | A unique string identifying the credential. If left out, it will be auto-generated.
`algorithm`<br>*optional* | `HS256` | The algorithm used to verify the token's signature. Can be `HS256`, `RS256`, or `ES256`.
`algorithm`<br>*optional* | `HS256` | The algorithm used to verify the token's signature. Can be `HS256`, `HS384`, `HS512`, `RS256`, or `ES256`.
`rsa_public_key`<br>*optional* | | If `algorithm` is `RS256` or `ES256`, the public key (in PEM format) to use to verify the token's signature.
`secret`<br>*optional* | | If `algorithm` is `HS256` or `ES256`, the secret used to sign JWTs for this credential. If left out, will be auto-generated.

Expand Down

0 comments on commit b1f61fc

Please sign in to comment.