2022-04-22 01:36:18 +00:00
|
|
|
#![cfg(feature = "multisig")]
|
|
|
|
|
2022-04-29 01:47:25 +00:00
|
|
|
use rand::{RngCore, rngs::OsRng};
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-04-29 19:28:04 +00:00
|
|
|
use curve25519_dalek::{traits::Identity, edwards::EdwardsPoint};
|
|
|
|
|
2022-04-28 16:01:20 +00:00
|
|
|
use monero_serai::{frost::MultisigError, key_image};
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-04-29 19:28:04 +00:00
|
|
|
use ::frost::sign;
|
|
|
|
|
2022-04-22 01:36:18 +00:00
|
|
|
mod frost;
|
2022-04-29 19:28:04 +00:00
|
|
|
use crate::frost::{THRESHOLD, PARTICIPANTS, DummyAlgorithm, generate_keys};
|
2022-04-22 01:36:18 +00:00
|
|
|
|
|
|
|
#[test]
|
2022-04-28 16:01:20 +00:00
|
|
|
fn test() -> Result<(), MultisigError> {
|
2022-04-29 01:47:25 +00:00
|
|
|
let (keys, group_private) = generate_keys();
|
2022-04-28 07:31:09 +00:00
|
|
|
let image = key_image::generate(&group_private);
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-04-29 01:47:25 +00:00
|
|
|
let mut included = (1 ..= PARTICIPANTS).into_iter().collect::<Vec<usize>>();
|
|
|
|
while included.len() > THRESHOLD {
|
|
|
|
included.swap_remove((OsRng.next_u64() as usize) % included.len());
|
|
|
|
}
|
|
|
|
included.sort();
|
|
|
|
|
2022-04-29 19:28:04 +00:00
|
|
|
let mut views = vec![];
|
|
|
|
let mut shares = vec![];
|
|
|
|
for i in 1 ..= PARTICIPANTS {
|
|
|
|
if included.contains(&i) {
|
|
|
|
// If they were included, include their view
|
|
|
|
views.push(sign::Params::new(DummyAlgorithm, keys[i - 1].clone(), &included).unwrap().view());
|
|
|
|
let share = key_image::generate_share(&mut OsRng, &views[i - 1]);
|
|
|
|
let mut serialized = share.0;
|
|
|
|
serialized.extend(b"abc");
|
|
|
|
serialized.extend(&share.1);
|
|
|
|
shares.push(serialized);
|
|
|
|
} else {
|
|
|
|
// If they weren't included, include dummy data
|
|
|
|
// Uses the view of someone actually included as Params::new verifies inclusion
|
|
|
|
views.push(sign::Params::new(DummyAlgorithm, keys[included[0] - 1].clone(), &included).unwrap().view());
|
|
|
|
shares.push(vec![]);
|
|
|
|
}
|
2022-04-22 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 19:28:04 +00:00
|
|
|
for i in &included {
|
|
|
|
let mut multi_image = EdwardsPoint::identity();
|
|
|
|
for l in &included {
|
|
|
|
let share = key_image::verify_share(&views[i - 1], *l, &shares[l - 1]).unwrap();
|
|
|
|
assert_eq!(share.1, b"abc");
|
|
|
|
multi_image += share.0;
|
|
|
|
}
|
|
|
|
assert_eq!(image, multi_image);
|
2022-04-22 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|