Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 537 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 537 Bytes

Setup Rust Environment: Ensure Rust and Cargo are installed on your system.

Clone the Repository:

git clone [your-repository-url]
cd hash_finder

Build the Program:

cargo build --release

Run the Program:

./target/release/hash_finder -n 3 -f 6

Or for the run with release flag:

cargo run --release -- -n 3 -f 6

Flag Explanation:

  • The -n flag specifies how many trailing zeros the hash should have.
  • The -f flag specifies how many results to find before stopping.