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
Fq2 elements are encoded in big-endian form, meaning that the Fq element c0 + c1 * u is represented by the Fq element c1 followed by the Fq element c0. This means Fq2 elements occupy 96 bytes in this form.
Py implementation mentions zkcrypto repository. Older version of readme contains statement:
newer implementation do this as well:
https://github.com/zkcrypto/bls12_381/blob/bc1706f6426aca52b9a99e5f100bdb7d119305d3/src/g2.rs#L249
I see that both py and rust implementations in algorand follow that.
Is there any particular reason for <c1, c0> vs <c0, c1> (is it specified in some doc?) or was the choice arbitrary?
The text was updated successfully, but these errors were encountered: