update readme to reflect actual usage

This commit is contained in:
Lily Tsuru 2023-08-22 05:05:23 -04:00
parent 91b3ae0dab
commit 5b412019af
1 changed files with 5 additions and 4 deletions

View File

@ -22,15 +22,16 @@ cmake --build build
``` ```
$ cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS="-march=native -mtune=native" $ cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS="-march=native -mtune=native"
$ cmake --build build $ cmake --build build
` ```
# Usage # Usage
`./swsf_bruteforce -s [START_LENGTH] -l [LENGTH] -e 0xABCDABCD` `./swsf_bruteforce [-X] -s [START_LENGTH] -e [LENGTH] 0xABCDABCD`
where: where:
`-s [START_LENGTH]` is the guessed start bound (greater than 2, less than end bound) `-X` enables exact length, the value of -s is used and only that length is checked.
`-l [LENGTH]` is the guessed end bound (less than or equal to 8) `-s [START_LENGTH]` is the guessed start bound (greater than 2, less than the value of `-e`)
`-l [END_LENGTH]` is the guessed end bound (greater than the value of `-s`, less than or equal to 8)
`0xABCDABCD` is the hash to use `0xABCDABCD` is the hash to use