1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-07 07:10:35 +02:00
BLAKE2/b2sum
Pádraig Brady 2407e7a40a maint: strip various trailing whitespace
This falls afoul of various commit git commit hooks,
so strip trailing whitespace at EOL and EOF.
2016-11-09 21:34:46 +00:00
..
b2sum.1 remove comment that slipped in 2016-02-20 15:25:55 +00:00
b2sum.c maint: strip various trailing whitespace 2016-11-09 21:34:46 +00:00
makefile formatting, more c89 2016-10-12 15:19:55 +01:00
README.md rename readme 2016-06-22 08:14:58 +01:00

b2sum

This is a simple tool to create BLAKE2 hashes of files or streams. For more usage information refer to the manpage, e.g., man b2sum.1.

Building and Installing

To build b2sum, just run make. To install, run make install. The install path can be altered using the PREFIX variable, which defaults to /usr/local. Use PREFIX=/some/path make install to install somewhere else.

b2sum makes use of OpenMP by default. Some compilers do not support this technology, in which case b2sum can be built without it using the NO_OPENMP variable. Use NO_OPENMP=1 make to build without OpenMP.

For OS X, there is a prebuilt Homebrew formula which may be installed with brew install b2sum.