Cksum

From Vero - Wikipedia
Jump to navigation Jump to search

Template:Short description Template:Lowercase title Template:Infobox software cksum is a shell command for generating a checksum for a file or stream of data. The command reports the 32-bit cyclic redundancy check (CRC) checksum and byte count for each file specified in the command-line arguments or for standard input if no arguments provided.<ref name=":0" /> The CRC value is different from the CRC-32 used with a ZIP file, PNG or zlib.<ref>Template:Cite web</ref>

The command can be used to verify that files transferred (possibly via unreliable means) arrived intact.<ref name=":0">Template:Cite web</ref> However, the checksum calculated is not cryptographically secure. While it guards against accidental corruption (it is unlikely that the corrupted data will have the same checksum as the intended data), it is not difficult for an attacker to deliberately corrupt the file in a specific way that its checksum is unchanged. Unix-like systems typically include other commands for cryptographically secure checksums, such as sha256sum.

The command is available on Unix and Unix-like system and via UnxUtils.<ref>Template:Cite web</ref> The GNU Coreutils implementation provides additional checksum algorithms via <syntaxhighlight lang="text" class="" style="" inline="1">-a</syntaxhighlight> option, as an extension beyond POSIX.<ref name=":0" />

The standard command, as found on most Unix and Unix-like operating systems (including Linux, *BSD,<ref>Template:Cite web</ref><ref>Template:Cite web</ref><ref>Template:Cite web</ref> macOS, and Solaris<ref>Template:Cite web</ref>) uses a CRC algorithm based on the ethernet standard frame check<ref name=":1" /> and is therefore interoperable between implementations. This is in contrast to the sum command, which is not as interoperable and not compatible with the CRC-32 calculation. On Tru64 operating systems, the cksum command returns a different CRC value, unless the environment variable CMD_ENV is set to xpg4.Template:Citation needed

The command uses the generator polynomial 0x04C11DB7 and appends to the message its length in little endian representation. That length has null bytes trimmed on the right end.<ref name=":1">Template:Cite web</ref>

Examples

The following calculates the checksum for file test.txt. The checksum is 4038471504 and the file size is 75 bytes.

<syntaxhighlight lang="console"> $ cksum test.txt 4038471504 75 test.txt </syntaxhighlight>

See also

References

Template:Reflist

Template:Wikibooks

Template:Unix commands Template:Core Utilities commands