Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
56962924
Topic
5244940
Board
Development & Technical Discussion
Re: Pollard's kangaroo ECDLP solver
by
fxsniper
on
08/05/2021, 08:49:18 UTC
Reference with script python kangaroo
http://bitchain.pl/100btc/pollard_kangaroo.txt
(now host down) backup
https://github.com/secoc/Pollard-Rho-kangaroo/blob/master/Pollard_Rho_kangaroo_with_Python2.7_demo.py
http://fe57.org/forum/thread.php?board=4&thema=1#1
What is DP_rarity ?
DP_rarity = 1 << (problem - 2 * kangoo_power) // 2 - 2
Is DP_rarity same DP method (distinguished point DP) right?
if P.x % DP_rarity == 0:
What is code check ? Modulus to zero this mean collision ?