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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
use digest::{
core_api::{BlockSizeUser, OutputSizeUser},
HashMarker, Output, VariableOutput,
};
use std::io::Write;
use crate::ser::{ByteFormat, SerError, SerResult};
pub use digest::Digest;
pub use generic_array::GenericArray;
pub use ripemd::Ripemd160;
pub use sha2::Sha256;
pub use sha3::Sha3_256;
pub type DigestOutput<D> = GenericArray<u8, <D as OutputSizeUser>::OutputSize>;
pub trait MarkedDigestOutput:
Default + Copy + AsRef<[u8]> + AsMut<[u8]> + ByteFormat<Error = SerError>
{
fn size(&self) -> usize;
fn reversed(&self) -> Self {
let mut reversed = Self::default();
let mut digest_bytes = self.as_slice().to_vec();
digest_bytes.reverse();
reversed
.as_mut()
.copy_from_slice(&digest_bytes[..self.size()]);
reversed
}
fn from_be_hex(be: &str) -> SerResult<Self> {
Ok(Self::deserialize_hex(be)?.reversed())
}
fn to_be_hex(&self) -> String {
self.reversed().serialize_hex()
}
fn as_mut_slice(&mut self) -> &mut [u8] {
self.as_mut()
}
fn as_slice(&self) -> &[u8] {
self.as_ref()
}
}
pub trait MarkedDigest<D>: Digest + Default + Write
where
D: MarkedDigestOutput,
{
fn finalize_marked(self) -> D;
fn digest_marked(data: &[u8]) -> D;
}
#[derive(Clone, Default)]
pub struct Hash256(sha2::Sha256);
impl std::io::Write for Hash256 {
fn flush(&mut self) -> std::io::Result<()> {
Ok(())
}
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.update(buf);
Ok(buf.len())
}
}
impl HashMarker for Hash256 {}
impl BlockSizeUser for Hash256 {
type BlockSize = <Sha256 as BlockSizeUser>::BlockSize;
}
impl OutputSizeUser for Hash256 {
type OutputSize = <Sha256 as digest::OutputSizeUser>::OutputSize;
}
impl digest::FixedOutput for Hash256 {
fn finalize_into(self, out: &mut GenericArray<u8, Self::OutputSize>) {
let mut hasher = sha2::Sha256::default();
hasher.update(self.0.finalize());
Digest::finalize_into(hasher, out)
}
}
impl digest::FixedOutputReset for Hash256 {
fn finalize_into_reset(&mut self, out: &mut Output<Self>) {
let other = self.clone();
other.finalize_into(out);
self.0.reset();
}
}
impl digest::Reset for Hash256 {
fn reset(&mut self) {
Digest::reset(&mut self.0);
}
}
impl digest::Update for Hash256 {
fn update(&mut self, data: &[u8]) {
Digest::update(&mut self.0, data);
}
}
#[derive(Clone, Default)]
pub struct Hash160(sha2::Sha256);
impl std::io::Write for Hash160 {
fn flush(&mut self) -> std::io::Result<()> {
Ok(())
}
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.update(buf);
Ok(buf.len())
}
}
impl HashMarker for Hash160 {}
impl BlockSizeUser for Hash160 {
type BlockSize = <Ripemd160 as BlockSizeUser>::BlockSize;
}
impl OutputSizeUser for Hash160 {
type OutputSize = <Ripemd160 as digest::OutputSizeUser>::OutputSize;
}
impl digest::FixedOutput for Hash160 {
fn finalize_into(self, out: &mut GenericArray<u8, Self::OutputSize>) {
let mut hasher = ripemd::Ripemd160::default();
hasher.update(self.0.finalize());
Digest::finalize_into(hasher, out)
}
}
impl digest::FixedOutputReset for Hash160 {
fn finalize_into_reset(&mut self, out: &mut Output<Self>) {
let other = self.clone();
other.finalize_into(out);
self.0.reset();
}
}
impl digest::Reset for Hash160 {
fn reset(&mut self) {
Digest::reset(&mut self.0);
}
}
impl digest::Update for Hash160 {
fn update(&mut self, data: &[u8]) {
Digest::update(&mut self.0, data);
}
}
#[derive(Clone)]
pub struct Blake2b256(blake2::Blake2bVar);
impl std::io::Write for Blake2b256 {
fn flush(&mut self) -> std::io::Result<()> {
Ok(())
}
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.update(buf);
Ok(buf.len())
}
}
impl Default for Blake2b256 {
fn default() -> Self {
Self(<blake2::Blake2bVar as digest::VariableOutput>::new(32).unwrap())
}
}
impl digest::Update for Blake2b256 {
fn update(&mut self, data: &[u8]) {
self.0.update(data.as_ref())
}
}
impl HashMarker for Blake2b256 {}
impl OutputSizeUser for Blake2b256 {
type OutputSize = <sha2::Sha256 as OutputSizeUser>::OutputSize;
}
impl digest::FixedOutput for Blake2b256 {
fn finalize_into(self, out: &mut DigestOutput<Self>) {
self.0
.finalize_variable(out.as_mut())
.expect("correct output size")
}
}
impl digest::FixedOutputReset for Blake2b256 {
fn finalize_into_reset(&mut self, out: &mut Output<Self>) {
self.0
.clone()
.finalize_variable(out.as_mut())
.expect("correct output size");
self.reset();
}
}
impl digest::Reset for Blake2b256 {
fn reset(&mut self) {
self.0.reset()
}
}
marked_digest!(
Hash160Digest,
Hash160
);
marked_digest!(
Hash256Digest,
Hash256
);