Esempio n. 1
0
        public void PasswordHashesandVerifysCorrectly()
        {
            var text = "pooface";

            var hash = SecurityExtensions.EncryptPassword(text);

            Assert.True(hash.CheckPassword(text));
        }