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
Its a bit annoying to have the GexpPi calculations (n * n * quorum exps) done each time you fire up a decryptor. Could do them one time and store them in the ElectionInitialized record.
GexpPi (see eq 13, eq 74 of the EG 2.0 spec)
g^P(i) can be computed from the public commitments Kij as:
GexpPi = Prod_j(Prod_m(Kjm)^i^m, m = 0..quota-1), j - 1..n.
Operation count: n * n * quorum.
This value need only be computed once for each Guardian for all encryptions.
The text was updated successfully, but these errors were encountered:
Its a bit annoying to have the GexpPi calculations (n * n * quorum exps) done each time you fire up a decryptor. Could do them one time and store them in the ElectionInitialized record.
GexpPi (see eq 13, eq 74 of the EG 2.0 spec)
g^P(i) can be computed from the public commitments Kij as:
GexpPi = Prod_j(Prod_m(Kjm)^i^m, m = 0..quota-1), j - 1..n.
Operation count: n * n * quorum.
This value need only be computed once for each Guardian for all encryptions.
The text was updated successfully, but these errors were encountered: