forked from MCJOHN974/bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rs
178 lines (152 loc) · 5.42 KB
/
main.rs
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
#![no_main]
#![no_std]
use panic_halt as _;
use core::default::Default;
extern "C" {
fn assert_eq(actual: i64, expected: i64);
}
const H: [u32; 8] = [
0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19,
];
const K: [u32; 64] = [
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
];
pub struct Sha256 {
state: [u32; 8],
completed_data_blocks: u64,
pending: [u8; 64],
num_pending: usize,
}
impl Default for Sha256 {
fn default() -> Self {
Self {
state: H,
completed_data_blocks: 0,
pending: [0u8; 64],
num_pending: 0,
}
}
}
impl Sha256 {
pub fn with_state(state: [u32; 8]) -> Self {
Self {
state,
completed_data_blocks: 0,
pending: [0u8; 64],
num_pending: 0,
}
}
fn update_state(state: &mut [u32; 8], data: &[u8; 64]) {
let mut w = [0; 64];
for (w, d) in w.iter_mut().zip(data.iter().step_by(4)).take(16) {
*w = u32::from_be_bytes(unsafe { *(d as *const u8 as *const [u8; 4]) });
}
for i in 16..64 {
let s0 = w[i - 15].rotate_right(7) ^ w[i - 15].rotate_right(18) ^ (w[i - 15] >> 3);
let s1 = w[i - 2].rotate_right(17) ^ w[i - 2].rotate_right(19) ^ (w[i - 2] >> 10);
w[i] = w[i - 16]
.wrapping_add(s0)
.wrapping_add(w[i - 7])
.wrapping_add(s1);
}
let mut h = *state;
for i in 0..64 {
let ch = (h[4] & h[5]) ^ (!h[4] & h[6]);
let ma = (h[0] & h[1]) ^ (h[0] & h[2]) ^ (h[1] & h[2]);
let s0 = h[0].rotate_right(2) ^ h[0].rotate_right(13) ^ h[0].rotate_right(22);
let s1 = h[4].rotate_right(6) ^ h[4].rotate_right(11) ^ h[4].rotate_right(25);
let t0 = h[7]
.wrapping_add(s1)
.wrapping_add(ch)
.wrapping_add(K[i])
.wrapping_add(w[i]);
let t1 = s0.wrapping_add(ma);
h[7] = h[6];
h[6] = h[5];
h[5] = h[4];
h[4] = h[3].wrapping_add(t0);
h[3] = h[2];
h[2] = h[1];
h[1] = h[0];
h[0] = t0.wrapping_add(t1);
}
for (i, v) in state.iter_mut().enumerate() {
*v = v.wrapping_add(h[i]);
}
}
pub fn update(&mut self, data: &[u8]) {
let mut len = data.len();
let mut offset = 0;
if self.num_pending > 0 && self.num_pending + len >= 64 {
self.pending[self.num_pending..].copy_from_slice(&data[..64 - self.num_pending]);
Self::update_state(&mut self.state, &self.pending);
self.completed_data_blocks += 1;
offset = 64 - self.num_pending;
len -= offset;
self.num_pending = 0;
}
let data_blocks = len / 64;
let remain = len % 64;
for _ in 0..data_blocks {
Self::update_state(&mut self.state, unsafe {
&*(data.as_ptr().add(offset) as *const [u8; 64])
});
offset += 64;
}
self.completed_data_blocks += data_blocks as u64;
if remain > 0 {
self.pending[self.num_pending..self.num_pending + remain]
.copy_from_slice(&data[offset..]);
self.num_pending += remain;
}
}
pub fn finish(mut self) -> [u8; 32] {
let data_bits = self.completed_data_blocks * 512 + self.num_pending as u64 * 8;
let mut pending = [0u8; 72];
pending[0] = 128;
let offset = if self.num_pending < 56 {
56 - self.num_pending
} else {
120 - self.num_pending
};
pending[offset..offset + 8].copy_from_slice(&data_bits.to_be_bytes());
self.update(&pending[..offset + 8]);
for h in self.state.iter_mut() {
*h = h.to_be();
}
unsafe { *(self.state.as_ptr() as *const [u8; 32]) }
}
pub fn digest(data: &[u8]) -> [u8; 32] {
let mut sha256 = Self::default();
sha256.update(data);
sha256.finish()
}
pub fn state(&self) -> [u32; 8] {
self.state
}
}
fn subslice_to_i64(slice: &[u8], begin: usize, end: usize) -> i64 {
let mut result = 0i64;
for i in begin..end {
result <<= 8;
result += slice[i] as i64;
}
result
}
#[no_mangle]
pub fn main() {
let result = Sha256::digest(b"hello world");
unsafe {
assert_eq(subslice_to_i64(&result, 0, 8), 1);
assert_eq(subslice_to_i64(&result, 8, 16), 2);
assert_eq(subslice_to_i64(&result, 16, 24), 3);
assert_eq(subslice_to_i64(&result, 24, 32), 4);
}
}