mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 21:49:26 +00:00
12 lines
333 B
Rust
12 lines
333 B
Rust
|
|
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>) {}
|
||
|
|
}
|