Corrected checksum calculation errors.

This commit is contained in:
2017-06-29 22:30:03 +01:00
parent 9a85a82af8
commit f72ea93b6a
4 changed files with 21 additions and 12 deletions

View File

@@ -491,12 +491,10 @@ namespace DiscImageChef.Checksums
fuzzyContext.Init();
fuzzyContext.Update(data, len);
hash = null;
byte[] result;
fuzzy_digest(out result);
return CToString(result);
return fuzzyContext.End();
}
/// <summary>