-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathripemd256.go
239 lines (201 loc) · 5.03 KB
/
ripemd256.go
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
package ripemd
import (
"hash"
"math/bits"
)
const (
// The size of the checksum in bytes.
Size256 = 32
// The block size of the hash algorithm in bytes.
BlockSize256 = 64
)
// work buffer indices and roll amounts for one line
var _256n0 = [64]uint{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8,
3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12,
1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2,
}
var _256r0 = [64]uint{
11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8,
7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12,
11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5,
11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12,
}
// same for the other parallel one
var _256n1 = [64]uint{
5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12,
6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2,
15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13,
8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14,
}
var _256r1 = [64]uint{
8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6,
9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11,
9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5,
15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8,
}
func _Block256(md *ripemd256digest, p []byte) int {
n := 0
var x [16]uint32
var alpha uint32
for len(p) >= BlockSize256 {
a, b, c, d := md.s[0], md.s[1], md.s[2], md.s[3]
aa, bb, cc, dd := md.s[4], md.s[5], md.s[6], md.s[7]
j := 0
for i := 0; i < 16; i++ {
x[i] = uint32(p[j]) | uint32(p[j+1])<<8 | uint32(p[j+2])<<16 | uint32(p[j+3])<<24
j += 4
}
// round 1
i := 0
for i < 16 {
alpha = a + (b ^ c ^ d) + x[_256n0[i]]
s := int(_256r0[i])
alpha = bits.RotateLeft32(alpha, s)
a, b, c, d = d, alpha, b, c
// parallel line
alpha = aa + (cc ^ (dd & (bb ^ cc))) + x[_256n1[i]] + 0x50a28be6
s = int(_256r1[i])
alpha = bits.RotateLeft32(alpha, s)
aa, bb, cc, dd = dd, alpha, bb, cc
i++
}
t := a
a = aa
aa = t
// round 2
for i < 32 {
alpha = a + (d ^ (b & (c ^ d))) + x[_256n0[i]] + 0x5a827999
s := int(_256r0[i])
alpha = bits.RotateLeft32(alpha, s)
a, b, c, d = d, alpha, b, c
// parallel line
alpha = aa + (dd ^ (bb | ^cc)) + x[_256n1[i]] + 0x5c4dd124
s = int(_256r1[i])
alpha = bits.RotateLeft32(alpha, s)
aa, bb, cc, dd = dd, alpha, bb, cc
i++
}
t = b
b = bb
bb = t
// round 3
for i < 48 {
alpha = a + (d ^ (b | ^c)) + x[_256n0[i]] + 0x6ed9eba1
s := int(_256r0[i])
alpha = bits.RotateLeft32(alpha, s)
a, b, c, d = d, alpha, b, c
// parallel line
alpha = aa + (dd ^ (bb & (cc ^ dd))) + x[_256n1[i]] + 0x6d703ef3
s = int(_256r1[i])
alpha = bits.RotateLeft32(alpha, s)
aa, bb, cc, dd = dd, alpha, bb, cc
i++
}
t = c
c = cc
cc = t
// round 4
for i < 64 {
alpha = a + (c ^ (d & (b ^ c))) + x[_256n0[i]] + 0x8f1bbcdc
s := int(_256r0[i])
alpha = bits.RotateLeft32(alpha, s)
a, b, c, d = d, alpha, b, c
// parallel line
alpha = aa + (bb ^ cc ^ dd) + x[_256n1[i]]
s = int(_256r1[i])
alpha = bits.RotateLeft32(alpha, s)
aa, bb, cc, dd = dd, alpha, bb, cc
i++
}
t = d
d = dd
dd = t
// combine results
md.s[0] += a
md.s[1] += b
md.s[2] += c
md.s[3] += d
md.s[4] += aa
md.s[5] += bb
md.s[6] += cc
md.s[7] += dd
p = p[BlockSize256:]
n += BlockSize256
}
return n
}
type ripemd256digest struct {
s [8]uint32 // running context
x [BlockSize256]byte // temporary buffer
nx int // index into buffer
tc uint64 // total count of bytes processed
}
func New256() hash.Hash {
r := new(ripemd256digest)
r.Reset()
return r
}
func (r *ripemd256digest) Reset() {
r.s[0], r.s[1], r.s[2], r.s[3], r.s[4], r.s[5], r.s[6], r.s[7] = _s0, _s1, _s2, _s3, _s5, _s6, _s7, _s8
r.nx = 0
r.tc = 0
}
func (r *ripemd256digest) Size() int { return Size256 }
func (r *ripemd256digest) BlockSize() int { return BlockSize256 }
func (d *ripemd256digest) Write(p []byte) (nn int, err error) {
nn = len(p)
d.tc += uint64(nn)
if d.nx > 0 {
n := len(p)
if n > BlockSize256-d.nx {
n = BlockSize256 - d.nx
}
for i := 0; i < n; i++ {
d.x[d.nx+i] = p[i]
}
d.nx += n
if d.nx == BlockSize256 {
_Block256(d, d.x[0:])
d.nx = 0
}
p = p[n:]
}
n := _Block256(d, p)
p = p[n:]
if len(p) > 0 {
d.nx = copy(d.x[:], p)
}
return
}
func (d0 *ripemd256digest) Sum(in []byte) []byte {
// Make a copy of d0 so that caller can keep writing and summing.
d := *d0
// Padding. Add a 1 bit and 0 bits until 56 bytes mod 64.
tc := d.tc
var tmp [64]byte
tmp[0] = 0x80
if tc%64 < 56 {
d.Write(tmp[0 : 56-tc%64])
} else {
d.Write(tmp[0 : 64+56-tc%64])
}
// Length in bits.
tc <<= 3
for i := uint(0); i < 8; i++ {
tmp[i] = byte(tc >> (8 * i))
}
d.Write(tmp[0:8])
if d.nx != 0 {
panic("d.nx != 0")
}
var digest [Size256]byte
for i, s := range d.s {
digest[i*4] = byte(s)
digest[i*4+1] = byte(s >> 8)
digest[i*4+2] = byte(s >> 16)
digest[i*4+3] = byte(s >> 24)
}
return append(in, digest[:]...)
}