2018-09-23 10:19:30 +00:00
|
|
|
extern crate bls_aggregates;
|
2018-10-21 18:58:12 +00:00
|
|
|
extern crate hashing;
|
2018-09-23 10:19:30 +00:00
|
|
|
|
|
|
|
pub use self::bls_aggregates::AggregatePublicKey;
|
2018-11-04 14:35:00 +00:00
|
|
|
pub use self::bls_aggregates::AggregateSignature;
|
2018-09-23 10:19:30 +00:00
|
|
|
pub use self::bls_aggregates::Keypair;
|
|
|
|
pub use self::bls_aggregates::PublicKey;
|
2018-10-01 07:07:34 +00:00
|
|
|
pub use self::bls_aggregates::SecretKey;
|
2018-11-04 14:35:00 +00:00
|
|
|
pub use self::bls_aggregates::Signature;
|
2018-09-23 10:19:30 +00:00
|
|
|
|
|
|
|
pub const BLS_AGG_SIG_BYTE_SIZE: usize = 97;
|
2018-10-21 18:58:12 +00:00
|
|
|
|
|
|
|
use hashing::proof_of_possession_hash;
|
|
|
|
|
|
|
|
/// 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-10-21 18:58:12 +00:00
|
|
|
let hash = proof_of_possession_hash(&pubkey.as_bytes());
|
|
|
|
sig.verify_hashed(&hash, &pubkey)
|
|
|
|
}
|
|
|
|
|
2018-11-04 14:35:00 +00:00
|
|
|
pub fn create_proof_of_possession(keypair: &Keypair) -> Signature {
|
2018-10-21 18:58:12 +00:00
|
|
|
let hash = proof_of_possession_hash(&keypair.pk.as_bytes());
|
|
|
|
Signature::new_hashed(&hash, &keypair.sk)
|
|
|
|
}
|