diff --git a/content/docs/macros/MV_ENC_FUNC.md b/content/docs/macros/MV_ENC_FUNC.md index 6c60a7f..961eb48 100644 --- a/content/docs/macros/MV_ENC_FUNC.md +++ b/content/docs/macros/MV_ENC_FUNC.md @@ -9,7 +9,7 @@ lastmod: "2025-05-01T18:47:58-05:00" `declare function MV_ENC_FUNC(vmFunction: (A...) -> R..., encryptKey: string, decryptKey: string): (A...) -> R...` -will virtualize and encrypt the passed function constant with the provided `encryptKey`. Then `decryptKey` is evaluated at runtime to grab the key. +will virtualize and encrypt the passed function constant with the provided `encryptKey`. Then `decryptKey` is evaluated at runtime to grab the key. There are no restrictions on the length or the allowed characters of the keys, only that they are the same. ## Valid Usage ```lua diff --git a/content/docs/macros/MV_ENC_STR.md b/content/docs/macros/MV_ENC_STR.md index bf51aa6..37de54b 100644 --- a/content/docs/macros/MV_ENC_STR.md +++ b/content/docs/macros/MV_ENC_STR.md @@ -9,7 +9,7 @@ lastmod: "2025-05-01T18:47:58-05:00" `declare function MV_ENC_STR(str: string, encryptKey: string, decryptKey: string): string` -will encrypt the passed string constant with the provided `encryptKey`. Then `decryptKey` is evaluated at runtime to grab the key. +will encrypt the passed string constant with the provided `encryptKey`. Then `decryptKey` is evaluated at runtime to grab the key. There are no restrictions on the length or the allowed characters of the keys, only that they are the same. ## Valid Usage ```lua