Esempio n. 1
0
        private string[] GetUserInfos()
        {
            string userEncrypted = KioskConfigurationHepler.GetValueFromSecurity("UserEncrypted");
            string saltKey       = KioskConfigurationHepler.GetValueFromSecurity("SaltKey");
            string viKey         = KioskConfigurationHepler.GetValueFromSecurity("VIKey");
            string passwordHash  = KioskConfigurationHepler.GetValueFromSecurity("PasswordHash");

            return(UnitHelper.Decrypt(userEncrypted, passwordHash, saltKey, viKey).Split('&'));
        }