|
NAMExxhsum - print or check xxHash non-cryptographic checksumsSYNOPSISxxhsum [<OPTION>] ... [<FILE>] ... xxhsum -b [<OPTION>] ...xxh32sum is equivalent to xxhsum -H0 xxh64sum is equivalent to xxhsum -H1 xxh128sum is equivalent to xxhsum -H2 DESCRIPTIONPrint or check xxHash (32, 64 or 128 bits) checksums. When no FILE, read standard input, except if it´s the console. When FILE is -, read standard input even if it´s the console.xxhsum supports a command line syntax similar but not identical to md5sum(1). Differences are: xxhsum doesn´t have text/binary mode switch (-b, -t); xxhsum always treats files as binary file; xxhsum has a hash bit width switch (-H); As xxHash is a fast non-cryptographic checksum algorithm, xxhsum should not be used for security related purposes. xxhsum -b invokes benchmark mode. See OPTIONS and EXAMPLES for details. OPTIONS
The following four options are useful only when verifying checksums (-c)
The following options are useful only benchmark purpose
EXIT STATUSxxhsum exit 0 on success, 1 if at least one file couldn´t be read or doesn´t have the same checksum as the -c option.EXAMPLESOutput xxHash (64bit) checksum values of specific files to standard output
Output xxHash (32bit and 64bit) checksum values of specific files to standard output, and redirect it to xyz.xxh32 and qux.xxh64
Read xxHash sums from specific files and check them
Benchmark xxHash algorithm. By default, xxhsum benchmarks xxHash main variants on a synthetic sample of 100 KB, and print results into standard output. The first column is the algorithm, the second column is the source data size in bytes, the third column is the number of hashes generated per second (throughput), and finally the last column translates speed in megabytes per second.
In the following example, the sample to hash is set to 16384 bytes, the variants to be benched are selected by their IDs, and each benchmark test is repeated 10 times, for increased accuracy.
BUGSReport bugs at: https://github.com/Cyan4973/xxHash/issues/AUTHORYann ColletSEE ALSOmd5sum(1)
Visit the GSP FreeBSD Man Page Interface. |