Post
Topic
Board Development & Technical Discussion
Re: Pollard's kangaroo ECDLP solver
by
lostbitcoin
on 25/04/2021, 21:36:45 UTC


Is this bolded number and point corresponding to G? Because this will make the problem easier to understand. I'm not really sure what you're trying to do when you say "oscillator".

I'm assuming you took the modular inverse G*(10G)-1 to get the 0.1 result? (And not just did straight up division of the 10 by the 1 Smiley)

I don't really see the point of using G/10 as the generator point for Kangaroo but it's technically possible if you edit the jump table.

I think lostbitcoin need to be show python modify code to can easy compare with C++ code, what want to do

python test

modulo = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F
order  = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141
Gx = 0xbff102842c489933c3b0fa4c057e67ca5227b4af1bccb4abd5221108c7380f6b
Gy = 0xa3602471806913ac65c7aa17e28048c5e94098e6a3b012a04fa321af485aa32c

class Point:
    def __init__(self, x=0, y=0):
        self.x = x
        self.y = y
PG = Point(Gx,Gy)

i want change

https://ibb.co/ZXVdQ0j


Receive input when playing the Kangaroo executable
Please modify the program so that the kangaroo can run it.


The reason is that Bitcoin 1% is an integer
99% was done with the decimal point key.
https://ibb.co/TqbhXS3


Friends will hear this story for the first time.
However, I did a lot of tests and found these things.

Someone please help me modify that part and test the kangaroo.