-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecp256k1.red
425 lines (402 loc) · 8.58 KB
/
secp256k1.red
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
Red [
Title: "bip39"
Author: "bitbegin"
File: %bip39.red
Tabs: 4
License: "BSD-3 - https://github.com/red/red/blob/master/BSD-3-License.txt"
]
#system [
#include %secp256k1.reds
secp256: context [
ctx: 0
reseed: func [
/local
seed [byte-ptr!]
][
seed: allocate 32
crypto/urandom seed 32
secp256k1_context_randomize ctx seed
free seed
]
init: does [
ctx: secp256k1_context_create SECP256K1_CONTEXT_SIGN or SECP256K1_CONTEXT_VERIFY
reseed
]
]
secp256/init
]
secp256: context [
;-- routine
_create-privkey: routine [
/local
rand [byte-ptr!]
][
rand: allocate 32
until [
crypto/urandom rand 32
1 = secp256k1_ec_seckey_verify secp256/ctx rand
]
stack/set-last as red-value! binary/load rand 32
free rand
]
_create-pubkey: routine [
prikey [binary!]
/local
klen [integer!]
key [byte-ptr!]
pubkey [byte-ptr!]
][
klen: binary/rs-length? prikey
if klen <> 32 [
fire [TO_ERROR(script invalid-arg) prikey]
]
key: binary/rs-head prikey
if 1 <> secp256k1_ec_seckey_verify secp256/ctx key [
fire [TO_ERROR(script invalid-arg) prikey]
]
pubkey: allocate 64
if 1 <> secp256k1_ec_pubkey_create secp256/ctx pubkey key [
fire [TO_ERROR(script invalid-arg) prikey]
]
stack/set-last as red-value! binary/load pubkey 64
free pubkey
]
_sign: routine [
hash [binary!]
prikey [binary!]
/local
dlen [integer!]
data [byte-ptr!]
klen [integer!]
key [byte-ptr!]
sig [byte-ptr!]
ser [byte-ptr!]
blk [red-block!]
recid [integer!]
][
dlen: binary/rs-length? hash
if dlen <> 32 [
fire [TO_ERROR(script invalid-arg) hash]
]
data: binary/rs-head hash
klen: binary/rs-length? prikey
if klen <> 32 [
fire [TO_ERROR(script invalid-arg) prikey]
]
key: binary/rs-head prikey
sig: allocate 65
if 1 <> secp256k1_ecdsa_sign_recoverable secp256/ctx sig data key 0 null [
free sig
fire [TO_ERROR(script invalid-arg) prikey]
]
ser: allocate 64
recid: 0
if 1 <> secp256k1_ecdsa_recoverable_signature_serialize_compact secp256/ctx ser :recid sig [
free sig free ser
fire [TO_ERROR(script invalid-arg) prikey]
]
free sig
blk: block/push-only* 3
block/rs-append blk as red-value! integer/push recid
block/rs-append blk as red-value! binary/load ser 32
block/rs-append blk as red-value! binary/load ser + 32 32
stack/set-last as red-value! blk
free ser
]
_verify: routine [
hash [binary!]
signature [binary!]
pubkey [binary!]
return: [logic!]
/local
dlen [integer!]
data [byte-ptr!]
slen [integer!]
sig [byte-ptr!]
klen [integer!]
key [byte-ptr!]
][
dlen: binary/rs-length? hash
if dlen <> 32 [
fire [TO_ERROR(script invalid-arg) hash]
]
data: binary/rs-head hash
slen: binary/rs-length? signature
if slen <> 64 [
fire [TO_ERROR(script invalid-arg) signature]
]
sig: binary/rs-head signature
klen: binary/rs-length? pubkey
if klen <> 64 [
fire [TO_ERROR(script invalid-arg) pubkey]
]
key: binary/rs-head pubkey
if 1 = secp256k1_ecdsa_verify secp256/ctx sig data key [return true]
false
]
_recover-pubkey: routine [
hash [binary!]
signature [binary!]
/local
dlen [integer!]
data [byte-ptr!]
slen [integer!]
sig [byte-ptr!]
pubkey [byte-ptr!]
][
dlen: binary/rs-length? hash
if dlen <> 32 [
fire [TO_ERROR(script invalid-arg) hash]
]
data: binary/rs-head hash
slen: binary/rs-length? signature
if slen <> 65 [
fire [TO_ERROR(script invalid-arg) signature]
]
sig: binary/rs-head signature
pubkey: allocate 64
if 1 <> secp256k1_ecdsa_recover secp256/ctx pubkey sig data [
fire [TO_ERROR(script invalid-arg) hash]
]
stack/set-last as red-value! binary/load pubkey 64
free pubkey
]
;-- api
create-keypair: func [
{generate private key and public key pair;
return a block of two binary!: 32-byte private key and 64-byte public key}
return: [block!]
/local
pri [binary!]
pub [binary!]
][
pri: _create-privkey
pub: _create-pubkey pri
reduce [pri pub]
]
create-privkey: func [
return: [binary!]
][
_create-privkey
]
create-pubkey: func [
"Compute the public key for a private key"
private-key [binary!]
return: [binary!] ;-- 64-byte binary!
][
_create-pubkey private-key
]
sign: func [
hash [binary!]
private-key [binary!]
return: [block!] ;-- signature: [v r s]
][
_sign hash private-key
]
verify: func [
hash [binary!]
signature [block!]
public-key [binary!]
return: [logic!]
/local
sig [binary!]
][
unless all [
integer? signature/1
binary? signature/2
binary? signature/3
32 = length? signature/2
32 = length? signature/3
][
return false
]
sig: make binary! 64
append sig signature/2
append sig signature/3
_verify hash sig public-key
]
recover-pubkey: func [
hash [binary!]
signature [block!]
return: [binary!]
/local
sig [binary!]
][
unless all [
integer? signature/1
binary? signature/2
binary? signature/3
32 = length? signature/2
32 = length? signature/3
][
return false
]
sig: make binary! 65
append sig signature/2
append sig signature/3
append sig signature/1
_recover-pubkey hash sig
]
serialize-pubkey: routine [
pubkey [binary!]
compress? [logic!]
/local
klen [integer!]
key [byte-ptr!]
data [byte-ptr!]
dlen [integer!]
flags [integer!]
][
klen: binary/rs-length? pubkey
if klen <> 64 [
fire [TO_ERROR(script invalid-arg) pubkey]
]
key: binary/rs-head pubkey
data: allocate 65
either compress? [
flags: SECP256K1_EC_COMPRESSED
dlen: 33
][
flags: SECP256K1_EC_UNCOMPRESSED
dlen: 65
]
if 1 <> secp256k1_ec_pubkey_serialize secp256/ctx data :dlen key flags [
stack/set-last none-value
free data
exit
]
stack/set-last as red-value! binary/load data dlen
free data
]
parse-pubkey: routine [
pubkey [binary!]
/local
klen [integer!]
key [byte-ptr!]
data [byte-ptr!]
][
klen: binary/rs-length? pubkey
key: binary/rs-head pubkey
data: allocate 64
if 1 <> secp256k1_ec_pubkey_parse secp256/ctx data key klen [
stack/set-last none-value
free data
exit
]
stack/set-last as red-value! binary/load data 64
free data
]
prikey-valid?: routine [
private-key [binary!]
return: [logic!]
/local
klen [integer!]
key [byte-ptr!]
][
klen: binary/rs-length? private-key
if klen <> 32 [
fire [TO_ERROR(script invalid-arg) private-key]
]
key: binary/rs-head private-key
1 = secp256k1_ec_seckey_verify secp256/ctx key
]
privkey-tweak-add: routine [
private-key [binary!]
tweek [binary!]
/local
klen [integer!]
key [byte-ptr!]
dlen [integer!]
data [byte-ptr!]
nkey [byte-ptr!]
][
klen: binary/rs-length? private-key
if klen <> 32 [
fire [TO_ERROR(script invalid-arg) private-key]
]
key: binary/rs-head private-key
dlen: binary/rs-length? tweek
if dlen <> 32 [
fire [TO_ERROR(script invalid-arg) tweek]
]
data: binary/rs-head tweek
nkey: allocate 32 copy-memory nkey key 32
if 0 = secp256k1_ec_privkey_tweak_add secp256/ctx nkey data [
stack/set-last none-value
free nkey
exit
]
stack/set-last as red-value! binary/load nkey 32
free nkey
]
pubkey-combine: routine [
keys [block!]
/local
len [integer!]
ptr [int-ptr!]
key [red-binary!]
p [int-ptr!]
data [byte-ptr!]
][
len: block/rs-length? keys
if len <= 1 [stack/set-last as red-value! keys exit]
ptr: as int-ptr! allocate 4 * len
p: ptr
key: as red-binary! block/rs-head keys
loop len [
if any [
TYPE_OF(key) <> TYPE_BINARY
64 <> binary/rs-length? key
][
stack/set-last none-value
free as byte-ptr! ptr
exit
]
p/1: as integer! binary/rs-head key
key: key + 1
p: p + 1
]
data: allocate 64
if 0 = secp256k1_ec_pubkey_combine secp256/ctx data ptr len [
stack/set-last none-value
free data
free as byte-ptr! ptr
exit
]
stack/set-last as red-value! binary/load data 64
free data
free as byte-ptr! ptr
]
_sha3-256: routine [
bin [any-type!]
/local len data hash
][
switch TYPE_OF(bin) [
TYPE_STRING [
len: -1
data: as byte-ptr! unicode/to-utf8 as red-string! bin :len
]
TYPE_BINARY [
len: binary/rs-length? as red-binary! bin
data: binary/rs-head as red-binary! bin
]
default [
print-line TYPE_OF(bin)
fire [TO_ERROR(script invalid-arg) bin]
]
]
if len < 0 [
fire [TO_ERROR(script invalid-arg) bin]
]
hash: allocate 32
SHA3_256 hash data len
stack/set-last as red-value! binary/load hash 32
free hash
]
sha3-256: func [
data [binary! string!]
return: [binary!]
][
_sha3-256 data
]
]