Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/b2sum
diff options
context:
space:
mode:
authorSamuel Neves <sneves@dei.uc.pt>2016-06-22 10:13:00 +0300
committerSamuel Neves <sneves@dei.uc.pt>2016-06-22 10:13:00 +0300
commit9630d9a206de5b8622f6cb43d845d7b2329ceb2e (patch)
tree475327ccd8e768bbe1e27db1c30e642f84240529 /b2sum
parent5f2f566442fff6deb981567f4aa56b645552752b (diff)
add b2sum readme
Diffstat (limited to 'b2sum')
-rw-r--r--b2sum/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/b2sum/README b/b2sum/README
new file mode 100644
index 0000000..1fdaa17
--- /dev/null
+++ b/b2sum/README
@@ -0,0 +1,12 @@
+# 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](https://github.com/Homebrew/homebrew-core/commit/e016cda47dfa298c6628de3e9d0fd976eecd91be) which may be installed with `brew install b2sum`.
+