diff --git a/website/docs/configuration/functions/base64sha256.html.md b/website/docs/configuration/functions/base64sha256.html.md index 343b6d641..381f410be 100644 --- a/website/docs/configuration/functions/base64sha256.html.md +++ b/website/docs/configuration/functions/base64sha256.html.md @@ -14,7 +14,7 @@ earlier, see [0.11 Configuration Language: Interpolation Syntax](../../configuration-0-11/interpolation.html). `base64sha256` computes the SHA256 hash of a given string and encodes it with -Base64. This is not equivalent to base64encode(sha256512("test")) since sha512() +Base64. This is not equivalent to `base64encode(sha256("test"))` since `sha256()` returns hexadecimal representation. The given string is first encoded as UTF-8 and then the SHA256 algorithm is applied diff --git a/website/docs/configuration/functions/base64sha512.html.md b/website/docs/configuration/functions/base64sha512.html.md index cfca09ca5..b910d78f3 100644 --- a/website/docs/configuration/functions/base64sha512.html.md +++ b/website/docs/configuration/functions/base64sha512.html.md @@ -14,7 +14,7 @@ earlier, see [0.11 Configuration Language: Interpolation Syntax](../../configuration-0-11/interpolation.html). `base64sha512` computes the SHA512 hash of a given string and encodes it with -Base64. This is not equivalent to base64encode(sha512("test")) since sha512() +Base64. This is not equivalent to `base64encode(sha512("test"))` since `sha512()` returns hexadecimal representation. The given string is first encoded as UTF-8 and then the SHA512 algorithm is applied