2018-09-23 10:19:30 +00:00
|
|
|
extern crate bls_aggregates;
|
2018-10-21 18:58:12 +00:00
|
|
|
extern crate hashing;
|
2018-12-18 06:04:54 +00:00
|
|
|
extern crate ssz;
|
|
|
|
|
|
|
|
mod aggregate_signature;
|
2018-12-29 03:31:16 +00:00
|
|
|
mod keypair;
|
2018-12-28 08:45:59 +00:00
|
|
|
mod public_key;
|
2018-12-29 03:31:16 +00:00
|
|
|
mod secret_key;
|
2018-12-18 06:04:54 +00:00
|
|
|
mod signature;
|
|
|
|
|
2018-12-23 23:03:56 +00:00
|
|
|
pub use crate::aggregate_signature::AggregateSignature;
|
2018-12-29 03:31:16 +00:00
|
|
|
pub use crate::keypair::Keypair;
|
2018-12-28 08:45:59 +00:00
|
|
|
pub use crate::public_key::PublicKey;
|
2018-12-29 03:31:16 +00:00
|
|
|
pub use crate::secret_key::SecretKey;
|
|
|
|
pub use crate::signature::Signature;
|
2018-09-23 10:19:30 +00:00
|
|
|
|
|
|
|
pub use self::bls_aggregates::AggregatePublicKey;
|
|
|
|
|
|
|
|
pub const BLS_AGG_SIG_BYTE_SIZE: usize = 97;
|
2018-10-21 18:58:12 +00:00
|
|
|
|
2018-12-11 22:47:05 +00:00
|
|
|
use hashing::canonical_hash;
|
2018-12-18 01:16:25 +00:00
|
|
|
use std::default::Default;
|
2018-12-28 08:45:59 +00:00
|
|
|
use ssz::ssz_encode;
|
2018-10-21 18:58:12 +00:00
|
|
|
|
2018-12-13 05:52:02 +00:00
|
|
|
fn extend_if_needed(hash: &mut Vec<u8>) {
|
|
|
|
// NOTE: bls_aggregates crate demands 48 bytes, this may be removed as we get closer to production
|
2018-12-18 01:16:25 +00:00
|
|
|
hash.resize(48, Default::default())
|
2018-12-13 05:52:02 +00:00
|
|
|
}
|
2018-10-21 18:58:12 +00:00
|
|
|
|
|
|
|
/// 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.
|
2018-11-04 14:35:00 +00:00
|
|
|
pub fn verify_proof_of_possession(sig: &Signature, pubkey: &PublicKey) -> bool {
|
2018-12-28 08:45:59 +00:00
|
|
|
let mut hash = canonical_hash(&ssz_encode(pubkey));
|
2018-12-13 05:52:02 +00:00
|
|
|
extend_if_needed(&mut hash);
|
2018-10-21 18:58:12 +00:00
|
|
|
sig.verify_hashed(&hash, &pubkey)
|
|
|
|
}
|
|
|
|
|
2018-11-04 14:35:00 +00:00
|
|
|
pub fn create_proof_of_possession(keypair: &Keypair) -> Signature {
|
2018-12-29 03:31:16 +00:00
|
|
|
let mut hash = canonical_hash(&ssz_encode(&keypair.pk));
|
2018-12-13 05:52:02 +00:00
|
|
|
extend_if_needed(&mut hash);
|
2018-10-21 18:58:12 +00:00
|
|
|
Signature::new_hashed(&hash, &keypair.sk)
|
|
|
|
}
|