Monero processor primitives

This commit is contained in:
Luke Parker
2024-09-12 18:40:10 -04:00
parent 0d4c8cf032
commit f2cf03cedf
16 changed files with 873 additions and 147 deletions

View File

@@ -0,0 +1,11 @@
use ciphersuite::{group::GroupEncoding, Ciphersuite, Ed25519};
use frost::ThresholdKeys;
pub(crate) struct KeyGenParams;
impl key_gen::KeyGenParams for KeyGenParams {
const ID: &'static str = "Monero";
type ExternalNetworkCiphersuite = Ed25519;
fn tweak_keys(keys: &mut ThresholdKeys<Self::ExternalNetworkCiphersuite>) {}
}