From 4ed412d61a846b6956df0bedd7a167aede249500 Mon Sep 17 00:00:00 2001
From: Marco Holz <marco.holz@fitko.de>
Date: Wed, 9 Jun 2021 14:14:44 +0000
Subject: [PATCH] fix incorrect signature algorithm

---
 .../Authentifizierung_von_Fachanwendungen.md                  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/Detailinformationen/Authentifizierung_von_Fachanwendungen.md b/docs/Detailinformationen/Authentifizierung_von_Fachanwendungen.md
index aa84b87b..abbbb754 100644
--- a/docs/Detailinformationen/Authentifizierung_von_Fachanwendungen.md
+++ b/docs/Detailinformationen/Authentifizierung_von_Fachanwendungen.md
@@ -36,14 +36,14 @@ Entsprechend [RFC 7519 Abschnnitt 8](https://tools.ietf.org/html/rfc7519#section
 | Feld | Inhalt | **Erläuterung**                           |
 | ---- | ------ | ----------------------------------------- |
 | typ  | JWT    | Es handelt sich um einen JWT.             |
-| alg  | RS512  | Der JWT verwendet RSASSA-PSS und SHA-512. |
+| alg  | PS512  | Der JWT verwendet RSASSA-PSS und SHA-512. |
 
 **Beispiel**
 
 ```json
 {
   "typ":"JWT",
-  "alg":"HS256"
+  "alg":"PS512"
 }
 ```
 
-- 
GitLab