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
#![doc(html_logo_url =
"https://raw.githubusercontent.com/maidsafe/QA/master/Images/maidsafe_logo.png",
html_favicon_url = "http://maidsafe.net/img/favicon.ico",
html_root_url = "http://dirvine.github.io/resource_proof")]
#![forbid(bad_style, exceeding_bitshifts, mutable_transmutes, no_mangle_const_items,
unknown_crate_types, warnings)]
#![deny(deprecated, improper_ctypes, missing_docs, non_shorthand_field_patterns,
overflowing_literals, plugin_as_library, private_no_mangle_fns, private_no_mangle_statics,
stable_features, unconditional_recursion, unknown_lints, unsafe_code, unused,
unused_allocation, unused_attributes, unused_comparisons, unused_features, unused_parens,
while_true)]
#![warn(trivial_casts, trivial_numeric_casts, unused_extern_crates, unused_import_braces,
unused_qualifications, unused_results)]
#![allow(box_pointers, fat_ptr_transmutes, missing_copy_implementations,
missing_debug_implementations, variant_size_differences)]
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]
#![cfg_attr(feature="clippy", deny(clippy))]
#![cfg_attr(feature="clippy", allow(use_debug))]
#[cfg(test)]
extern crate rand;
extern crate tiny_keccak;
use std::collections::VecDeque;
use tiny_keccak::Keccak;
pub struct ResourceProof {
min_size: usize,
difficulty: u8,
}
impl ResourceProof {
pub fn new(min_size: usize, difficulty: u8) -> ResourceProof {
ResourceProof {
min_size: min_size,
difficulty: difficulty,
}
}
pub fn create_proof(&self, data: &mut VecDeque<u8>) -> u64 {
let mut count = 0u64;
let ref mut tmp = data.clone();
while self.check_hash(&tmp) < self.difficulty {
tmp.push_front(0u8);
count += 1;
}
count
}
pub fn create_proof_data(&self, nonce: &[u8]) -> VecDeque<u8> {
nonce.iter()
.cloned()
.cycle()
.take(self.min_size)
.collect()
}
pub fn validate_all(&self, nonce: &[u8], received_data: &VecDeque<u8>, claim: u64) -> bool {
let mut data = self.create_proof_data(nonce);
if data != *received_data {
return false;
}
for _ in 0..claim {
data.push_front(0u8);
}
self.check_hash(&data) >= self.difficulty
}
pub fn validate_data(&self, nonce: &[u8], data: &VecDeque<u8>) -> bool {
self.create_proof_data(nonce) == *data
}
pub fn validate_proof(&self, nonce: &[u8], claim: u64) -> bool {
let mut data = self.create_proof_data(nonce);
for _ in 0..claim {
data.push_front(0u8);
}
self.check_hash(&data) >= self.difficulty
}
fn check_hash(&self, data: &VecDeque<u8>) -> u8 {
ResourceProof::leading_zeros(&hash(&data.as_slices()))
}
fn leading_zeros(data: &[u8]) -> u8 {
let mut zeros = 0u8;
for (count, i) in data.iter().enumerate() {
zeros = i.leading_zeros() as u8 + (count as u8 * 8);
if i.leading_zeros() < 8 {
break;
}
}
zeros
}
}
fn hash(data: &(&[u8], &[u8])) -> [u8; 32] {
let mut sha3 = Keccak::new_sha3_256();
sha3.update(data.0);
sha3.update(data.1);
let mut res = [0u8; 32];
sha3.finalize(&mut res);
res
}
#[cfg(test)]
mod tests {
use super::*;
use rand;
#[test]
fn valid_proof() {
for _ in 0..20 {
let nonce = [rand::random::<u8>()];
let rp = ResourceProof::new(1024, 3);
let ref mut data = rp.create_proof_data(&nonce);
let proof = rp.create_proof(data);
assert!(rp.validate_proof(&nonce, proof));
assert!(rp.validate_data(&nonce, data));
assert!(rp.validate_all(&nonce, data, proof));
}
}
}