summaryrefslogtreecommitdiff
path: root/docs-src/content/functions/crypto.yml
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2022-05-31 09:06:20 -0400
committerDave Henderson <dhenderson@gmail.com>2022-06-04 15:31:41 -0400
commit3187c830d91c4d16d34c07d8cc8b5486ff3f8e46 (patch)
tree1cbaf4adefa5bfe42812bc01a2803f09003a616a /docs-src/content/functions/crypto.yml
parent795ddbd84aa2d79bbc2f0fb3894cf628bc7f9e25 (diff)
Mark new AES functions experimental
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src/content/functions/crypto.yml')
-rw-r--r--docs-src/content/functions/crypto.yml3
1 files changed, 3 insertions, 0 deletions
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.