From e43fb91f9b13e0590b5315924a73afdf00ffe94a Mon Sep 17 00:00:00 2001 From: David Staniec Date: Mon, 6 Jan 2025 13:52:00 +0800 Subject: [PATCH] Aes keysize update --- source/Octopus.Tentacle/Security/AesEncryption.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Octopus.Tentacle/Security/AesEncryption.cs b/source/Octopus.Tentacle/Security/AesEncryption.cs index c584c0c1e..7e9603e62 100644 --- a/source/Octopus.Tentacle/Security/AesEncryption.cs +++ b/source/Octopus.Tentacle/Security/AesEncryption.cs @@ -60,7 +60,7 @@ Aes GetCryptoProvider(byte[]? iv = null) var provider = Aes.Create(); provider.Mode = CipherMode.CBC; provider.Padding = PaddingMode.PKCS7; - provider.KeySize = 128; + provider.KeySize = 256; provider.BlockSize = 128; provider.Key = key;