Example #1
0
        public string Decrypt(string xValue)
        {
            string result = "";

            if (!String.IsNullOrEmpty(xValue))
            {
                byte[] data = StringsFunctions.StringToByteArray(xValue);
                result = SecurityFunctions.TripleDESDecryptFramework(data, CoreData.SecurityKey);
            }

            return(result);
        }