From f51dea141f8c16e1a444ddc2ff45472f178a00f9 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Fri, 26 May 2023 17:55:49 -0700 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-cryptography/json-web-key-sets.md Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com> Signed-off-by: Mark Fussell --- .../supported-cryptography/json-web-key-sets.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-cryptography/json-web-key-sets.md b/daprdocs/content/en/reference/components-reference/supported-cryptography/json-web-key-sets.md index 48a18e2f2..8f663760f 100644 --- a/daprdocs/content/en/reference/components-reference/supported-cryptography/json-web-key-sets.md +++ b/daprdocs/content/en/reference/components-reference/supported-cryptography/json-web-key-sets.md @@ -10,9 +10,10 @@ description: Detailed information on the JWKS cryptography component The purpose of this component is to load keys from a JSON Web Key Set ([RFC 7517](https://www.rfc-editor.org/rfc/rfc7517)). These are JSON documents that contain 1 or more keys as JWK (JSON Web Key); they can be public, private, or shared keys. This component supports loading a JWKS: -- From a local file (if the file is changed on disk, it's reloaded automatically), -- From a HTTP(S) URL (periodically refreshed if needed), or -- By passing an actual JWKS in the Component YAML (as a string, which can be base64-encoded). + +- From a local file; in this case, Dapr watches for changes to the file on disk and reloads it automatically. +- From a HTTP(S) URL, which is periodically refreshed. +- By passing the actual JWKS in the `jwks` metadata property, as a string (optionally, base64-encoded). {{% alert title="Note" color="primary" %}} This component uses the cryptographic engine in Dapr to perform operations. Although keys are never exposed to your application, Dapr has access to the raw key material.