Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
RZ_HASH(1)		     General Commands Manual		      RZ_HASH(1)

NAME
     rz-hash -- block based hashing utility

SYNOPSIS
     rz-hash [-vhBkjLq] [-a algorithm] [-b size] [-c hash] [-D algo] [-E algo]
	     [-s string] [-x hexstr] [-f from] [-t to] [-c hash] [[file] ...]

DESCRIPTION
     This program is part of the Rizin project.

     rz-hash  allows  you  to  calculate, check and show the hash values of each
     block of a target file.  The block size is 32768 bytes  by  default.   It's
     allowed  to  hash	from  stdin using '-' as a target file.  You can compare
     against a known hash and get the result in the exit status.

     You can hash big files by hashing each block and later determine what  part
     of it has been modified.  Useful for filesystem analysis.

     This command can be used to calculate hashes of a certain part of a file or
     a command line passed string.

     This is the command used by the 'ph' command of rizin.

     -v 	 Show version information

     -h 	 Show usage help message

     -		 Input read from stdin instead of from a file

     -a algo	 Hash algorithm to use; you can specify multiple ones by append-
		 ing a comma (example: sha1,md4,md5,sha256)

     -B 	 Output the calculated value for each block

     -b size	 Set the block size

     -c value	 Compare calculated value with a given one (hexadecimal)

     -e endian	 Set  the  endianness  (default: 'big'; accepted: 'big' or 'lit-
		 tle')

     -D algo	 Decrypt the given input; use -S to set the key and -I to set IV
		 (if needed)

     -E algo	 Encrypt the given input; use -S to set the key and -I to set IV
		 (if needed)

     -f from	 Start the calculation at the given offset

     -t to	 Stop the calculation at the given offset

     -I iv	 Set the initialization vector (IV)

     -i times	 Repeat the calculation N times

     -j 	 Output the result as a JSON structure

     -k 	 Output the calculated value using openssh's randomkey algorithm

     -L 	 List all algorithms

     -q 	 Set quiet mode (use -qq to get only the calculated value)

     -S seed	 Set the seed for -a; use '^' to append  it  before  the  input.
		 Use '@' prefix to load it from a file and '-' to read it

     -K key	 Set  the HMAC key for -a and the key for -E/-D.  Use '@' prefix
		 to load it from a file and '-' to read it from stdin  (you  can
		 combine them)

     -s string	 Input read from a zero-terminated string instead of from a file

     -x hex	 Input read from a hexadecimal value instead of from a file

		 All the inputs (besides -s/-x/-c) can be hexadecimal or strings
		 if 's:' prefix is specified.

DIAGNOSTICS
     The rz-hash utility exits 0 on success, and >0 if an error occurs.

     When  -c  is used, exit status 0 indicates a match between the expected and
     computed hashes

SEE ALSO
     rizin(1), rz-asm(1), rz-ax(1), rz-bin(1), rz-diff(1), rz-find(1), rz-gg(1),
     rz-run(1)

AUTHORS
     pancake <pancake@nopcode.org>

     byteninjaa0

FreeBSD ports 15.quarterly	January 24, 2024		      RZ_HASH(1)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=rz-hash&sektion=1&manpath=FreeBSD+Ports+15.1.quarterly>

home | help