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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
mod essence;
mod milestone_id;
pub use essence::{MilestonePayloadEssence, MILESTONE_MERKLE_PROOF_LENGTH, MILESTONE_PUBLIC_KEY_LENGTH};
pub use milestone_id::{MilestoneId, MILESTONE_ID_LENGTH};
use crate::Error;
use bee_common::packable::{Packable, Read, Write};
use crypto::{
hashes::{blake2b::Blake2b256, Digest},
signatures::ed25519,
Error as CryptoError,
};
use alloc::{boxed::Box, vec::Vec};
use core::{convert::TryInto, ops::RangeInclusive};
pub const MILESTONE_SIGNATURE_COUNT_RANGE: RangeInclusive<usize> = 1..=255;
pub const MILESTONE_SIGNATURE_LENGTH: usize = 64;
#[derive(Debug)]
#[allow(missing_docs)]
pub enum MilestoneValidationError {
InvalidMinThreshold,
TooFewSignatures(usize, usize),
InsufficientApplicablePublicKeys(usize, usize),
UnapplicablePublicKey(String),
InvalidSignature(usize, String),
Crypto(CryptoError),
}
impl From<CryptoError> for MilestoneValidationError {
fn from(error: CryptoError) -> Self {
MilestoneValidationError::Crypto(error)
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MilestonePayload {
essence: MilestonePayloadEssence,
signatures: Vec<Box<[u8]>>,
}
impl MilestonePayload {
pub const KIND: u32 = 1;
pub fn new(
essence: MilestonePayloadEssence,
signatures: Vec<[u8; MILESTONE_SIGNATURE_LENGTH]>,
) -> Result<Self, Error> {
if !MILESTONE_SIGNATURE_COUNT_RANGE.contains(&signatures.len()) {
return Err(Error::MilestoneInvalidSignatureCount(signatures.len()));
}
if essence.public_keys().len() != signatures.len() {
return Err(Error::MilestonePublicKeysSignaturesCountMismatch(
essence.public_keys().len(),
signatures.len(),
));
};
Ok(Self {
essence,
signatures: signatures
.iter()
.map(|s| s.to_vec().into_boxed_slice())
.collect::<Vec<Box<[u8]>>>(),
})
}
pub fn id(&self) -> MilestoneId {
let mut hasher = Blake2b256::new();
hasher.update(Self::KIND.to_le_bytes());
hasher.update(self.pack_new());
MilestoneId::new(hasher.finalize().into())
}
pub fn essence(&self) -> &MilestonePayloadEssence {
&self.essence
}
pub fn signatures(&self) -> &Vec<Box<[u8]>> {
&self.signatures
}
pub fn validate(
&self,
applicable_public_keys: &[String],
min_threshold: usize,
) -> Result<(), MilestoneValidationError> {
if min_threshold == 0 {
return Err(MilestoneValidationError::InvalidMinThreshold);
}
if applicable_public_keys.len() < min_threshold {
return Err(MilestoneValidationError::InsufficientApplicablePublicKeys(
applicable_public_keys.len(),
min_threshold,
));
}
if self.signatures().len() < min_threshold {
return Err(MilestoneValidationError::TooFewSignatures(
min_threshold,
self.signatures().len(),
));
}
let essence_hash = self.essence().hash();
for (index, (public_key, signature)) in self
.essence()
.public_keys()
.iter()
.zip(self.signatures.iter())
.enumerate()
{
if !applicable_public_keys.contains(&hex::encode(public_key)) {
return Err(MilestoneValidationError::UnapplicablePublicKey(hex::encode(public_key)));
}
let ed25519_public_key =
ed25519::PublicKey::from_compressed_bytes(*public_key).map_err(MilestoneValidationError::Crypto)?;
let ed25519_signature = ed25519::Signature::from_bytes(signature.as_ref().try_into().unwrap());
if !ed25519_public_key.verify(&ed25519_signature, &essence_hash) {
return Err(MilestoneValidationError::InvalidSignature(
index,
hex::encode(public_key),
));
}
}
Ok(())
}
}
impl Packable for MilestonePayload {
type Error = Error;
fn packed_len(&self) -> usize {
self.essence.packed_len() + 0u8.packed_len() + self.signatures.len() * MILESTONE_SIGNATURE_LENGTH
}
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error> {
self.essence.pack(writer)?;
(self.signatures.len() as u8).pack(writer)?;
for signature in &self.signatures {
writer.write_all(&signature)?;
}
Ok(())
}
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(reader: &mut R) -> Result<Self, Self::Error> {
let essence = MilestonePayloadEssence::unpack_inner::<R, CHECK>(reader)?;
let signatures_len = u8::unpack_inner::<R, CHECK>(reader)? as usize;
let mut signatures = Vec::with_capacity(signatures_len);
for _ in 0..signatures_len {
signatures.push(<[u8; MILESTONE_SIGNATURE_LENGTH]>::unpack_inner::<R, CHECK>(reader)?);
}
Self::new(essence, signatures)
}
}