bitlogik / lattice-attack

Lattice ECDSA attack
GNU General Public License v3.0
120 stars 36 forks source link

Input More Public Keys in Json #19

Closed KrashKrash closed 2 years ago

KrashKrash commented 2 years ago

Hi. i got a last question. i promise i wont ask again. i only got so many questions because i have really dedicated a lot of time studying this lattice attack. so please forgive me.

here is my question. is it possible to input more set of public keys?

Originally the format, its given like this,

{ "curve": "SECP256K1", "public_key": [ 111331833620428775240233382187933055793174856409319579791322903817125217698408, 5755111126829653867872057278670254688735347206263999683731713388425956344872 ], "known_type": "LSB", "known_bits": 6, "signatures": [ { "r":

but i try to input more data by doing this,

{ "curve": "SECP256K1", "public_key": [ 111331833620428775240233382187933055793174856409319579791322903817125217698408, 5755111126829653867872057278670254688735347206263999683731713388425956344872 ] [ 37382840372319074460104856483924927921283000440123096115088146910320100155281, 86269946550669675336094848155117007191502399434458917864357848489693982765534 ], "known_type": "LSB", "known_bits": 6,

but the output gave me this>>>>NOT A JSON FILE FORMAT.

1) how do i fix this to enable me to put in more public keys data?

2) is it even possible to give more public key inputs and lattice attack will work?