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
* docs: add GitHub DKG implementations
* Update documentation
* Simplify public commitments
* Update the readme
* Update the readme
* Add verification unit test for edge cases
* Add unit tests
let sig:BLSSignatureRaw = hex::decode("a9c08eff13742f78f1e5929888f223b5b5b12b4836b5417c5a135cf24f4e2a4c66a6cdef91be3098b7e7a6a63903b61302e3cf2b8653101da245cf01a8d82b25debe7b18a3a2eb1778f8628fd2c59c8687f6e048a31250fbc2804c20043b8443")
145
+
.unwrap()
146
+
.try_into()
147
+
.unwrap();
148
+
149
+
let pk = G1Affine::from_compressed(&pk).into_option().unwrap();
150
+
let sig = G2Affine::from_compressed(&sig).into_option().unwrap();
151
+
let hashed = G2Affine::from(hash_message_to_g2(&data));
0 commit comments