bkcrack
bkcrack copied to clipboard
Clarify description of -x option
I had to look at the source to be sure that in -x offset data
, the offset is written in decimal.
While at it, it would be nice if you could say -x 0x100
instead of -x 256
, such as using %i
with scanf()
.
Hello, thank you for your suggestion.
it would be nice if you could say
-x 0x100
instead of-x 256
, such as using%i
withscanf()
.
This is already supported. It is a feature of std::stoi when the base argument is 0. I agree I should document this somewhere.
BTW, -x -1 XX doesn't work in v.1.3.2. Still worked in v.1.3.1.
BTW, -x -1 XX doesn't work in v.1.3.2. Still worked in v.1.3.1.
Nice catch, thank you. (I need to add automated testing.)