From 6ec0241182e6363bc9f91dd67d5564d89ff91161 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Fri, 26 May 2023 17:59:17 -0700 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-cryptography/local-storage.md Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com> Signed-off-by: Mark Fussell --- .../supported-cryptography/local-storage.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-cryptography/local-storage.md b/daprdocs/content/en/reference/components-reference/supported-cryptography/local-storage.md index 94e8b77a7..25d1c319a 100644 --- a/daprdocs/content/en/reference/components-reference/supported-cryptography/local-storage.md +++ b/daprdocs/content/en/reference/components-reference/supported-cryptography/local-storage.md @@ -7,7 +7,15 @@ description: Detailed information on the local storage cryptography component ## Component format -The purpose of this component is to load keys from a local directory. The component accepts as input the name of a folder, and loads keys from there. Each key is in its own file, and when users request a key with a given name, Dapr will load the file with that name. +The purpose of this component is to load keys from a local directory. + +The component accepts as input the name of a folder, and loads keys from there. Each key is in its own file, and when users request a key with a given name, Dapr loads the file with that name. + +Supported file formats: + +- PEM with public and private keys (supports: PKCS#1, PKCS#8, PKIX) +- JSON Web Key (JWK) containing public, private, or symmetric keys +- Raw key data for symmetric keys {{% 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.