🐛Moved checksums to interface.

This commit is contained in:
2018-02-03 17:01:17 +00:00
parent 6b85fb0628
commit 4b4671b4ef
28 changed files with 230 additions and 273 deletions

View File

@@ -31,14 +31,14 @@
// ****************************************************************************/
// Disabled because the speed is abnormally slow
/*
using System;
using System.IO;
using System.Text;
namespace DiscImageChef.Checksums
{
public class Fletcher32Context
public class Fletcher32Context : IChecksum
{
bool inodd;
byte oddValue;
@@ -423,4 +423,4 @@ namespace DiscImageChef.Checksums
return Data(data, (uint)data.Length, out hash);
}
}
}*/
}