w3f / bls

Aggregatable BLS sigantures
65 stars 15 forks source link

Implement bls signature related functions for (substrate) host API #48

Closed drskalman closed 1 year ago

drskalman commented 2 years ago

47 depends on application crypto which on its turn depends on host api providing the following functions

        sp_io::crypto::{
        bls_public_keys(key_type),
        bls_generate(key_type, seed)
        bls_sign(key_type, self, msg.as_ref())
        bls_verify(&signature, msg.as_ref(), self)}

which this issue requires to implement.