Which program can iterate bitwise but not in direct order?
Example.
We have start number in dec
223549943504745960712268251712
And have map position bits
0->10, 1->25, 2->8, 3->51 and etc
In this variants next number
not 22354994350474596071226825171
3convert to bin
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000010 01000000
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000110 01000000in dec 223549943504745960712268252736
next
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000110 01000000
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000010 01100101 10000010 01000000in dec 223549943504745960712301806144
next
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 110000
10 01100101 10000
010 01000000
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 110000
10 01100101 10000
110 01000000
dec 223549943504745960712301807168
next
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000010 01100101 10000110 01000000
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000dec 223549943504745960712268251968
and etc for all position.
Well, its understandable to apply the obtained values as a private key to check for matches.
It is also desirable that the key is cut to the desired value in bits and the first bit is set to the left. According to the specified lengths.
Example.
In programm seeted values 70,71,72,73,74
App calculate next priv sample in bin
00000010 11010010 01010100 00101101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000and try get key from next data
orig :...101 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
74bits: 11 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
73bits: 1 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
72bits: 11100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
71bits: 1100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
70bits: 100000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
69bits: 10000 01010111 11000110 00101011 10001001 11000000 01100101 10000011 01000000
Which app can make this? Kango, vanity, hashcat? And nead calcualte on GPU. On CPU i have realisation on php.