Closed zzyalbert closed 1 year ago
Good catch for the [from][id] -> [id][from]
, the verification would have failed.
I'm not sure about the nonce being in $\mathbb{Z}{N^2}^\star$ though, since Paillier nonces are defined as elements in $\mathbb{Z}{N}^\star$ (see Def 2.2 of the paper).
I think the verification of proveNth is wrong in presign.
The
msg.Nonce
is the encryption of Paillier, so it should be in range ofmod N^2
instead ofmod N
.Also the
deltaProof
dosen't matchDeltaCiphertext
in verification and that issue exists inchiProof
/ChiCiphertext
as well.