-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also write contacts to configs; move URL from Participant to Group; a…
…dd 'groups'
- Loading branch information
1 parent
8a0467e
commit 3cea6b6
Showing
6 changed files
with
164 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
use std::{error::Error, marker::PhantomData}; | ||
|
||
use eyre::eyre; | ||
use frost_core::{ | ||
keys::{KeyPackage, PublicKeyPackage}, | ||
Ciphersuite, | ||
}; | ||
use frost_ed25519::Ed25519Sha512; | ||
|
||
/// Additional information about a group, derived from the key packages. | ||
#[derive(Debug, Clone)] | ||
pub struct GroupInfo { | ||
pub hex_verifying_key: String, | ||
pub threshold: usize, | ||
pub num_participants: usize, | ||
} | ||
|
||
/// A trait that helps obtaining ciphersuite-dependent information. | ||
pub trait CiphersuiteHelper { | ||
fn group_info( | ||
&self, | ||
encoded_key_package: &[u8], | ||
encoded_public_key_package: &[u8], | ||
) -> Result<GroupInfo, Box<dyn Error>>; | ||
} | ||
|
||
/// An implementation of CiphersuiteHelper that works for any Ciphersuite. | ||
struct CiphersuiteHelperImpl<C: Ciphersuite> { | ||
_phantom: PhantomData<C>, | ||
} | ||
|
||
impl<C> Default for CiphersuiteHelperImpl<C> | ||
where | ||
C: Ciphersuite, | ||
{ | ||
fn default() -> Self { | ||
Self { | ||
_phantom: Default::default(), | ||
} | ||
} | ||
} | ||
|
||
/// Get a CiphersuiteHelper for the given ciphersuite. | ||
pub(crate) fn ciphersuite_helper( | ||
ciphersuite_id: &str, | ||
) -> Result<Box<dyn CiphersuiteHelper>, Box<dyn Error>> { | ||
if ciphersuite_id == "ed25519" { | ||
return Ok(Box::new(CiphersuiteHelperImpl::<Ed25519Sha512>::default())); | ||
} | ||
Err(eyre!("invalid ciphersuite ID").into()) | ||
} | ||
|
||
impl<C> CiphersuiteHelper for CiphersuiteHelperImpl<C> | ||
where | ||
C: Ciphersuite + 'static, | ||
{ | ||
fn group_info( | ||
&self, | ||
encoded_key_package: &[u8], | ||
encoded_public_key_package: &[u8], | ||
) -> Result<GroupInfo, Box<dyn Error>> { | ||
let key_package: KeyPackage<C> = postcard::from_bytes(encoded_key_package)?; | ||
let public_key_package: PublicKeyPackage<C> = | ||
postcard::from_bytes(encoded_public_key_package)?; | ||
let hex_verifying_key = hex::encode(public_key_package.verifying_key().serialize()?); | ||
Ok(GroupInfo { | ||
hex_verifying_key, | ||
threshold: *key_package.min_signers() as usize, | ||
num_participants: public_key_package.verifying_shares().len(), | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
use std::error::Error; | ||
|
||
use crate::{args::Command, config::Config}; | ||
|
||
pub(crate) fn list(args: &Command) -> Result<(), Box<dyn Error>> { | ||
let Command::Groups { config } = (*args).clone() else { | ||
panic!("invalid Command"); | ||
}; | ||
|
||
let config = Config::read(config)?; | ||
|
||
for group in config.group.values() { | ||
eprint!("{}", group.as_human_readable_summary(&config)?); | ||
eprintln!(); | ||
} | ||
|
||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters