Skip to content

Commit 6379fdf

Browse files
authored
Optimize block transformer to use 4096 default block size for cancellation
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 15f1cb8 commit 6379fdf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Algorithms/Tiger/Tiger_Implementation.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private class BlockTransformer
8888
private readonly byte _padding;
8989

9090
public BlockTransformer()
91-
: base(64, 64)
91+
: base(inputBlockSize: 64)
9292
{
9393
}
9494

@@ -558,4 +558,5 @@ private static class S
558558
}
559559
}
560560
}
561-
}
561+
562+
}

0 commit comments

Comments
 (0)