forked from supranational/blst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.me
executable file
·448 lines (366 loc) · 16.1 KB
/
run.me
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#!/usr/bin/env python3
import os
import sys
import subprocess
import re
import sysconfig
import hashlib
here = re.split(r'/(?=[^/]*$)', sys.argv[0])
if len(here) > 1:
os.chdir(here[0])
def newer(*files):
assert len(files) > 1
rh = files[-1]
if not os.path.exists(rh):
return True
for lh in files[:-1]:
if os.stat(lh).st_mtime > os.stat(rh).st_mtime:
return True
return False
if newer("../blst.h", "../libblst.a"):
print("building libblst.a...") or sys.stdout.flush()
cmd = ["../build.sh", "-fvisibility=hidden"] + sys.argv[1:]
if sysconfig.get_config_var('MACHDEP') == 'darwin':
cmd.extend(["-arch", "arm64", "-arch", "x86_64"])
try:
subprocess.check_call(cmd, cwd="..")
except:
subprocess.check_call(["sh"] + cmd, cwd="..")
if newer("../blst.swg", "../blst.h", "../blst.hpp", "blst_wrap.cpp"):
print("swig-ing...") or sys.stdout.flush()
subprocess.check_call(["swig", "-c++", "-python", "-O",
"-o", "blst_wrap.cpp", "-outdir", ".",
"../blst.swg"])
blst_so = "_blst"+sysconfig.get_config_var('EXT_SUFFIX')
if newer("blst_wrap.cpp", "../libblst.a", blst_so):
print("compiling %s..." % blst_so) or sys.stdout.flush()
if sysconfig.get_config_var('MACHDEP') == 'darwin':
cmd = ["c++", "-bundle", "-undefined", "dynamic_lookup",
"-arch", "arm64", "-arch", "x86_64"]
else:
cmd = ["c++", "-shared", "-Wl,-Bsymbolic"]
cmd.extend(["-o", blst_so, "-fPIC", "-fvisibility=hidden",
"-I"+sysconfig.get_config_var('INCLUDEPY'), "-I..",
"-O", "-Wall", "blst_wrap.cpp", "../libblst.a"])
if sysconfig.get_config_var('LIBPYTHON'):
cmd.extend(["-L"+sysconfig.get_config_var('LIBDIR'),
sysconfig.get_config_var('LIBPYTHON')])
try:
pre = subprocess.check_output(["c++", "-dM", "-E", "-x", "c++", "/dev/null"],
stderr=subprocess.STDOUT)
std = re.search(r'\b__cplusplus\s+([0-9]+)L', pre.decode('ascii'))
if std and std.group(1) < "2011":
cmd.extend(["-std=c++11"])
except:
pass
print(" ".join(["+"] + cmd))
subprocess.check_call(cmd)
print("testing...") or sys.stdout.flush()
########################################################################
import blst
msg = b"assertion" # this what we're signing
DST = b"MY-DST" # domain separation tag
SK = blst.SecretKey()
SK.keygen(b"*"*32) # secret key
########################################################################
# generate public key and signature
pk_for_wire = blst.P1(SK).serialize()
# # optional vvvvvvvvvvv augmentation
sig_for_wire = blst.P2().hash_to(msg, DST, pk_for_wire) \
.sign_with(SK) \
.serialize()
########################################################################
# at this point 'pk_for_wire', 'sig_for_wire' and 'msg' are
# "sent over network," so now on "receiver" side
sig = blst.P2_Affine(sig_for_wire)
pk = blst.P1_Affine(pk_for_wire)
if not pk.in_group(): # vet the public key
raise AssertionError("disaster")
ctx = blst.Pairing(True, DST)
ctx.aggregate(pk, sig, msg, pk_for_wire)
ctx.commit()
if not ctx.finalverify():
raise AssertionError("disaster")
########################################################################
# generate public key and signature
pk_for_wire = blst.P2(SK).serialize()
# # optional vvvvvvvvvvv augmentation
sig_for_wire = blst.P1().hash_to(msg, DST, pk_for_wire) \
.sign_with(SK) \
.serialize()
########################################################################
# at this point 'pk_for_wire', 'sig_for_wire' and 'msg' are
# "sent over network," so now on "receiver" side
sig = blst.P1_Affine(sig_for_wire)
pk = blst.P2_Affine(pk_for_wire)
if not pk.in_group(): # vet the public key
raise AssertionError("disaster")
ctx = blst.Pairing(True, DST)
ctx.aggregate(pk, sig, msg, pk_for_wire)
ctx.commit()
if not ctx.finalverify():
raise AssertionError("disaster")
if sys.version_info.major < 3:
print("OK")
sys.exit(0)
########################################################################
# from https://github.com/supranational/blst/issues/5
pk_for_wire = bytes.fromhex("ab10fc693d038b73d67279127501a05f0072cbb7147c68650ef6ac4e0a413e5cabd1f35c8711e1f7d9d885bbc3b8eddc")
sig_for_wire = bytes.fromhex("a44158c08c8c584477770feec2afa24d5a0b0bab2800414cb9efbb37c40339b6318c9349dad8de27ae644376d71232580ff5102c7a8579a6d2627c6e40b0ced737a60c66c7ebd377c04bf5ac957bf05bc8b6b09fbd7bdd2a7fa1090b5a0760bb")
msg = bytes.fromhex("0000000000000000000000000000000000000000000000000000000000000000")
DST = bytes.fromhex("424c535f5349475f424c53313233383147325f584d443a5348412d3235365f535357555f524f5f504f505f")
sig = blst.P2_Affine(sig_for_wire)
pk = blst.P1_Affine(pk_for_wire)
if not pk.in_group(): # vet the public key
raise AssertionError("disaster")
if sig.core_verify(pk, True, msg, DST) != blst.BLST_SUCCESS:
raise AssertionError("disaster")
########################################################################
# test vectors from draft-irtf-cfrg-hash-to-curve
try:
import json
import glob
coord = re.compile(r'0x([0-9a-f]+)(?:\s*,\s*0x([0-9a-f]+))?', re.IGNORECASE)
def serialize_json_point(P):
ret = b''
x = coord.search(P['x'])
if x.group(2):
ret += bytes.fromhex(x.group(2))
ret += bytes.fromhex(x.group(1))
y = coord.search(P['y'])
if y.group(2):
ret += bytes.fromhex(y.group(2))
ret += bytes.fromhex(y.group(1))
return ret
for file in glob.glob("../vectors/hash_to_curve/BLS12381G*.json"):
print(file)
data = json.load(open(file))
if data['curve'] == "BLS12-381 G1":
point = blst.P1()
else:
point = blst.P2()
DST = bytes(data['dst'], 'ascii')
if data['randomOracle']:
func = "point.hash_to(msg, DST).serialize()"
else:
func = "point.encode_to(msg, DST).serialize()"
for vec in data['vectors']:
msg = bytes(vec['msg'], 'ascii')
if eval(func) != serialize_json_point(vec['P']):
raise AssertionError(msg)
except ModuleNotFoundError:
print("skipping hash-to-curve KATs")
########################################################################
# test multi-scalar multiplication for self-consistency
points = []
scalars = []
total = 0
for _ in range(0, 42):
p = os.urandom(8)
s = int.from_bytes(os.urandom(8), "big")
points.append(blst.G1().mult(p))
scalars.append(s)
total += s * int.from_bytes(p, "little")
a = blst.P1_Affines.mult_pippenger(blst.P1_Affines.as_memory(points), scalars)
if not a.is_equal(blst.G1().mult(total)):
raise AssertionError("disaster")
points = []
scalars = []
total = 0
for _ in range(0, 42):
p = os.urandom(8)
s = int.from_bytes(os.urandom(8), "big")
points.append(blst.G2().mult(p))
scalars.append(s)
total += s * int.from_bytes(p, "little")
a = blst.P2_Affines.mult_pippenger(blst.P2_Affines.as_memory(points), scalars)
if not a.is_equal(blst.G2().mult(total)):
raise AssertionError("disaster")
########################################################################
# rudimentary blind signature PoC
# Signer's public key, implicitly trusted.
PK = blst.P1(SK).to_affine()
# User wants to have |msg| signed,
H_msg = blst.P2().hash_to(msg, DST, PK.compress())
# chooses random |r|,
r = blst.Scalar().from_bendian(os.urandom(32)) # should be PRF in real life...
# blinds the H(|msg|) with |r| and sends it to the Signer.
msg_for_wire = H_msg.dup().sign_with(r).serialize()
# Signer signs and sends the result back to the User.
blind_msg = blst.P2(msg_for_wire)
if not blind_msg.in_group(): # is User messing with Signer?
raise AssertionError("disaster")
sig_for_wire = blind_msg.sign_with(SK).serialize()
# User ...
signature = blst.P2(sig_for_wire)
if not signature.in_group(): # is Signer messing with User?
raise AssertionError("disaster")
# unblinds the result with 1/|r| to produce the actual |signature|,
signature = signature.sign_with(r.inverse()).to_affine()
# and double-checks if the Signer was honest?
C1 = blst.PT(signature)
C2 = blst.PT(H_msg.to_affine(), PK)
if not blst.PT.finalverify(C1, C2):
raise AssertionError("disaster")
# Now |signature| can be verified as any other, e.g....
ctx = blst.Pairing(True, DST)
ctx.aggregate(PK, signature, msg, PK.compress())
ctx.commit()
if not ctx.finalverify():
raise AssertionError("disaster")
########################################################################
# [a variant of] BBS+ PoC, https://eprint.iacr.org/2008/136.pdf
# Signer's public key, implicitly trusted.
w = blst.P2(SK)
w_for_wire = w.compress()
### The block of messages
msgs = ["assertion1", "assertion2", "assertion3", "assertionN"]
m = []
for msg in msgs:
h = hashlib.sha512()
h.update(msg.encode('utf-8'))
m.append(blst.Scalar().from_bendian(h.digest()))
### Everybody involved:
count = len(msgs)
g = []
for i in range(count+1):
g.append(blst.P1().hash_to(b"\0" + i.to_bytes(4, "big") +
b"\0" + count.to_bytes(4, "big"),
DST, w_for_wire))
### Signing the block of messages.
e = blst.Scalar().from_bendian(os.urandom(32)) # should be PRF in real life...
s = blst.Scalar().from_bendian(os.urandom(32))
a = blst.G1().add(g[0].dup().mult(s))
for i in range(count):
a.add(g[i+1].dup().mult(m[i]))
A = a.sign_with(e.dup().add(SK).inverse()).to_affine()
signature = [A, e, s] # serialize to application liking
### Signature Verification.
# Verifier deserializes |signature|, recalculates |a| and verifies.
A, e, s = signature # fake deserialization
a = blst.G1().add(g[0].dup().mult(s))
for i in range(count):
a.add(g[i+1].dup().mult(m[i]))
if not A.in_group():
AssertionError("disaster")
C1 = blst.PT(blst.G2().mult(e).add(w).to_affine(), A)
C2 = blst.PT(a.to_affine())
if not blst.PT.finalverify(C1, C2):
raise AssertionError("disaster")
### Blind-signing Committed Block of Messages.
# User creates |commitment| and sends it to Signer.
s_prime = blst.Scalar().from_bendian(os.urandom(32))
commitment = g[0].dup().sign_with(s_prime)
for i in range(count):
commitment.add(g[i+1].dup().mult(m[i]))
# Signer challenges User with |c|.
c = blst.Scalar().from_bendian(os.urandom(32))
# User provides proof of commitment.
s_tilde = blst.Scalar().from_bendian(os.urandom(32))
ZK = g[0].dup().sign_with(s_tilde)
r = [s_tilde.add(c.dup().mul(s_prime))]
for i in range(count):
r.append(blst.Scalar().from_bendian(os.urandom(32)))
ZK.add(g[i+1].dup().mult(r[-1]))
r[-1].add(c.dup().mul(m[i]))
# Signer verifies the proof, |ZK| and |r|.
ZK_verify = commitment.dup().neg().mult(c)
for i in range(count+1):
ZK_verify.add(g[i].dup().mult(r[i]))
if not ZK_verify.is_equal(ZK):
raise AssertionError("disaster")
# Signer signs the |commitment| and sends the |blind_signature| back.
if not commitment.in_group(): # is User messing with Signer?
raise AssertionError("disaster")
e = blst.Scalar().from_bendian(os.urandom(32))
s_pprime = blst.Scalar().from_bendian(os.urandom(32))
A = blst.G1().add(g[0].dup().mult(s_pprime)) \
.add(commitment) \
.sign_with(e.dup().add(SK).inverse()).to_affine()
blind_signature = [A, e, s_pprime] # serialize to application liking
# User unblinds the |blind_signature| by adding |s_prime| and |s_pprime|.
signature = blind_signature.copy() # fake deserialization
if not signature[0].in_group(): # is Signer messing with User?
raise AssertionError("disaster")
signature[2].add(s_prime) # serialize to application liking
### Signature Verification.
# Verifier deserializes |signature|, recalculates |a| and verifies.
A, e, s = signature # fake deserialization
a = blst.G1().add(g[0].dup().mult(s))
for i in range(count):
a.add(g[i+1].dup().mult(m[i]))
if not A.in_group():
raise AssertionError("disaster")
C1 = blst.PT(blst.G2().mult(e).add(w).to_affine(), A)
C2 = blst.PT(a.to_affine())
if not blst.PT.finalverify(C1, C2):
raise AssertionError("disaster")
########################################################################
# low-order points
p11 = blst.P1(bytes.fromhex("80803f0d09fec09a95f2ee7495323c15c162270c7cceaffa8566e941c66bcf206e72955d58b3b32e564de3209d672ca5"))
if p11.in_group():
raise AssertionError("disaster")
if not p11.mult(11).is_inf():
raise AssertionError("disaster")
p10177 = blst.P1(bytes.fromhex("808717b0e03ef9e9d0503cd9ce355585d12274bac029dc22efdd69251267b97699cc426df4df5b39440f0945d45245b2"))
if p10177.in_group():
raise AssertionError("disaster")
if not p10177.mult(10177).is_inf():
raise AssertionError("disaster")
p859267 = blst.P1(bytes.fromhex("8051cca76de8a5cf79a107c701064b894e500dffc532d573882bf2cd5b6e1b47e8842e83af679d10af9301b815501f89"))
if p859267.in_group():
raise AssertionError("disaster")
if not p859267.mult(859267).is_inf():
raise AssertionError("disaster")
p13 = blst.P2(bytes.fromhex("808514e6f6c41ddb685cd8e351d7cb2ee891d54d5850d42c440365b15dd8ab06b53da9ebb22bc31cea2234d30499b09f01b290cae398ecc1fda3d4beb248af58bd351c3d99a5b6c770fdb54bf46b123261b55cf0762aeef2341e35e90608fc31"))
if p13.in_group():
raise AssertionError("disaster")
if not p13.mult(13).is_inf():
raise AssertionError("disaster")
p23 = blst.P2(bytes.fromhex("acaaaa268d201642af7eeb2c46b03ecf8af71b902f652884577e52994047fcde2f8b5d931fdacb2575937b72ef2d3b0c0da315f7c31904614d8110d493d1d7a00da97d5b640be19e4cc5dd302ad8e17aa853035d7a56e5c24347164c186d6d00"))
if p23.in_group():
raise AssertionError("disaster")
if not p23.mult(23).is_inf():
raise AssertionError("disaster")
p2713 = blst.P2(bytes.fromhex("8086d285d08693d80267eae43cf3c42e7afef039389870a294884f07ad86df364a3f62d426463e08d4d89b28370fbc3e1411846bb9982973c176431685ca1750d52ae2cf6095a42c726e8413ab7ab8c84eb83fd305ea7585f6c4e11aa4f00437"))
if p2713.in_group():
raise AssertionError("disaster")
if not p2713.mult(2713).is_inf():
raise AssertionError("disaster")
########################################################################
# EIP-2333 tests
def eip2333_test(seed, master_SK, child_index, child_SK):
len = (seed.bit_length() + 7) // 8
seed = seed.to_bytes(32 if len < 32 else len, "big")
SK = blst.SecretKey()
SK.derive_master_eip2333(seed)
if master_SK != int.from_bytes(SK.to_bendian(), "big"):
raise AssertionError("disaster")
SK.derive_child_eip2333(SK, child_index)
if child_SK != int.from_bytes(SK.to_bendian(), "big"):
raise AssertionError("disaster")
# test case 0
seed = 0xc55257c360c07c72029aebc1b53c05ed0362ada38ead3e3e9efa3708e53495531f09a6987599d18264c1e1c92f2cf141630c7a3c4ab7c81b2f001698e7463b04
master_SK = 6083874454709270928345386274498605044986640685124978867557563392430687146096
child_index = 0
child_SK = 20397789859736650942317412262472558107875392172444076792671091975210932703118
eip2333_test(seed, master_SK, child_index, child_SK)
# test case 1
seed = 0x3141592653589793238462643383279502884197169399375105820974944592
master_SK = 29757020647961307431480504535336562678282505419141012933316116377660817309383
child_index = 3141592653
child_SK = 25457201688850691947727629385191704516744796114925897962676248250929345014287
eip2333_test(seed, master_SK, child_index, child_SK)
# test case 2
seed = 0x0099FF991111002299DD7744EE3355BBDD8844115566CC55663355668888CC00
master_SK = 27580842291869792442942448775674722299803720648445448686099262467207037398656
child_index = 4294967295
child_SK = 29358610794459428860402234341874281240803786294062035874021252734817515685787
eip2333_test(seed, master_SK, child_index, child_SK)
# test case 3
seed = 0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3
master_SK = 19022158461524446591288038168518313374041767046816487870552872741050760015818
child_index = 42
child_SK = 31372231650479070279774297061823572166496564838472787488249775572789064611981
eip2333_test(seed, master_SK, child_index, child_SK)
print("OK")