mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Fix static method on hashes not being declared as such.
This commit is contained in:
@@ -217,9 +217,7 @@ namespace DiscImageChef.Checksums
|
||||
/// <param name="seed">CRC seed</param>
|
||||
public static string Data(byte[] data, uint len, out byte[] hash, uint polynomial, uint seed)
|
||||
{
|
||||
uint localhashInt;
|
||||
|
||||
localhashInt = seed;
|
||||
uint localhashInt = seed;
|
||||
|
||||
uint[] localTable = new uint[256];
|
||||
for(int i = 0; i < 256; i++)
|
||||
|
||||
Reference in New Issue
Block a user