For future use, F = 15, E = 14, D = 13, C = 12, B = 11, A = 10.
What about 1, 2, 3, 4, 5, 6, 7, 8, 9,?
Damn, this is more complicated than i thought it would be. I really didn't get it 100%%
Maybe because of the big numbers lol... Can you try it with a smaller puzzle? Maybe puzzle 64. F7051F27B09112D4. Please try step - by step .
Starting from 8000000000000000 and instanly Landing to F7051F27B09112D4.
And an example from puzzle 66 if possible too. What if the keys starts with 3? How the stride should look like? How about if the key starts with 2?
I am using clbitcrack. I have seen the source code, and i decided to develop my own stride function.. but i first need to fully understand it.
With the correct understanding of stride function and a little luck, puzzle 66 can be solved.`
EDITS: I will try your results after i go back home from work, and tell you if works.
DO NOT overcomplicate it with all of the previous posts/replies.
If you are using bitcrack, I think it uses decimals or hex. But either way, don't overcomplicate the stride function.
To make it easy, take whatever private key you are experimenting with; let's keep it small and say the private key is:
0x3E8, which equals 1,000 in decimal.
Your start range using bitcrack, has to at least start with 1, it can't be 0.
Now, we know our start range = 1.
For our demonstration, our private key is 0x3E8, which equals 1,000 in decimal.
1000 - 1 = 999 in decimal, or 3E7 in hex.
Now, to land on the private key we are looking for, 0x3E8, our stride needs to be a multiple of 999.
To keep this shorter and sweet, let's use a stride of 333.
So we have 1 gpu/cpu thread that will start on our starting range of 1.
It will first jump/stride 333 spots = 334
Next, it jumps/strides another 333 spots = 667
Next, another jump/stride of 333 spots = 1,000.
BOOM, we found the private key we were looking for.
If you chose a stride, because you do not know the private key, of let's say 334.
1+334 = 335
335+334=669
668+334=1002
In this example, we skipped/strided over the private key.
But do not fret, if you stay the course, eventually the key will be found.
In the next iteration, you will start with a starting range of 2, and then 3, ect.
Once you get to starting range 332, you will have a hit/find that private key.
332+334+334 = 1000, our private key.
Does this make more sense now on the stride function?