aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-20 12:54:15 +0100
committerMattias Andrée <maandree@kth.se>2022-02-20 12:55:24 +0100
commit705aac5c3219451356ccd08c34494362269831b2 (patch)
tree60f5c114b08b8fee363ad1b87c822ec22c848de2
parentImprove makefile (diff)
downloadblakesum-705aac5c3219451356ccd08c34494362269831b2.tar.gz
blakesum-705aac5c3219451356ccd08c34494362269831b2.tar.bz2
blakesum-705aac5c3219451356ccd08c34494362269831b2.tar.xz
Add readme, fix documentation, and add/update todo
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--README94
-rw-r--r--b224sum.14
-rw-r--r--b256sum.14
-rw-r--r--b2sum.16
-rw-r--r--b2sum.c2
-rw-r--r--b384sum.14
-rw-r--r--b512sum.14
-rw-r--r--bsum.12
-rw-r--r--bsum.c1
9 files changed, 108 insertions, 13 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..6f4d5a3
--- /dev/null
+++ b/README
@@ -0,0 +1,94 @@
+NAME
+ blakesum - Checksum utilities for the BLAKE-family of hashing functions
+
+SYNOPSIS
+ bsum [-l bits] [-c | -B | -L | -U] [-xz] [file] ...
+ b224sum [-c | -B | -L | -U] [-xz] [file] ...
+ b256sum [-c | -B | -L | -U] [-xz] [file] ...
+ b384sum [-c | -B | -L | -U] [-xz] [file] ...
+ b512sum [-c | -B | -L | -U] [-xz] [file] ...
+ bsum [-l bits | -X bits] [-c | -B | -L | -U] [-sxz] [file] ...
+
+DESCRIPTION
+ Print or check BLAKE, BLAKE2, or BLAKE2X checksums.
+
+ bsum is used for BLAKE2 checksums, and b2sum is used for
+ BLAKE2 and BLAKE2X checksums.
+
+ b224sum is an alias for bsum -l 224.
+
+ b256sum is an alias for bsum -l 256.
+
+ b384sum is an alias for bsum -l 384.
+
+ b512sum is an alias for bsum -l 512.
+
+OPTIONS
+ The following options are supported:
+
+ -B Output checksums in binary representation. This
+ suppresses the filenames and checksum delimiters.
+ Only the checksums are printed.
+
+ -c Read checksums from the file and check them against
+ the files on your systems. The input files files
+ should be formatted as the output of the 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
+ -z option is also used.
+
+ -L Output checksums in lower-case hexadecimal
+ representation. (Default)
+
+ -l bits
+ For bsum:
+ Select version of the BLAKE algorithm. Valid
+ values are 224 (default), 256, 384, and 512.
+
+ For b2sum:
+ Select output size, valid values are multiples
+ of 8 between 8 and 512, inclusively, or if
+ the -s option is used between 8 and 256,
+ inclusively. (Default is maximum.)
+
+ -s (Only available in b2sum)
+ Use BLAKE2s instead of BLAKE2b.
+
+ -U Output checksums in upper-case hexadecimal
+ representation.
+
+ -X bits
+ (Only available in b2sum)
+ 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 -s
+ option is used) 524280.
+
+ -x Convert input files from hexadecimal form to binary
+ form before calculating the checksums.
+
+ -z Lines end with NUL instead of LF. If used with -c,
+ this applies to read files (not the output), but it
+ will also apply more strict parsing and allow any
+ whitespace in file names.
+
+OPERANDS
+ The following operands are supported:
+
+ file File to read. The standard input will be used - or no
+ file is specified.
+
+EXIT STATUS
+ 0 Successful completion.
+
+ 1 Checksums did not match or a file did not exist.
+
+ 2 An error occurred.
+
+NOTES
+ BLAKE2X has not been finalised as of 2022-02-20.
+
+SEE ALSO
+ sha3sum, sha256sum(1), sha512sum(1)
diff --git a/b224sum.1 b/b224sum.1
index 874535a..ff9f1a6 100644
--- a/b224sum.1
+++ b/b224sum.1
@@ -2,7 +2,7 @@
.SH NAME
b224sum - Compute and check BLAKE-224 message digests
.SH SYNOPSIS
-.B bsum
+.B b224sum
[-c | -B | -L | -U] [-xz]
.RI [ file "] ..."
.SH DESCRIPTION
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
diff --git a/b256sum.1 b/b256sum.1
index 039ee51..4a1fa89 100644
--- a/b256sum.1
+++ b/b256sum.1
@@ -2,7 +2,7 @@
.SH NAME
b256sum - Compute and check BLAKE-256 message digests
.SH SYNOPSIS
-.B bsum
+.B b256sum
[-c | -B | -L | -U] [-xz]
.RI [ file "] ..."
.SH DESCRIPTION
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
diff --git a/b2sum.1 b/b2sum.1
index a4e1f4b..04594fc 100644
--- a/b2sum.1
+++ b/b2sum.1
@@ -2,7 +2,7 @@
.SH NAME
b2sum - Compute and check BLAKE2 message digests
.SH SYNOPSIS
-.B bsum
+.B b2sum
[-l bits | -X bits] [-c | -B | -L | -U] [-sxz]
.RI [ file "] ..."
.SH DESCRIPTION
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
@@ -49,7 +49,7 @@ 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, int bits,
+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
diff --git a/b2sum.c b/b2sum.c
index 8d16d38..ebaba67 100644
--- a/b2sum.c
+++ b/b2sum.c
@@ -19,7 +19,7 @@ static size_t hashlen;
static void
usage(void)
{
- /* TODO add support for key, salt, and personalization */
+ /* TODO add support for key (-K), salt (-S), and personalization (-P) */
/* TODO add support for parallel versions */
/* TODO add support for tree hashing */
fprintf(stderr, "usage: %s [-l bits | -X bits] [-c | -B | -L | -U] [-sxz] [file] ...", argv0);
diff --git a/b384sum.1 b/b384sum.1
index d7f2eaf..bfa09da 100644
--- a/b384sum.1
+++ b/b384sum.1
@@ -2,7 +2,7 @@
.SH NAME
b384sum - Compute and check BLAKE-384 message digests
.SH SYNOPSIS
-.B bsum
+.B b384sum
[-c | -B | -L | -U] [-xz]
.RI [ file "] ..."
.SH DESCRIPTION
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
diff --git a/b512sum.1 b/b512sum.1
index 2c0fd00..580379d 100644
--- a/b512sum.1
+++ b/b512sum.1
@@ -2,7 +2,7 @@
.SH NAME
b512sum - Compute and check BLAKE-512 message digests
.SH SYNOPSIS
-.B bsum
+.B b512sum
[-c | -B | -L | -U] [-xz]
.RI [ file "] ..."
.SH DESCRIPTION
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
diff --git a/bsum.1 b/bsum.1
index 442af70..5a66049 100644
--- a/bsum.1
+++ b/bsum.1
@@ -27,7 +27,7 @@ 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
+contain a <newline>, unless the
.B -z
option is also used.
.TP
diff --git a/bsum.c b/bsum.c
index 648d7fb..2e06225 100644
--- a/bsum.c
+++ b/bsum.c
@@ -16,6 +16,7 @@ static int length;
static void
usage(void)
{
+ /* TODO add support for salt (-S) */
fprintf(stderr, "usage: %s%s [-c | -B | -L | -U] [-xz] [file] ...",
argv0, lenght_by_command_name ? "" : " [-l bits]");
exit(2);