private static string Decrypt(string session) { string decrptedSession = Cryptor.Decrypt(session); return(decrptedSession); }
private static string Encrypt(string session) { string sessionCypher = Cryptor.Encrypt(session); return(sessionCypher); }