hashsum --hash hash --keep-going --uncompress --check file [--prefix dir]|file …Compute or verify file hashes.
--hash. Supported hashes are:adler32crc64crc32crc32rfc1510crc24rfc2440md4md5ripemd160sha1sha224sha256sha512sha384tiger192tigertiger2whirlpool--uncompress uncompressed files before computing hash. When list of files is given, hash of each file is computed and printed, followed by file name, each file on a new line.--check is given, it points to a file that contains list of hash name pairs in the same format as used by UNIX md5sum command.--prefix may be used to give directory where files are located. Hash verification stops after the first mismatch was found unless --keep-going was given. The exit code $? is set to 0 if hash verification is successful. If it fails, $? is set to a nonzero value.