From 88ebdc2ff68d3aa89ca79fdb45908e7980e12118 Mon Sep 17 00:00:00 2001 From: alsu Date: Fri, 8 Nov 2024 16:38:50 +0100 Subject: [PATCH] fix jwt authentication srs --- jwt_authentication/requirements/requirements.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/jwt_authentication/requirements/requirements.md b/jwt_authentication/requirements/requirements.md index 8f475f1d9..2717834de 100644 --- a/jwt_authentication/requirements/requirements.md +++ b/jwt_authentication/requirements/requirements.md @@ -121,9 +121,6 @@ These validators are set up in the `jwt_validators` section of the `config.xml` ClickHouse supports three main types of JWT validators: 1. **Static Key Validator**: - -Uses a symmetric static secret key to verify JWT signatures. -Supported algorithms: HMAC (HS256, HS384, HS512). Example: ```xml @@ -138,9 +135,7 @@ Example: ``` 2. **Static JWKS Validator**: - -Uses a JSON Web Key Set (JWKS) containing public keys to verify JWTs signed with asymmetric algorithms. -Supported algorithms: RSA, ECDSA, EdDSA. +Uses a JSON Web Key Set (JWKS) containing public keys to verify JWTs signed with asymmetric algorithms. Example: ```xml @@ -158,7 +153,6 @@ Example: Retrieves public keys dynamically from the JWKS servers. Ideal for integration with identity providers where key rotation is managed externally. -Supported algorithms: RSA, ECDSA, EdDSA. Example: ```xml