public static string Decrypt(string cipherText)
        {
            return(EncryptionHelperBackup.Decrypt(cipherText));

            /*string EncryptionKey = "w/2&843ï6C╣♣";
             *
             * cipherText= StringCipher.Decrypt(cipherText, EncryptionKey);
             *
             * return cipherText;*/
        }
        public static string Encrypt(string clearText)
        {
            return(EncryptionHelperBackup.Encrypt(clearText));

            /*string EncryptionKey = "w/2&843ï6C╣♣";
             *
             *
             * clearText= StringCipher.Encrypt(clearText, EncryptionKey);
             * return clearText;*/
        }