Added CRC16 to checksum command.

This commit is contained in:
2015-04-19 01:10:32 +01:00
parent 0335745f27
commit 07cdb1cee5
3 changed files with 25 additions and 0 deletions

View File

@@ -86,6 +86,10 @@ namespace DiscImageChef
HelpText = "Calculates Adler-32.")]
public bool DoAdler32 { get; set; }
[Option("crc16", DefaultValue = true,
HelpText = "Calculates CRC16.")]
public bool DoCRC16 { get; set; }
[Option('c', "crc32", DefaultValue = true,
HelpText = "Calculates CRC32.")]
public bool DoCRC32 { get; set; }