Pages:
Author

Topic: Pollard's kangaroo ECDLP solver - page 47. (Read 58537 times)

full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 03:52:12 PM
Quote
I try sript with 30 and 34. Then 30 I got 109 pubkeys, then 32 - 137 pubkeys. And Yes - script hard to run, requirements are give me strange errors...
If you are using Python 3.x, all you have to change is:

pubkey = '03a2efa402fd5268400c77c20e574ba86409ededee7c4020e4b9f0edbee53de0d4'

to whatever pubkey you want

and at the bottom

shiftdown(pubkey, 32)

change the 32 to however many pubkeys you want.
member
Activity: 72
Merit: 43
July 06, 2021, 03:51:19 PM
it was just an example (random k generated)

from 120 puzzle we substract the starting range 800000000000000000000000000000 and we obtain the following K 03D943C68C5F958B14524CDBEF68168D6C018E101F4F7074E0C31686384A82F52F

N/2 - above K = 026C25951D1BB97C7DE3020DF0F725487FC33CC1210A155755514B7BF384AACFAD

From this K which is basically N/2 - Puz120 K + START-RANGE we add random K in the interval (0x1 - 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
We compute 10kk points in the range (N/2 - 10kk, N/2), points which cover the following range if we exclude parity (N/2 - 10kk, N/2 + 10kk)
Maybe i will draw something tomorrow for better understanding.

PS: I'm not saying this method will be exponentially "better" but it will double the chances to find k
member
Activity: 873
Merit: 22
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
July 06, 2021, 03:45:07 PM
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 03:42:02 PM
member
Activity: 873
Merit: 22
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
July 06, 2021, 03:39:33 PM
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 02:45:55 PM
Sure,
I will just give a simple example.
Lets say you get the key close to the N half, lets take for example a random point 7fffffffffffffffffffffffffffffff5d1777e13d618b66b81ee5de17cf885a (we pushed for example 120 puzzle to this k) which results in
K = 0269da924844fcc5852ef6808f0e0bc9e851bd7b6b23d6e55d4b152ab0101fedfd
The diff between N/2 and our point is 3ff6921a42c4b727ca4968504b9846
With a big enough hash table which we need to compute as we want (random/incremental), lets say we compute from 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681A20A0 to 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 (small example) then our table will contain 0x10000 public keys, but in reality it is 0x20000 (double).
If we discard Y or parity from our K computation when we generate random steps (increments) we have a double change to get it right.
If our random increment difference  was bigger than normal hash table size (but not bigger than double) than we will have a match and we can easily compute the right k from the known K.

Dont know if i was clear enough, if not i will try to illustrate it  Smiley
Made need the illustration now Smiley

But one quick question, if we push as you said and the diff between N/2 and our point is 3ff6921a42c4b727ca4968504b9846, would that be big enough to solve since 120 starting range is
800000000000000000000000000000?  120s pubkey added to 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 should at least be a difference of 800000000000000000000000000000, right?
member
Activity: 72
Merit: 43
July 06, 2021, 02:32:34 PM
Sure,
I will just give a simple example.
Lets say you get the key close to the N half, lets take for example a random point 7fffffffffffffffffffffffffffffff5d1777e13d618b66b81ee5de17cf885a (we pushed for example 120 puzzle to this k) which results in
K = 0269da924844fcc5852ef6808f0e0bc9e851bd7b6b23d6e55d4b152ab0101fedfd
The diff between N/2 and our point is 3ff6921a42c4b727ca4968504b9846
With a big enough hash table which we need to compute as we want (random/incremental), lets say we compute from 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681A20A0 to 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 (small example) then our table will contain 0x10000 public keys, but in reality it is 0x20000 (double).
If we discard Y or parity from our K computation when we generate random steps (increments) we have a double change to get it right.
If our random increment difference  was bigger than normal hash table size (but not bigger than double) than we will have a match and we can easily compute the right k from the known K.

Dont know if i was clear enough, if not i will try to illustrate it  Smiley
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 10:54:57 AM
Another method instead of pubkey reducing is actually increasing it.
Lets not forget about curve properties and how it can actually help us solve a puzzle a little faster.
if you manage to push the K to the right limit in the curve "middle" 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 than it will be twice faster.
What i mean with twice faster is that we can try to match a K without parity
If half = 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 than all other points after will generate same X but with inverse parity.
Basically it's easier to push the key to the middle and increment it until a match is found because of this property.
Just my 2 cents  Grin

I'm tracking, but can you give an example?
member
Activity: 72
Merit: 43
July 06, 2021, 06:06:35 AM
Another method instead of pubkey reducing is actually increasing it.
Lets not forget about curve properties and how it can actually help us solve a puzzle a little faster.
if you manage to push the K to the right limit in the curve "middle" 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 than it will be twice faster.
What i mean with twice faster is that we can try to match a K without parity
If half = 7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 than all other points after will generate same X but with inverse parity.
Basically it's easier to push the key to the middle and increment it until a match is found because of this property.
Just my 2 cents  Grin
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
July 06, 2021, 05:32:58 AM
Quote
in my view , we are talking off topic here , as my posts were deleted in past at this forum, and admin/mod and creator of this thread, reported, offtopic discus not allowed, maybe we get this warning again, till that some one wakeup, seems at all thread , bitcrack, 100 btc puzzle, 32 btc puzzle, all people sleeping, not fruit full posts, rear time post only left with newbie for just asking, how to install bitcrack, whats speed getting , Q etc
love to stay silent, before some one again report and post delete
Start a new thread...or I can

Too late.... I already did.
member
Activity: 330
Merit: 34
July 06, 2021, 02:28:20 AM
Quote
in my view , we are talking off topic here , as my posts were deleted in past at this forum, and admin/mod and creator of this thread, reported, offtopic discus not allowed, maybe we get this warning again, till that some one wakeup, seems at all thread , bitcrack, 100 btc puzzle, 32 btc puzzle, all people sleeping, not fruit full posts, rear time post only left with newbie for just asking, how to install bitcrack, whats speed getting , Q etc
love to stay silent, before some one again report and post delete
Start a new thread...or I can
no need new thread, basically we are talking inside topic, and head topic is bitcrack, kanagroo ecdlp solver etc, but mod/creator thread, only want listen what they want, they dont want listen in depth, so in respect to there wishes, we work at our end, and no discussion, above i post tip, in depth every one can try at their own level
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 02:22:59 AM
Quote
in my view , we are talking off topic here , as my posts were deleted in past at this forum, and admin/mod and creator of this thread, reported, offtopic discus not allowed, maybe we get this warning again, till that some one wakeup, seems at all thread , bitcrack, 100 btc puzzle, 32 btc puzzle, all people sleeping, not fruit full posts, rear time post only left with newbie for just asking, how to install bitcrack, whats speed getting , Q etc
love to stay silent, before some one again report and post delete
Start a new thread...or I can
member
Activity: 330
Merit: 34
July 06, 2021, 02:21:43 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc

I guess we could see a mini-business appearing in the future of people selling reduced puzzle transaction keys, but this is obviously a very risky business too in the same way that bought wallet.dat brute-forcing is also high risk (and usually downright scam).

for 20 bit down = 1024*1024 = 1048576 pubkeys
~

1048576 and 1073741824 pubkeys with each other addition and mutiplication will return you 260 pubkeys apear where 16 pubkeys sure inside 10 bit down from main pubkey
these 260 pubkeys again played for get 30 bit down for 1/720 pubkeys

I don't get this tip. When I tried to shift down #120 by 20 bit I was looking at 2^20 total pubkeys generated from this. How do you manage to make do with only 260 or 720 of them? That's even less than the 1024 pubkeys I obtained from shifting 10 bits down.
Here is one tip, division equals twice as many pubkeys. Look at my post above, I can shift 16 bits down with the expense of only 2^15 keys, cutting the fat by half.
With brainless, who knows, he is a wizard at pubkey/range reduction.
in my view , we are talking off topic here , as my posts were deleted in past at this forum, and admin/mod and creator of this thread, reported, offtopic discus not allowed, maybe we get this warning again, till that some one wakeup, seems at all thread , bitcrack, 100 btc puzzle, 32 btc puzzle, all people sleeping, not fruit full posts, rear time post only left with newbie for just asking, how to install bitcrack, whats speed getting , Q etc
love to stay silent, before some one again report and post delete
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 01:50:19 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc

I guess we could see a mini-business appearing in the future of people selling reduced puzzle transaction keys, but this is obviously a very risky business too in the same way that bought wallet.dat brute-forcing is also high risk (and usually downright scam).

for 20 bit down = 1024*1024 = 1048576 pubkeys
~

1048576 and 1073741824 pubkeys with each other addition and mutiplication will return you 260 pubkeys apear where 16 pubkeys sure inside 10 bit down from main pubkey
these 260 pubkeys again played for get 30 bit down for 1/720 pubkeys

I don't get this tip. When I tried to shift down #120 by 20 bit I was looking at 2^20 total pubkeys generated from this. How do you manage to make do with only 260 or 720 of them? That's even less than the 1024 pubkeys I obtained from shifting 10 bits down.
Here is one tip, division equals twice as many pubkeys. Look at my post above, I can shift 16 bits down with the expense of only 2^15 keys, cutting the fat by half.
With brainless, who knows, he is a wizard at pubkey/range reduction.
full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 01:48:36 AM
" I got it down to 104 bits today, but with 32,000 pubkeys; better than the normal 2^16 normally required, but I can't figure out a way to shrink it down to one key... "

for 10 bit down = 1024 pubkeys
for 20 bit down = 1024*1024 = 1048576 pubkeys
for 30 bit down = 1024*1024*1024 = 1073741824 pubkeys

1048576 and 1073741824 pubkeys with each other addition and mutiplication will return you 260 pubkeys apear where 16 pubkeys sure inside 10 bit down from main pubkey
these 260 pubkeys again played for get 30 bit down for 1/720 pubkeys
now you can start to find with above tip


I'll try to digest and understand what you are saying/doing to shrink the range with limited pubkeys...intersting
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
July 06, 2021, 01:48:11 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc

I guess we could see a mini-business appearing in the future of people selling reduced puzzle transaction keys, but this is obviously a very risky business too in the same way that bought wallet.dat brute-forcing is also high risk (and usually downright scam).

for 20 bit down = 1024*1024 = 1048576 pubkeys
~

1048576 and 1073741824 pubkeys with each other addition and mutiplication will return you 260 pubkeys apear where 16 pubkeys sure inside 10 bit down from main pubkey
these 260 pubkeys again played for get 30 bit down for 1/720 pubkeys

I don't get this tip. When I tried to shift down #120 by 20 bit I was looking at 2^20 total pubkeys generated from this. How do you manage to make do with only 260 or 720 of them? That's even less than the 1024 pubkeys I obtained from shifting 10 bits down.
member
Activity: 330
Merit: 34
July 06, 2021, 01:39:39 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc
if 115 could be only 1 key, then is there any delay for 40bit for 1 key ? Smiley
and do you think july 2021 status at blockchain for 120 puzzle is solved and transfered Smiley


Yeah I don't know riddler.

I know you think outside the box, and I like that.

I was messing with division and addition today and there were some keys that I could not find after reducing. Kinda scary. I was using BSGS to search for them (all were 52 bit and less.)

If you can get it down to one key, down to a 40 bit, then the btc will be yours soon!

I got it down to 104 bits today, but with 32,000 pubkeys; better than the normal 2^16 normally required, but I can't figure out a way to shrink it down to one key...

EDIT: I know how to get it down to a 40 bit range with 1 key, it would just take a very long time...
btw last year i claim, i can find easily pubkey bitrange, check my past posts, btw puzzle 120 prvkey i found a year ago, but no interest, for cashout it, i am currently research on addresses, where no pubkey, like puzzle 64, for that, i request on forums, for modification at bitcrack, and some modification at gpu level pubkey addition and multiplications, unfortunately no developer have time to do it, end of this year , maybe at happy new year i announce first address of blockchain, belong to me Smiley
So you found the private key and want cash in return for the key?
No
member
Activity: 330
Merit: 34
July 06, 2021, 01:38:34 AM
" I got it down to 104 bits today, but with 32,000 pubkeys; better than the normal 2^16 normally required, but I can't figure out a way to shrink it down to one key... "

for 10 bit down = 1024 pubkeys
for 20 bit down = 1024*1024 = 1048576 pubkeys
for 30 bit down = 1024*1024*1024 = 1073741824 pubkeys

1048576 and 1073741824 pubkeys with each other addition and mutiplication will return you 260 pubkeys apear where 16 pubkeys sure inside 10 bit down from main pubkey
these 260 pubkeys again played for get 30 bit down for 1/720 pubkeys
now you can start to find with above tip

full member
Activity: 1162
Merit: 237
Shooters Shoot...
July 06, 2021, 01:33:04 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc
if 115 could be only 1 key, then is there any delay for 40bit for 1 key ? Smiley
and do you think july 2021 status at blockchain for 120 puzzle is solved and transfered Smiley


Yeah I don't know riddler.

I know you think outside the box, and I like that.

I was messing with division and addition today and there were some keys that I could not find after reducing. Kinda scary. I was using BSGS to search for them (all were 52 bit and less.)

If you can get it down to one key, down to a 40 bit, then the btc will be yours soon!

I got it down to 104 bits today, but with 32,000 pubkeys; better than the normal 2^16 normally required, but I can't figure out a way to shrink it down to one key...

EDIT: I know how to get it down to a 40 bit range with 1 key, it would just take a very long time...
btw last year i claim, i can find easily pubkey bitrange, check my past posts, btw puzzle 120 prvkey i found a year ago, but no interest, for cashout it, i am currently research on addresses, where no pubkey, like puzzle 64, for that, i request on forums, for modification at bitcrack, and some modification at gpu level pubkey addition and multiplications, unfortunately no developer have time to do it, end of this year , maybe at happy new year i announce first address of blockchain, belong to me Smiley
So you found the private key and want cash in return for the key?
member
Activity: 330
Merit: 34
July 06, 2021, 12:41:00 AM
Quote
btw i can offer 115bit range only 1 key, for make this key i need 0.75btc for buying 3090rtx gpu's for my calc fast to within 7 days Smiley, but here no one have this for work of months to days Smiley
For me, to even consider it, I'd have to know your method/how you cut it to 115 with only 1 key. I don't doubt you can, just never seen it.

Best I did once was to cut it down to 108 bit, with 1 out of 2048 keys being in the range.

And couldn't do it for less than .50 btc
if 115 could be only 1 key, then is there any delay for 40bit for 1 key ? Smiley
and do you think july 2021 status at blockchain for 120 puzzle is solved and transfered Smiley


Yeah I don't know riddler.

I know you think outside the box, and I like that.

I was messing with division and addition today and there were some keys that I could not find after reducing. Kinda scary. I was using BSGS to search for them (all were 52 bit and less.)

If you can get it down to one key, down to a 40 bit, then the btc will be yours soon!

I got it down to 104 bits today, but with 32,000 pubkeys; better than the normal 2^16 normally required, but I can't figure out a way to shrink it down to one key...

EDIT: I know how to get it down to a 40 bit range with 1 key, it would just take a very long time...
btw last year i claim, i can find easily pubkey bitrange, check my past posts, btw puzzle 120 prvkey i found a year ago, but no interest, for cashout it, i am currently research on addresses, where no pubkey, like puzzle 64, for that, i request on forums, for modification at bitcrack, and some modification at gpu level pubkey addition and multiplications, unfortunately no developer have time to do it, end of this year , maybe at happy new year i announce first address of blockchain, belong to me Smiley
Pages:
Jump to: