Skip to content

Commit

Permalink
fix: Checksum HashSizeValue
Browse files Browse the repository at this point in the history
  • Loading branch information
vla committed Mar 30, 2023
1 parent cecdf2d commit c04953f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal class Adler32 : HashAlgorithm, IChecksum
/// </summary>
public Adler32()
{
HashSizeValue = 32;
HashSizeValue = 64;
Reset();
}

Expand Down
2 changes: 1 addition & 1 deletion src/BloomFilter/HashAlgorithms/Internal/Checksum/Crc32.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ internal class Crc32 : HashAlgorithm, IChecksum
/// </summary>
public Crc32()
{
HashSizeValue = 32;
HashSizeValue = 64;
Reset();
}

Expand Down
2 changes: 1 addition & 1 deletion src/BloomFilter/HashAlgorithms/Internal/Checksum/Crc32u.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ internal class Crc32u : HashAlgorithm, IChecksum
/// </summary>
public Crc32u()
{
HashSizeValue = 32;
HashSizeValue = 64;
Reset();
}

Expand Down

0 comments on commit c04953f

Please sign in to comment.