Corrected checksum calculation errors.

This commit is contained in:
2017-06-29 22:30:03 +01:00
parent 08cbe92709
commit 4620115967
5 changed files with 23 additions and 14 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>