🐛Moved checksums to interface.

This commit is contained in:
2018-02-03 17:01:17 +00:00
parent ea1aa7b59b
commit 3768e7d077
14 changed files with 81 additions and 15 deletions

View File

@@ -39,7 +39,7 @@ namespace DiscImageChef.Checksums
/// <summary>
/// Implements the Adler-32 algorithm
/// </summary>
public class Adler32Context
public class Adler32Context : IChecksum
{
const ushort ADLER_MODULE = 65521;
ushort sum1, sum2;