Exemplo n.º 1
0
        public void TestMD5String()
        {
            string temp = "This is a test of the emergency broadcast system.";
            string hash = MD5Hash.GetMD5HashFromString(temp);

            Assert.IsNotNull(hash);
        }
Exemplo n.º 2
0
        public void TestMD5NullString()
        {
            string hash = MD5Hash.GetMD5HashFromString(null);

            Assert.IsNull(hash);
        }