예제 #1
0
파일: Hasher.cs 프로젝트: fonsp/nancy-test
        public static void AddUser(string username, string password)
        {
            if (UserExists(username))
            {
                throw new Exception("User already exists.");
            }
            UserEntry userEntry = new UserEntry
            {
                username      = username,
                saltHashCombo = Hasher.EncryptPassword(password)
            };

            users.Insert(userEntry);
        }