Skip to content

Commit

Permalink
restore bls tests expected values
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasArrachea committed Dec 20, 2024
1 parent aeeae03 commit 07dc094
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/crypto/bls/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,14 +526,14 @@ mod tests {
assert_eq!(
U256::from_limbs(g1.x().unwrap().into_bigint().0),
U256::from_str(
"14528991250861404666834535435384615765856667510756806797353855100662256435714"
"455867356320691211509944977504407603390036387149619137164185182714736811811"
)
.unwrap()
);
assert_eq!(
U256::from_limbs(g1.y().unwrap().into_bigint().0),
U256::from_str(
"1084634806445338125226100575785895110643952950453653534955932359686296806861"
"9802125641729881429496664198939823213610051907104384160271670136040620850981"
)
.unwrap()
);
Expand All @@ -553,14 +553,14 @@ mod tests {
assert_eq!(
U256::from_limbs(signature.g1_point().g1().x().unwrap().into_bigint().0),
U256::from_str(
"6480852672313836368883198697599909951599236047787132531972745015650532978134"
"6125087140203962697351933212367898471377426213402772883153680722977416765651"
)
.unwrap()
);
assert_eq!(
U256::from_limbs(signature.g1_point().g1().y().unwrap().into_bigint().0),
U256::from_str(
"20692567294854493165175278753837678513615081984887336401902704973346059699322"
"19120302240465611628345095276448175199636936878728446037184749040811421969742"
)
.unwrap()
);
Expand Down

0 comments on commit 07dc094

Please sign in to comment.