pull down to refresh
Pollard’s Kangaroo is a classical algorithm It’s useful if you’re doing a classical attack on a known range of private keys, but it’s nowhere near as fast as what a quantum computer could theoretically do.
reply
pull down to refresh
Pollard’s Kangaroo is a classical algorithm It’s useful if you’re doing a classical attack on a known range of private keys, but it’s nowhere near as fast as what a quantum computer could theoretically do.
Pollard's Kangaroo is an algorithm for solving the discrete logarithm problem (or in the Bitcoin case: solving the elliptic curve discrete logarithm problem (ECDLP)) where you already know that the secret scalar you are trying to find is within a certain range.
Q=k∗G
You know Q (the public key)
You know G (the generator point of secp256k1)
You are trying to find k (the private key)
The time complexity of Pollard's Kangaroo is O(n)
The time complexity of a naive brute force search is O(n)