<<  >> (p.137)
    Author Topic: Pollard's kangaroo ECDLP solver  (Read 62402 times)
    arulbero
    Legendary
    *
    Online Online

    Activity: 2024
    Merit: 2268


    View Profile
    December 25, 2023, 03:00:36 PM
     #2721


    UPD: 25.12.2023
    Actually DoubleDirect() also not working. It starting to calculate wrong keys after some interval. Why this is can happen?
    The only function work so far for sequential private keys to public keys is ComputePublicKey().


    For sequential private keys there is the NextKey function.

    DoubleDirect does, as the name indicates, only the double of P.

    Then, if you start from G:

    G
    P = DoubleDirect(G)  :  G -> P = 2G
    P = NextKey(P)         :  P -> P+1 = 3G
    P = NextKey(P)         :  P -> P+1 = 4G
    P = NextKey(P)         :  P -> P+1 = 5G

    and so on
Page 136
Viewing Page: 137