From 30573db01f2a0ccb70df3e4b582a37030d68cf4d Mon Sep 17 00:00:00 2001 From: freedbygrace Date: Wed, 18 Oct 2023 15:13:52 -0400 Subject: [PATCH] Update Invoke-SymmectricCryptography.ps1 --- Invoke-SymmectricCryptography.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Invoke-SymmectricCryptography.ps1 b/Invoke-SymmectricCryptography.ps1 index a0544a2..441c74f 100644 --- a/Invoke-SymmectricCryptography.ps1 +++ b/Invoke-SymmectricCryptography.ps1 @@ -13,6 +13,8 @@ Function Invoke-SymmectricCryptography This means that the resulting encrypted data will NEVER be the same, even if the value to be encrypted is! This function is great for encrypting data that will NOT be transmitted over a network. In other words, data at rest. + + If transmitting the data over a network is required, consider breaking the encrypted data, key, and initialization vector apart. .PARAMETER Encrypt Specifies that encryption will be performed. @@ -616,4 +618,4 @@ Function Invoke-SymmectricCryptography } } } -#endregion \ No newline at end of file +#endregion