2019-02-14 01:09:18 +00:00
|
|
|
extern crate bls_aggregates;
|
|
|
|
extern crate ssz;
|
|
|
|
|
2019-03-03 00:10:38 +00:00
|
|
|
mod aggregate_public_key;
|
2019-02-14 01:09:18 +00:00
|
|
|
mod aggregate_signature;
|
|
|
|
mod keypair;
|
|
|
|
mod public_key;
|
|
|
|
mod secret_key;
|
|
|
|
mod signature;
|
|
|
|
|
2019-03-03 00:10:38 +00:00
|
|
|
pub use crate::aggregate_public_key::AggregatePublicKey;
|
2019-02-14 01:09:18 +00:00
|
|
|
pub use crate::aggregate_signature::AggregateSignature;
|
|
|
|
pub use crate::keypair::Keypair;
|
|
|
|
pub use crate::public_key::PublicKey;
|
|
|
|
pub use crate::secret_key::SecretKey;
|
|
|
|
pub use crate::signature::Signature;
|
|
|
|
|
2019-02-18 01:06:47 +00:00
|
|
|
pub const BLS_AGG_SIG_BYTE_SIZE: usize = 96;
|
2019-02-14 01:09:18 +00:00
|
|
|
|
2019-03-07 05:15:38 +00:00
|
|
|
use hashing::hash;
|
2019-02-14 01:09:18 +00:00
|
|
|
use ssz::ssz_encode;
|
|
|
|
|
|
|
|
/// For some signature and public key, ensure that the signature message was the public key and it
|
|
|
|
/// was signed by the secret key that corresponds to that public key.
|
2019-02-18 01:06:47 +00:00
|
|
|
pub fn verify_proof_of_possession(sig: &Signature, pubkey: &PublicKey) -> bool {
|
|
|
|
// TODO: replace this function with state.validate_proof_of_possession
|
|
|
|
// https://github.com/sigp/lighthouse/issues/239
|
|
|
|
sig.verify(&ssz_encode(pubkey), 0, &pubkey)
|
|
|
|
}
|
2019-02-15 02:58:14 +00:00
|
|
|
|
2019-02-18 01:06:47 +00:00
|
|
|
// TODO: Update this method
|
|
|
|
// https://github.com/sigp/lighthouse/issues/239
|
2019-02-14 01:09:18 +00:00
|
|
|
pub fn create_proof_of_possession(keypair: &Keypair) -> Signature {
|
2019-02-15 02:58:14 +00:00
|
|
|
Signature::new(&ssz_encode(&keypair.pk), 0, &keypair.sk)
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 05:15:38 +00:00
|
|
|
/// Returns the withdrawal credentials for a given public key.
|
|
|
|
pub fn get_withdrawal_credentials(pubkey: &PublicKey, prefix_byte: u8) -> Vec<u8> {
|
|
|
|
let hashed = hash(&ssz_encode(pubkey));
|
|
|
|
let mut prefixed = vec![prefix_byte];
|
|
|
|
prefixed.extend_from_slice(&hashed[1..]);
|
|
|
|
|
|
|
|
prefixed
|
|
|
|
}
|
|
|
|
|
2019-02-14 01:09:18 +00:00
|
|
|
pub fn bls_verify_aggregate(
|
|
|
|
pubkey: &AggregatePublicKey,
|
|
|
|
message: &[u8],
|
|
|
|
signature: &AggregateSignature,
|
2019-02-15 02:58:14 +00:00
|
|
|
domain: u64,
|
2019-02-14 01:09:18 +00:00
|
|
|
) -> bool {
|
2019-02-15 02:58:14 +00:00
|
|
|
signature.verify(message, domain, pubkey)
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|