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
In primitives/src/signatures/bls_over_bn254.rs.
Current Eq, Ord of the signature key is making some non-trivial conversion from a projective point to its affine representation.
In case of many expected comparisons and equality checks, e.g. when use the VerKey to index an BTreeMap, we could optimize the performance by storing its affine repr by default.
The text was updated successfully, but these errors were encountered:
In
primitives/src/signatures/bls_over_bn254.rs
.Current
Eq
,Ord
of the signature key is making some non-trivial conversion from a projective point to its affine representation.In case of many expected comparisons and equality checks, e.g. when use the
VerKey
to index anBTreeMap
, we could optimize the performance by storing its affine repr by default.The text was updated successfully, but these errors were encountered: