From 3187c830d91c4d16d34c07d8cc8b5486ff3f8e46 Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Tue, 31 May 2022 09:06:20 -0400 Subject: Mark new AES functions experimental Signed-off-by: Dave Henderson --- docs/content/functions/crypto.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/content/functions/crypto.md b/docs/content/functions/crypto.md index 8834a9f0..ea204fbf 100644 --- a/docs/content/functions/crypto.md +++ b/docs/content/functions/crypto.md @@ -45,7 +45,10 @@ $ gomplate -i '{{ crypto.Bcrypt 4 "foo" }} $2a$04$zjba3N38sjyYsw0Y7IRCme1H4gD0MJxH8Ixai0/sgsrf7s1MFUK1C ``` -## `crypto.DecryptAES` +## `crypto.DecryptAES` _(experimental)_ +**Experimental:** This function is [_experimental_][experimental] and may be enabled with the [`--experimental`][experimental] flag. + +[experimental]: ../config/#experimental Decrypts the given input using the given key. By default, uses AES-256-CBC, but supports 128- and 192-bit keys as well. @@ -82,7 +85,10 @@ $ gomplate -i '{{ base64.Decode "Gp2WG/fKOUsVlhcpr3oqgR+fRUNBcO1eZJ9CW+gDI18=" | hello world ``` -## `crypto.DecryptAESBytes` +## `crypto.DecryptAESBytes` _(experimental)_ +**Experimental:** This function is [_experimental_][experimental] and may be enabled with the [`--experimental`][experimental] flag. + +[experimental]: ../config/#experimental Decrypts the given input using the given key. By default, uses AES-256-CBC, but supports 128- and 192-bit keys as well. @@ -118,7 +124,10 @@ $ gomplate -i '{{ base64.Decode "Gp2WG/fKOUsVlhcpr3oqgR+fRUNBcO1eZJ9CW+gDI18=" | hello world ``` -## `crypto.EncryptAES` +## `crypto.EncryptAES` _(experimental)_ +**Experimental:** This function is [_experimental_][experimental] and may be enabled with the [`--experimental`][experimental] flag. + +[experimental]: ../config/#experimental Encrypts the given input using the given key. By default, uses AES-256-CBC, but supports 128- and 192-bit keys as well. -- cgit v1.2.3