b2b
is a command line tool to calculate BLAKE2b hashes based on libsodium and sodiumoxide.
``` b2b 0.1.0 Dave Parfitt diparfitt@gmail.com Calculates BLAKE2b checksums using libsodium
USAGE:
b2b [FLAGS] [OPTIONS]
FLAGS: --base64 Display the value in RFC 4648 standard base64 encoding instead of hex -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-l, --length
ARGS:
You'll need the cargo
command from Rust and libsodium-dev
installed.
cargo install b2b
If this fails because Cargo can't find libsodium (typically OSX), try setting the following environment variables to the appropriate values:
```
export SODIUMLIBDIR=/some/path/ending/with/lib export LDLIBRARYPATH=$LDLIBRARYPATH:$SODIUMLIBDIR cargo install b2b ```
b2b is written in Rust.
TODO: untested
apt-get install libsodium-dev
cargo build
brew install libsodium
export SODIUM_LIB_DIR=`brew info libsodium | grep Cellar | awk '{ print $1 }'`/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SODIUM_LIB_DIR
cargo build
b2b is released under the Apache 2 license.
See also:
https://github.com/jedisct1/libsodium/blob/master/LICENSE
https://github.com/dnaq/sodiumoxide/blob/master/LICENSE
© 2016 Dave Parfitt