diff --git a/dotnet/src/dotnetframework/GxClasses/Core/GXUtilsCommon.cs b/dotnet/src/dotnetframework/GxClasses/Core/GXUtilsCommon.cs index 061d6e520..b0ff594e0 100644 --- a/dotnet/src/dotnetframework/GxClasses/Core/GXUtilsCommon.cs +++ b/dotnet/src/dotnetframework/GxClasses/Core/GXUtilsCommon.cs @@ -3970,7 +3970,7 @@ public static string DecryptParm(object parm, string gxkey) string value = parm.ToString(); if (!String.IsNullOrEmpty(gxkey)) { - string strValue = Crypto.Decrypt64(value.ToString(), gxkey); + string strValue = Crypto.Decrypt64(value.ToString(), gxkey, true); if ((String.CompareOrdinal(StringUtil.Right(strValue, 6).TrimEnd(' '), Crypto.CheckSum(StringUtil.Left(strValue, (short)(StringUtil.Len(strValue) - 6)), 6).TrimEnd(' ')) == 0)) {