Ejemplo n.º 1
0
        public string Send(string encrypted)
        {
            Thread.Sleep(5000);             // sleep 5s
            // user helper Protection
            var p = new Protection();
            //Decrypt by secret key from session
            var s = p.OpenSSLDecrypt(encrypted, Session["secret"].ToString());

            return(s);
        }