Added Adler-32 checksum

This commit is contained in:
2015-04-19 01:07:12 +01:00
parent 7fd2a8b699
commit 0335745f27
6 changed files with 222 additions and 0 deletions

View File

@@ -82,6 +82,10 @@ namespace DiscImageChef
HelpText = "Checksums the whole disc.")]
public bool WholeDisc { get; set; }
[Option('a', "adler32", DefaultValue = true,
HelpText = "Calculates Adler-32.")]
public bool DoAdler32 { get; set; }
[Option('c', "crc32", DefaultValue = true,
HelpText = "Calculates CRC32.")]
public bool DoCRC32 { get; set; }