From a166b59ace3299397801bcb0d0bf2e73c8964ce0 Mon Sep 17 00:00:00 2001 From: Pablo Hirafuji Date: Sat, 20 Sep 2025 19:02:17 -0300 Subject: [PATCH] Fix Cripto docs typo --- src/Crypto.gren | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Crypto.gren b/src/Crypto.gren index 415db1a..3daf18b 100644 --- a/src/Crypto.gren +++ b/src/Crypto.gren @@ -1708,7 +1708,7 @@ type AesGcmTagLength {-| Required paramaters to encrypt and decrypt values with the AES-GCM algorithm. - `iv` needs to be be greater than 12 bytes, but less than 128 bytes. The recommended -length is 96 bytes. +length is 12 bytes. - `additionalData` is completely optional data that is not encrypted, but will be a part of the completed, encrypted, `Bytes`. If provided when encrypting data, the same value must be provided when decrypting it or else the operation will fail.