Beispiel #1
0
        private static string Decrypt(string session)
        {
            string decrptedSession = Cryptor.Decrypt(session);

            return(decrptedSession);
        }
Beispiel #2
0
        private static string Encrypt(string session)
        {
            string sessionCypher = Cryptor.Encrypt(session);

            return(sessionCypher);
        }