Skip to content

Commit fd337cf

Browse files
committed
another output example
partial array hashing
1 parent 0c317a6 commit fd337cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Runners/Program.cs

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ static void Main(string[] args)
4545
};
4646

4747
Run(name: "Guid x 8", dataLength: SampleData.LongLength, hasher: a => a.ComputeHash(SampleData), steps: guidSteps);
48+
Run(name: "Guid x 8 Partial", dataLength: SampleData.LongLength - 3, hasher: a => a.ComputeHash(SampleData, 3, (int)(SampleData.LongLength - 3)), steps: guidSteps);
4849

4950
// random data tests
5051
var randomSteps = new Dictionary<string, Tuple<HashAlgorithm, int>>

0 commit comments

Comments
 (0)