Misc continuances on the Monero processor

This commit is contained in:
Luke Parker
2024-09-13 00:48:57 -04:00
parent 02409c5735
commit 2c4c33e632
9 changed files with 46 additions and 126 deletions

View File

@@ -43,7 +43,11 @@ pub trait KeyGenParams {
>;
/// Tweaks keys as necessary/beneficial.
fn tweak_keys(keys: &mut ThresholdKeys<Self::ExternalNetworkCiphersuite>);
///
/// A default implementation which doesn't perform any tweaking is provided.
fn tweak_keys(keys: &mut ThresholdKeys<Self::ExternalNetworkCiphersuite>) {
let _ = keys;
}
/// Encode keys as optimal.
///