Updated Media dump checksumming (markdown => mediawiki)

This commit is contained in:
2017-12-18 20:01:03 +00:00
parent 5ff0b96942
commit e5e9134823
2 changed files with 39 additions and 21 deletions

View File

@@ -0,0 +1,39 @@
==Command description==
This operation will calculate the checksums for the media represented by a media dump image.
==Command usage==
<code>DiscImageChef verify -i <dump> -v [true/false] -d [true/false] -t [true/false] -w [true/false] -a [true/false] --crc16 [true/false] -c [true/false] --crc64 [true/false] -m [true/false] --ripemd160 [true/false] -s [true/false] --sha256 [true/false] --sha384 [true/false] --sha512 [true/false] -f</code>
<code>-i, --input=<dump></code> path to the media dump image<br />
<code>-v, --verbose=[true/false]</code> shows verbose output ''(default false)''<br />
<code>-d, --debug=[true/false]</code> shows debug output ''(default false)''<br />
<code>-t, --separated-tracks=[true/false]</code> calculates each track checksum separately ''(default true)''<br />
<code>-w, --whole-discs=[true/false]</code> calculates the whole media checksum ''(default true)''<br />
<code>-a, --adler32=[true/false]</code> calculates the Adler-32 checksum ''(default true)''<br />
<code>--crc16=[true/false]</code> calculates the CRC16 checksum ''(default true)''<br />
<code>-c, --crc32=[true/false]</code> calculates the CRC32 checksum ''(default true)''<br />
<code>--crc64=[true/false]</code> calculates the ECMA CRC64 checksum ''(default false)''<br />
<code>-m, --md5=[true/false]</code> calculates the MD5 hash ''(default true)''<br />
<code>-s, --sha1=[true/false]</code> calculates the SHA1 hash ''(default true)''<br />
<code>--sha256=[true/false]</code> calculates the SHA2 hash with 256-bit ''(default false)''<br />
<code>--sha384=[†rue/false]</code> calculates the SHA2 hash with 384-bit ''(default false)''<br />
<code>--sha512=[true/false]</code> calculates the SHA2 hash with 512-bit ''(default false)''<br />
<code>-f, --spamsum=[true/false]</code> calculates the SpamSum fuzzy hash ''(default true)''
==Example==
<code>DiscImageChef checksum -i mydisc.cue -a false --sha512=true</code>
==Operating system support==
{|
| FreeBSD
| Yes
|-
| macOS
| Yes
|-
| Linux
| Yes
|-
| Windows
| Yes
|}

View File

@@ -1,21 +0,0 @@
# Command description
This operation will calculate the checksums for the media represented by a media dump image.
# Command usage
DiscImageChef verify -i \<dump\> -v [true/false] -d [true/false] -t [true/false] -w [true/false] -a [true/false] --crc16 [true/false] -c [true/false] --crc64 [true/false] -m [true/false] --ripemd160 [true/false] -s [true/false] --sha256 [true/false] --sha384 [true/false] --sha512 [true/false] -f
-i, --input=\<dump\> path to the media dump image
-v, --verbose=[true/false] shows verbose output _[default false]_
-d, --debug=[true/false] shows debug output _[default false]_
-t, --separated-tracks=[true/false] calculates each track checksum separately _[default true]_
-w, --whole-discs=[true/false] calculates the whole media checksum _[default true]_
-a, --adler32=[true/false] calculates the Adler-32 checksum _[default true]_
--crc16=[true/false] calculates the CRC16 checksum _[default true]_
-c, --crc32=[true/false] calculates the CRC32 checksum _[default true]_
--crc64=[true/false] calculates the ECMA CRC64 checksum _[default false]_
-m, --md5=[true/false] calculates the MD5 hash _[default true]_
-s, --sha1=[true/false] calculates the SHA1 hash _[default true]_
--sha256=[true/false] calculates the SHA2 hash with 256-bit _[default false]_
--sha384=[†rue/false] calculates the SHA2 hash with 384-bit _[default false]_
--sha512=[true/false] calculates the SHA2 hash with 512-bit _[default false]_
-f, --spamsum=[true/false] calculates the SpamSum fuzzy hash _[default true]_