Linck with code and descryption for recovering private key from sighnatures. Code in python for work with 128 bit nonce only:
code: https://asecuritysite.com/ecc/ecd
desryption:
https://blog.trailofbits.com/2020/06/11/ecdsa-handle-with-care/
how to modify code for work with 256 bit sighnatures ?
I already told you to just change lines 17 and 18 to 256 and it will work https://asecuritysite.com/ecc/ecd
k1 = random.randrange(1, pow(2, 256))
k2 = random.randrange(1, pow(2, 256))
private key ot found.
only message"private kwy", but no second message "privatevkey found"