From 1b4a378ddb23004663344aef8e2624cdb88f2104 Mon Sep 17 00:00:00 2001 From: Barton Wright Date: Wed, 20 Oct 2021 16:50:58 -0400 Subject: [PATCH] Add resource links to JWT page --- docs/src/main/sphinx/security/jwt.rst | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/src/main/sphinx/security/jwt.rst b/docs/src/main/sphinx/security/jwt.rst index 70f6e22dc3d8..1605b81e5abb 100644 --- a/docs/src/main/sphinx/security/jwt.rst +++ b/docs/src/main/sphinx/security/jwt.rst @@ -11,9 +11,6 @@ including: * Valid time period * Signature -Sites such as `jwt.io `_ are available to help you decode and -verify a JWT. - A JWT is designed to be passed between servers as proof of prior authentication in a workflow like the following: @@ -139,3 +136,18 @@ in :ref:`cli-jwt-auth`. When using the Trino JDBC driver, specify a JWT with the ``accessToken`` :ref:`parameter `. +Resources +--------- + +The following resources may prove useful in your work with JWTs and JWKs. + +* `jwt.io `_ helps you decode and verify a JWT. + +* `An article on using RS256 + `_ + to sign and verify your JWTs. + +* An `online JSON web key `_ generator. + +* A `command line JSON web key + `_ generator.