From 928acb316b1066eb251de44292427f4a97e4501a Mon Sep 17 00:00:00 2001 From: Whit Waldo Date: Wed, 24 Jan 2024 00:16:19 -0600 Subject: [PATCH] Added note explaining that use of the SDKs is preferred over HTTP APIs for production scenarios. (#3967) Signed-off-by: Whit Waldo --- daprdocs/content/en/reference/api/cryptography_api.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daprdocs/content/en/reference/api/cryptography_api.md b/daprdocs/content/en/reference/api/cryptography_api.md index 248e8822ec6..336088f23e3 100644 --- a/daprdocs/content/en/reference/api/cryptography_api.md +++ b/daprdocs/content/en/reference/api/cryptography_api.md @@ -10,6 +10,9 @@ Dapr provides cross-platform and cross-language support for encryption and decry cryptography building block. Besides the [language specific SDKs]({{}}), a developer can invoke these capabilities using the HTTP API endpoints below. +> The HTTP APIs are intended for development and testing only. For production scenarios, the use of the SDKs is strongly +> recommended as they implement the gRPC APIs providing higher performance and capability than the HTTP APIs. + ## Encrypt Payload This endpoint lets you encrypt a value provided as a byte array using a specified key and crypto component.