Post
Topic
Board Development & Technical Discussion
Re: 5-7 kangaroo method
by
arulbero
on 10/10/2024, 13:47:53 UTC


And still people believe BSGS would work faster. for whatever reason, with TB of RAM.. I let them continue believing that.




BSGS algorithm  applied to secp256k1 curve only need 1.0 sqrt(N) operations (in average) and 1.5 sqrt(N) operations at worse:

https://eprint.iacr.org/2015/605.pdf

You only need to store 0.5 sqrt(N) keys (the baby steps) : from 1*G to 0.5*sqrt(N)*G
and compute in the worst case 1 sqrt(N) keys (the giant steps)

Only subtractions, no multiplications.