Skip to content

Commit

Permalink
full-signing: add serde support
Browse files Browse the repository at this point in the history
  • Loading branch information
survived committed Apr 2, 2024
1 parent 1331b75 commit a829372
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions givre/src/signing/full_signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ use super::{aggregate::Signature, round1::PublicCommitments, round2::SigShare};

/// Message of FROST Signing Protocol
#[derive(Debug, Clone, Copy, round_based::ProtocolMessage)]
#[cfg_attr(
feature = "serde",
derive(serde::Serialize, serde::Deserialize),
serde(bound = "")
)]
pub enum Msg<E: Curve> {
/// Round 1 message
Round1(PublicCommitments<E>),
Expand Down

0 comments on commit a829372

Please sign in to comment.