paq files to hash.
Hash file or directory (recursively).
Directories output the top hash
, or root
, of a merkle tree.
Powered by SHA256
hashing algorithm.
Requires cargo.
Run cargo install paq
.
Run paq [src]
to hash source file or directory.
For help, run paq --help
.
Add paq
to project dependencies in Cargo.toml
.
```rust use paq;
let source = "/path/to/source"; let sourcehash: String = paq::hashsource(source);
println!("{}", source_hash); ```
Needs tests!