aboutsummaryrefslogblamecommitdiffstats
path: root/b2sum.1
blob: dc834c86942ad1caa3030a7b09305119836331b6 (plain) (tree)
1
2
3
4
5
6



                                                
        
                                                                             






















                                                                
                               


                    















                                                             









                                                                    















































                                                              







                                                               
                                                               

































                                                        


                                                
            
.TH B2SUM 1 blakesum
.SH NAME
b2sum - Compute and check BLAKE2 message digests
.SH SYNOPSIS
.B b2sum
[-l bits | -X bits] [-K key] [-P pepper] [-S salt] [-c | -B | -L | -U] [-sxz]
.RI [ file "] ..."
.SH DESCRIPTION
Print or check BLAKE2 checksums, using BLAKE2b by default.
.SH OPTIONS
The
.B b2sum
utility conforms to the Base Definitions volume of POSIX.1-2017,
.IR "Section 12.2" ,
.IR "Utility Syntax Guidelines" .
.PP
The following options are supported:
.TP
.B -B
Output checksums in binary representation. This suppresses
the filenames and checksum delimiters. Only the checksums
are printed.
.TP
.B -c
Read BLAKE2 sums from the file and check them against the
files on your systems. The input files files should be
formatted as the output of this program, or similarly.
This is not going to work if any of the filenames in the
input files starts with <space> or <tab>, or if they
contain a <newline>, unless the
.B -z
option is also used.
.TP
.BI "-K " key
Specify a key (which is used for MAC and PRF), that is
up to 32 bytes (if the
.B -s
option is used) or 64 bytes (otherwise) long, that the
algorithm shall use. The key shall be expressed in
hexadecimal: each byte in the key shall be expressed, from
left to right, as a pairs of hexadecimal digits where highest
bits in each byte is stored in the left digit in its pair and
the lowest bits in each byte is stored in the right digit in
its pair. No delimiters are used, so for a 4 byte key where
each byte's value is its index, the key is expessed as
.BR 00010203 ,
however each letter may be either small or capital.
The key may not be empty.
.TP
.B -L
Output checksums in lower-case hexadecimal representation. (Default)
.TP
.BI "-l " bits
Select output size, valid values are multiples of 8
between 8 and 512, inclusively, or if the
.B -s
option is used between 8 and 256, inclusively.
(Default is maximum.)
.TP
.BI "-P " pepper
Specify an 8-byte (if the
.B -s
option is used) or 16-byte pepper (\(dqpersonalisation\(dq)
(otherwise) that the algorithm shall use. This pepper shall
be expressed in full length hexadecimal: 16 (for 8-byte) or 32
(for 16-byte) hexadecimal digits, or rather 8 or 16 pairs
of hexadecimal digits, ordered from left to right to specify
the values from index 0 to the last byte. In each pair,
the left digit stores the high bits of the byte, and the
right digit stores the low bits of the byte. For example,
the digit pair
.B 80
represents a byte with the decimal value 128, whereas the
digit pair
.B 08
represents a byte with the decimal value 8. The pairs
are joined without any delimiters, and no byte may be
omitted. So, for a 8 byte pepper where each byte's value
is its index, the pepper is expressed as
.BR 0001020304050607 ,
however each letter may be either small or capital.
If no pepper is specified, an all-zeroes pepper is used.
.TP
.BI "-S " salt
Specify a 8-byte (if the
.B -s
option is used) or 16-byte salt
(otherwise) that the algorithm shall use. This salt shall
be expressed in full length hexadecimal: 16 (for 8-byte) or 32
(for 16-byte) hexadecimal digits, or rather 8 or 16 pairs
of hexadecimal digits, ordered from left to right to specify
the values from index 0 to the last byte. In each pair,
the left digit stores the high bits of the byte, and the
right digit stores the low bits of the byte. For example,
the digit pair
.B 80
represents a byte with the decimal value 128, whereas the
digit pair
.B 08
represents a byte with the decimal value 8. The pairs
are joined without any delimiters, and no byte may be
omitted. So, for a 8 byte salt where each byte's value
is its index, the salt is expressed as
.BR 0001020304050607 ,
however each letter may be either small or capital.
If no salt is specified, an all-zeroes salt is used.
.TP
.B -s
Use BLAKE2s instead of BLAKE2b.
.TP
.B -U
Output checksums in upper-case hexadecimal representation.
.TP
.BI "-X " bits
Use BLAKE2Xb instead of BLAKE2b or BLAKE2Xs instead of BLAKE2s,
and select the extended output function output length, in bits;
must be a non-zero multiple of 8, and no greater than
34359738360 or (if the
.B -s
option is used) 524280.
.TP
.B -x
Convert input files from hexadecimal form to binary form
before calculating the checksums.
.TP
.B -z
Lines end with NUL instead of LF. If used with
.BR -c ,
this applies to read files (not the output), but it will
also apply more strict parsing and allow any whitespace
in file names.
.SH OPERANDS
The following operands are supported:
.TP
.I file
File to read. The standard input will be used
.B -
or no
.I file
is specified.
.SH EXIT STATUS
.TP
0
Successful completion.
.TP
1
Checksums did not match or a file did not exist.
.TP
2
An error occurred.
.SH NOTES
BLAKE2X has not been finalised as of 2022-02-20.
.SH SEE ALSO
.BR bsum (1)