Post
Topic
Board Development & Technical Discussion
Re: Compute Z with rs and the priv key
by
jvaimamu
on 13/06/2025, 09:16:26 UTC
Quote
is it possible to compute z with rs , priv key and the public key?
Yes.
Code:
s=(z+rd)/k
sk=z+rd
sk-rd=z
z=sk-rd
z*G=sR-rQ
If you know private key "d", and signature private key "k", then you can just compute "sk-rd", and it will give you z-value.


I don't know the k , I Know only rs , the private key of the public key Q , R (rx , ry)
I want to compute the corresponding z of the rs
Is it possible ?