1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
// Copyright (C) 2023 Entropy Cryptography Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use std::str;
use serde::{Deserialize, Serialize};
use sp_core::sr25519;
use synedrion::sessions::SignedMessage;
use crate::{protocol_transport::errors::ProtocolMessageErr, PartyId};
/// A Message send during the signing or DKG protocol.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(test, derive(PartialEq, Eq))]
pub struct ProtocolMessage {
/// Identifier of the author of this message
pub from: PartyId,
/// Identifier of the destination of this message
pub to: PartyId,
/// The signed protocol message
pub payload: SignedMessage<sr25519::Signature>,
}
impl TryFrom<&[u8]> for ProtocolMessage {
type Error = ProtocolMessageErr;
fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
let parsed_msg: ProtocolMessage = bincode::deserialize(value)?;
Ok(parsed_msg)
}
}
impl ProtocolMessage {
pub(crate) fn new(
from: &PartyId,
to: &PartyId,
payload: SignedMessage<sr25519::Signature>,
) -> Self {
Self { from: from.clone(), to: to.clone(), payload }
}
}