mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-16 19:32:55 +00:00
## Issue Addressed Which issue # does this PR address? #2629 ## Proposed Changes Please list or describe the changes introduced by this PR. 1. ci would dowload the bls test cases from https://github.com/ethereum/bls12-381-tests/ 2. all the bls test cases(except eth ones) would use cases in the archive from step one 3. The bls test cases from https://github.com/ethereum/consensus-spec-tests would stay there and no use . For the future , these bls test cases would be remove suggested from https://github.com/ethereum/consensus-spec-tests/issues/25 . So it would do no harm and compatible for future cases. ## Additional Info Please provide any additional information. For example, future considerations or information useful for reviewers. Question: I am not sure if I should implement tests about `deserialization_G1`, `deserialization_G2` and `hash_to_G2` for the issue.
58 lines
1.8 KiB
Rust
58 lines
1.8 KiB
Rust
use super::*;
|
|
use crate::case_result::compare_result;
|
|
use crate::impl_bls_load_case;
|
|
use bls::{AggregateSignature, PublicKeyBytes};
|
|
use serde_derive::Deserialize;
|
|
use std::convert::TryInto;
|
|
use types::Hash256;
|
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
pub struct BlsFastAggregateVerifyInput {
|
|
pub pubkeys: Vec<PublicKeyBytes>,
|
|
#[serde(alias = "messages")]
|
|
pub message: String,
|
|
pub signature: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
pub struct BlsFastAggregateVerify {
|
|
pub input: BlsFastAggregateVerifyInput,
|
|
pub output: bool,
|
|
}
|
|
|
|
impl_bls_load_case!(BlsFastAggregateVerify);
|
|
|
|
impl Case for BlsFastAggregateVerify {
|
|
fn result(&self, _case_index: usize, _fork_name: ForkName) -> Result<(), Error> {
|
|
let message = Hash256::from_slice(
|
|
&hex::decode(&self.input.message[2..])
|
|
.map_err(|e| Error::FailedToParseTest(format!("{:?}", e)))?,
|
|
);
|
|
|
|
let pubkeys_result = self
|
|
.input
|
|
.pubkeys
|
|
.iter()
|
|
.map(|pkb| pkb.try_into())
|
|
.collect::<Result<Vec<_>, _>>();
|
|
|
|
let pubkeys = match pubkeys_result {
|
|
Ok(pubkeys) => pubkeys,
|
|
Err(bls::Error::InvalidInfinityPublicKey) if !self.output => {
|
|
return Ok(());
|
|
}
|
|
Err(e) => return Err(Error::FailedToParseTest(format!("{:?}", e))),
|
|
};
|
|
|
|
let pubkey_refs = pubkeys.iter().collect::<Vec<_>>();
|
|
|
|
let signature_ok = hex::decode(&self.input.signature[2..])
|
|
.ok()
|
|
.and_then(|bytes: Vec<u8>| AggregateSignature::deserialize(&bytes).ok())
|
|
.map(|signature| signature.fast_aggregate_verify(message, &pubkey_refs))
|
|
.unwrap_or(false);
|
|
|
|
compare_result::<bool, ()>(&Ok(signature_ok), &Some(self.output))
|
|
}
|
|
}
|