From b714ba0d97949044a17fb4d8a4677f4e96f0c56b Mon Sep 17 00:00:00 2001 From: Yoshiya Maki Date: Fri, 29 Nov 2024 02:51:27 +0900 Subject: [PATCH] [ja] Translate docs/reference/glossary/jwt.md --- content/ja/docs/reference/glossary/jwt.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 content/ja/docs/reference/glossary/jwt.md diff --git a/content/ja/docs/reference/glossary/jwt.md b/content/ja/docs/reference/glossary/jwt.md new file mode 100644 index 0000000000..825ee65e58 --- /dev/null +++ b/content/ja/docs/reference/glossary/jwt.md @@ -0,0 +1,18 @@ +--- +title: JSON Web Token (JWT) +id: jwt +date: 2023-01-17 +full_link: https://www.rfc-editor.org/rfc/rfc7519 +short_description: > + 2つの通信主体間で送受信されるクレームを表現する手段。 + +aka: +tags: +- security +- architecture +--- + 2つの通信主体間で送受信されるクレームを表現する手段。 + + + +JWTはデジタル署名と暗号化をすることが可能です。Kubernetesはクラスター内で何らかの操作を実行したいエンティティの身元を確認するため、認証トークンとしてJWTを使用します。