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-src/content/functions/crypto.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs-src') diff --git a/docs-src/content/functions/crypto.yml b/docs-src/content/functions/crypto.yml index 741a5808..2565bd6c 100644 --- a/docs-src/content/functions/crypto.yml +++ b/docs-src/content/functions/crypto.yml @@ -28,6 +28,7 @@ funcs: $ gomplate -i '{{ crypto.Bcrypt 4 "foo" }} $2a$04$zjba3N38sjyYsw0Y7IRCme1H4gD0MJxH8Ixai0/sgsrf7s1MFUK1C - name: crypto.DecryptAES + experimental: true description: | Decrypts the given input using the given key. By default, uses AES-256-CBC, but supports 128- and 192-bit keys as well. @@ -55,6 +56,7 @@ funcs: $ gomplate -i '{{ base64.Decode "Gp2WG/fKOUsVlhcpr3oqgR+fRUNBcO1eZJ9CW+gDI18=" | crypto.DecryptAES "swordfish" 128 }}' hello world - name: crypto.DecryptAESBytes + experimental: true description: | Decrypts the given input using the given key. By default, uses AES-256-CBC, but supports 128- and 192-bit keys as well. @@ -81,6 +83,7 @@ funcs: $ gomplate -i '{{ base64.Decode "Gp2WG/fKOUsVlhcpr3oqgR+fRUNBcO1eZJ9CW+gDI18=" | crypto.DecryptAES "swordfish" 128 }}' hello world - name: crypto.EncryptAES + experimental: true description: | 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