You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
The linkable ring signature requires two additional point multiplications and a point addition per round.
The problem is that the hacky multiply function returns an Ethereum address rather than a point.
Point addition can be performed by providing a witness of those points and verifying they hash to the same result.
e.g.
This means the total number of parameters required for a ring signature of N participants is:
Where
2*N
for the witnesses,N
for the public keys,N
for thet
values and one initial seed value.So, a ring of 10 keys requires 31 inputs of 32 bytes each, in addition to the public keys.
The text was updated successfully, but these errors were encountered: