Post
Topic
Board Development & Technical Discussion
Re: Pollard's kangaroo ECDLP solver
by
NotATether
on 07/07/2021, 17:25:17 UTC
Is this how you can do it in a kangaroo?

There is an example right in the README file of https://github.com/JeanLucPons/Kangaroo

Quote
Structure of the input file:

All values are in hex format
Public keys can be given either in compressed or uncompressed format
Code:
Start range
End range
Key #1
Key #2
...
ex

Code:
49dccfd96dc5df56487436f5a1b18c4f5d34f65ddb48cb5e0000000000000000
49dccfd96dc5df56487436f5a1b18c4f5d34f65ddb48cb5effffffffffffffff
0459A3BFDAD718C9D3FAC7C187F1139F0815AC5D923910D516E186AFDA28B221DC994327554CED887AAE5D211A2407CDD025CFC3779ECB9C9D7F2F1A1DDF3E9FF8
0335BB25364370D4DD14A9FC2B406D398C4B53C85BE58FCC7297BD34004602EBEC

Third, fourth, and below lines contain each of your public keys that you want to search for.

I wouldn't try it with 100K keys as input though, I'm not sure if it can handle that many.