1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-09-28 23:31:41 +02:00
BLAKE3/b3sum
2020-01-15 10:46:47 -05:00
..
src clarify that b3sum --keyed takes raw key bytes 2020-01-07 17:44:50 -05:00
tests make the --length argument require a value 2020-01-05 19:21:47 -05:00
Cargo.toml version 0.1.1 2020-01-13 14:47:28 -05:00
README.md update the b3sum README 2020-01-15 10:46:47 -05:00

b3sum

b3sum 0.1.1

USAGE:
    b3sum [FLAGS] [OPTIONS] [file]...

FLAGS:
    -h, --help        Prints help information
        --keyed       Uses the keyed mode, with the raw 32-byte key read from stdin
        --no-names    Omits filenames in the output
    -V, --version     Prints version information

OPTIONS:
        --derive-key <CONTEXT>    Uses the key derivation mode, with the input as key material
    -l, --length <LEN>            The number of output bytes, prior to hex encoding (default 32)

ARGS:
    <file>...

Building

The standard way to install b3sum is:

cargo install b3sum

On Linux for example, Cargo will put the compiled binary in ~/.cargo/bin. You might want to add that directory to your $PATH, or rustup might have done it for you when you installed Cargo.

If you want to install directly from this directory, you can run cargo install --path .. Or you can just build with cargo build --release, which puts the binary at ./target/release/b3sum.

AVX-512 support (via C FFI, with dynamic CPU feature detection) and multi-threading (via Rayon) are enabled by default. Note that the underlying blake3 crate does not enable those by default.