コード例 #1
0
        public void ShouldCreateSalt()
        {
            ICryptographer cryptographer = new Cryptographer();

            var salt = cryptographer.CreateSalt();
            Assert.That(salt.Length, Is.EqualTo(88));
        }