-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BABE implementation #2
Comments
@kwanCCC Do you want to implement VRFs from scratch? I think a good strategy is to make abstract |
@keyvank |
pub trait CryptoStore {
fn generate_new_keypair();
fn sign_with(msg);
fn vrf_sign();
.......
} The Api of KeyStore maybe like this or some more methods. |
First important thing is VRF, We will use the Schnorrkel VRF and sr25519 signatures. But I'm not sure about the BLS because most BLS makes hashing-to-the-curve slow.
The text was updated successfully, but these errors were encountered: