CSharpTest.Net
Length Property
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.Crypto Namespace > Hash Class : Length Property

Glossary Item Box

Returns the length in bytes of the hash code

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Length As Integer
C# 
public int Length {get;}

Example

Library/Library.Test/TestHash.cs

C#Copy Code
Hash hash = Hash.SHA512(TestData);
Assert.AreEqual(SHA512.Create().ComputeHash(TestData), hash.ToArray());
Hash hash2 = Hash.SHA512(TestDataStream());

Assert.AreEqual(hash, hash2);
Assert.IsTrue(hash == hash2);
Assert.IsTrue(hash.Equals(hash2));
Assert.IsTrue(hash.Equals((object)hash2));
Assert.AreEqual(hash.GetHashCode(), hash2.GetHashCode());
Assert.AreEqual(hash.Length, hash2.Length);
Assert.AreEqual(hash.ToString(), hash2.ToString());
Assert.AreEqual(hash.ToArray(), hash2.ToArray());
Assert.IsFalse(hash != hash2);
VB.NETCopy Code
Dim hash As Hash = Hash.SHA512(TestData)
Assert.AreEqual(SHA512.Create().ComputeHash(TestData), hash.ToArray())
Dim hash2 As Hash = Hash.SHA512(TestDataStream())

Assert.AreEqual(hash, hash2)
Assert.IsTrue(hash = hash2)
Assert.IsTrue(hash.Equals(hash2))
Assert.IsTrue(hash.Equals(DirectCast(hash2, Object)))
Assert.AreEqual(hash.GetHashCode(), hash2.GetHashCode())
Assert.AreEqual(hash.Length, hash2.Length)
Assert.AreEqual(hash.ToString(), hash2.ToString())
Assert.AreEqual(hash.ToArray(), hash2.ToArray())
Assert.IsFalse(hash <> hash2)

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys