2019-03-27 16:32:13 +00:00
|
|
|
"""
|
|
|
|
BLS test vectors generator
|
|
|
|
"""
|
|
|
|
|
2019-07-27 01:07:37 +00:00
|
|
|
from typing import Tuple, Iterable, Any, Callable, Dict
|
2019-03-27 16:32:13 +00:00
|
|
|
|
2019-04-11 09:15:23 +00:00
|
|
|
from eth_utils import (
|
2019-07-16 06:27:34 +00:00
|
|
|
encode_hex,
|
|
|
|
int_to_big_endian,
|
2019-04-11 09:15:23 +00:00
|
|
|
)
|
2019-07-27 01:07:37 +00:00
|
|
|
from gen_base import gen_runner, gen_typing
|
2019-03-27 16:32:13 +00:00
|
|
|
|
2019-04-11 09:15:23 +00:00
|
|
|
from py_ecc import bls
|
2019-09-08 18:36:09 +00:00
|
|
|
from hashlib import sha256
|
|
|
|
|
|
|
|
|
|
|
|
def hash(x):
|
|
|
|
return sha256(x).digest()
|
|
|
|
|
2019-03-27 16:32:13 +00:00
|
|
|
|
2019-06-14 16:15:54 +00:00
|
|
|
F2Q_COEFF_LEN = 48
|
|
|
|
G2_COMPRESSED_Z_LEN = 48
|
2020-01-21 17:28:31 +00:00
|
|
|
DST = bls.G2ProofOfPossession.DST
|
2019-06-14 16:15:54 +00:00
|
|
|
|
|
|
|
|
2019-07-27 01:07:37 +00:00
|
|
|
def int_to_hex(n: int, byte_length: int = None) -> str:
|
2019-06-14 16:15:54 +00:00
|
|
|
byte_value = int_to_big_endian(n)
|
|
|
|
if byte_length:
|
|
|
|
byte_value = byte_value.rjust(byte_length, b'\x00')
|
2019-07-16 06:27:34 +00:00
|
|
|
return encode_hex(byte_value)
|
2019-03-27 16:32:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def hex_to_int(x: str) -> int:
|
|
|
|
return int(x, 16)
|
|
|
|
|
|
|
|
|
|
|
|
MESSAGES = [
|
2019-04-11 09:15:23 +00:00
|
|
|
bytes(b'\x00' * 32),
|
|
|
|
bytes(b'\x56' * 32),
|
|
|
|
bytes(b'\xab' * 32),
|
2019-03-27 16:32:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
PRIVKEYS = [
|
|
|
|
# Curve order is 256 so private keys are 32 bytes at most.
|
|
|
|
# Also not all integers is a valid private key, so using pre-generated keys
|
|
|
|
hex_to_int('0x00000000000000000000000000000000263dbd792f5b1be47ed85f8938c0f29586af0d3ac7b977f21c278fe1462040e3'),
|
|
|
|
hex_to_int('0x0000000000000000000000000000000047b8192d77bf871b62e87859d653922725724a5c031afeabc60bcef5ff665138'),
|
|
|
|
hex_to_int('0x00000000000000000000000000000000328388aff0d4a5b7dc9205abd374e7e98f3cd9f3418edb4eafda5fb16473d216'),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-01-23 00:56:50 +00:00
|
|
|
def case01_sign():
|
2019-03-27 16:32:13 +00:00
|
|
|
for privkey in PRIVKEYS:
|
|
|
|
for message in MESSAGES:
|
2020-01-16 18:09:58 +00:00
|
|
|
sig = bls.G2ProofOfPossession.Sign(privkey, message)
|
|
|
|
full_name = f'{int_to_hex(privkey)}_{encode_hex(message)}'
|
2020-01-23 00:56:50 +00:00
|
|
|
yield f'sign_case_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
2020-01-16 18:09:58 +00:00
|
|
|
'input': {
|
|
|
|
'privkey': int_to_hex(privkey),
|
|
|
|
'message': encode_hex(message),
|
|
|
|
},
|
|
|
|
'output': encode_hex(sig)
|
|
|
|
}
|
2019-04-11 09:15:23 +00:00
|
|
|
|
2019-07-27 01:07:37 +00:00
|
|
|
|
2020-01-23 00:56:50 +00:00
|
|
|
def case02_verify():
|
2020-01-21 17:28:31 +00:00
|
|
|
for i, privkey in enumerate(PRIVKEYS):
|
|
|
|
for message in MESSAGES:
|
|
|
|
# Valid signature
|
|
|
|
signature = bls.G2ProofOfPossession.Sign(privkey, message)
|
2020-01-23 17:32:12 +00:00
|
|
|
pubkey = bls.G2ProofOfPossession.PrivToPub(privkey)
|
2020-01-21 17:28:31 +00:00
|
|
|
full_name = f'{encode_hex(pubkey)}_{encode_hex(message)}_valid'
|
2020-01-23 00:56:50 +00:00
|
|
|
yield f'verify_case_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
2020-01-21 17:28:31 +00:00
|
|
|
'input': {
|
|
|
|
'pubkey': encode_hex(pubkey),
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(signature),
|
|
|
|
},
|
|
|
|
'output': True,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Invalid signatures -- wrong pubkey
|
2020-01-23 17:32:12 +00:00
|
|
|
wrong_pubkey = bls.G2ProofOfPossession.PrivToPub(PRIVKEYS[(i + 1) % len(PRIVKEYS)])
|
2020-01-21 17:28:31 +00:00
|
|
|
full_name = f'{encode_hex(wrong_pubkey)}_{encode_hex(message)}_wrong_pubkey'
|
2020-01-23 00:56:50 +00:00
|
|
|
yield f'verify_case_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
2020-01-21 17:28:31 +00:00
|
|
|
'input': {
|
|
|
|
'pubkey': encode_hex(wrong_pubkey),
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(signature),
|
|
|
|
},
|
|
|
|
'output': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Invalid signature -- tampered with signature
|
|
|
|
tampered_signature = signature[:-4] + b'\xFF\xFF\xFF\xFF'
|
|
|
|
full_name = f'{encode_hex(pubkey)}_{encode_hex(message)}_tampered_signature'
|
2020-01-23 00:56:50 +00:00
|
|
|
yield f'verify_case_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
2020-01-21 17:28:31 +00:00
|
|
|
'input': {
|
|
|
|
'pubkey': encode_hex(pubkey),
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(tampered_signature),
|
|
|
|
},
|
|
|
|
'output': False,
|
|
|
|
}
|
2019-03-27 16:32:13 +00:00
|
|
|
|
|
|
|
|
2020-01-23 00:56:50 +00:00
|
|
|
def case03_aggregate():
|
2020-01-16 18:09:58 +00:00
|
|
|
for message in MESSAGES:
|
|
|
|
sigs = [bls.G2ProofOfPossession.Sign(privkey, message) for privkey in PRIVKEYS]
|
2020-01-23 00:56:50 +00:00
|
|
|
yield f'aggregate_{encode_hex(message)}', {
|
2020-01-16 18:09:58 +00:00
|
|
|
'input': [encode_hex(sig) for sig in sigs],
|
|
|
|
'output': encode_hex(bls.G2ProofOfPossession.Aggregate(sigs)),
|
|
|
|
}
|
2019-04-11 09:15:23 +00:00
|
|
|
|
2019-07-27 01:07:37 +00:00
|
|
|
|
2020-01-23 00:56:50 +00:00
|
|
|
def case04_fast_aggregate_verify():
|
2020-01-21 17:28:31 +00:00
|
|
|
for i, message in enumerate(MESSAGES):
|
|
|
|
privkeys = PRIVKEYS[:i + 1]
|
|
|
|
sigs = [bls.G2ProofOfPossession.Sign(privkey, message) for privkey in privkeys]
|
|
|
|
aggregate_signature = bls.G2ProofOfPossession.Aggregate(sigs)
|
2020-01-23 17:32:12 +00:00
|
|
|
pubkeys = [bls.G2ProofOfPossession.PrivToPub(privkey) for privkey in privkeys]
|
2020-01-21 17:28:31 +00:00
|
|
|
pubkeys_serial = [encode_hex(pubkey) for pubkey in pubkeys]
|
|
|
|
|
|
|
|
# Valid signature
|
|
|
|
full_name = f'{pubkeys_serial}_{encode_hex(message)}_valid'
|
|
|
|
yield f'fast_aggregate_verify_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
|
|
|
'input': {
|
|
|
|
'pubkeys': pubkeys_serial,
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(aggregate_signature),
|
|
|
|
},
|
|
|
|
'output': True,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Invalid signature -- extra pubkey
|
2020-01-23 17:32:12 +00:00
|
|
|
pubkeys_extra = pubkeys + [bls.G2ProofOfPossession.PrivToPub(PRIVKEYS[-1])]
|
2020-01-25 21:16:32 +00:00
|
|
|
pubkeys_extra_serial = [encode_hex(pubkey) for pubkey in pubkeys_extra]
|
2020-01-21 17:28:31 +00:00
|
|
|
full_name = f'{pubkeys_extra_serial}_{encode_hex(message)}_extra_pubkey'
|
|
|
|
yield f'fast_aggregate_verify_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
|
|
|
'input': {
|
|
|
|
'pubkeys': pubkeys_extra_serial,
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(aggregate_signature),
|
|
|
|
},
|
|
|
|
'output': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Invalid signature -- tampered with signature
|
|
|
|
tampered_signature = aggregate_signature[:-4] + b'\xff\xff\xff\xff'
|
|
|
|
full_name = f'{pubkeys_serial}_{encode_hex(message)}_tampered_signature'
|
|
|
|
yield f'fast_aggregate_verify_{(hash(bytes(full_name, "utf-8"))[:8]).hex()}', {
|
|
|
|
'input': {
|
|
|
|
'pubkeys': pubkeys_serial,
|
|
|
|
'message': encode_hex(message),
|
|
|
|
'signature': encode_hex(tampered_signature),
|
|
|
|
},
|
|
|
|
'output': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-23 00:56:50 +00:00
|
|
|
def case05_aggregate_verify():
|
2020-01-21 17:28:31 +00:00
|
|
|
pairs = []
|
|
|
|
sigs = []
|
|
|
|
for privkey, message in zip(PRIVKEYS, MESSAGES):
|
|
|
|
sig = bls.G2ProofOfPossession.Sign(privkey, message)
|
2020-01-23 17:32:12 +00:00
|
|
|
pubkey = bls.G2ProofOfPossession.PrivToPub(privkey)
|
2020-01-21 17:28:31 +00:00
|
|
|
pairs.append({
|
|
|
|
'pubkey': encode_hex(pubkey),
|
|
|
|
'message': encode_hex(message),
|
|
|
|
})
|
|
|
|
sigs.append(sig)
|
|
|
|
|
|
|
|
aggregate_signature = bls.G2ProofOfPossession.Aggregate(sigs)
|
|
|
|
yield f'fast_aggregate_verify_valid', {
|
|
|
|
'input': {
|
|
|
|
'pairs': pairs,
|
|
|
|
'signature': encode_hex(aggregate_signature),
|
|
|
|
},
|
|
|
|
'output': True,
|
|
|
|
}
|
|
|
|
|
|
|
|
tampered_signature = aggregate_signature[:4] + b'\xff\xff\xff\xff'
|
|
|
|
yield f'fast_aggregate_verify_tampered_signature', {
|
|
|
|
'input': {
|
|
|
|
'pairs': pairs,
|
|
|
|
'signature': encode_hex(tampered_signature),
|
|
|
|
},
|
|
|
|
'output': False,
|
|
|
|
}
|
|
|
|
|
2019-04-11 09:15:23 +00:00
|
|
|
|
2019-07-27 01:07:37 +00:00
|
|
|
def create_provider(handler_name: str,
|
|
|
|
test_case_fn: Callable[[], Iterable[Tuple[str, Dict[str, Any]]]]) -> gen_typing.TestProvider:
|
|
|
|
|
|
|
|
def prepare_fn(configs_path: str) -> str:
|
2019-07-30 01:11:59 +00:00
|
|
|
# Nothing to load / change in spec. Maybe in future forks.
|
|
|
|
# Put the tests into the general config category, to not require any particular configuration.
|
|
|
|
return 'general'
|
2019-07-27 01:07:37 +00:00
|
|
|
|
|
|
|
def cases_fn() -> Iterable[gen_typing.TestCase]:
|
|
|
|
for data in test_case_fn():
|
|
|
|
print(data)
|
|
|
|
(case_name, case_content) = data
|
|
|
|
yield gen_typing.TestCase(
|
|
|
|
fork_name='phase0',
|
|
|
|
runner_name='bls',
|
|
|
|
handler_name=handler_name,
|
|
|
|
suite_name='small',
|
|
|
|
case_name=case_name,
|
|
|
|
case_fn=lambda: [('data', 'data', case_content)]
|
|
|
|
)
|
|
|
|
|
|
|
|
return gen_typing.TestProvider(prepare=prepare_fn, make_cases=cases_fn)
|
2019-04-11 09:15:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2019-04-11 09:25:00 +00:00
|
|
|
gen_runner.run_generator("bls", [
|
2020-01-23 00:56:50 +00:00
|
|
|
create_provider('sign', case01_sign),
|
|
|
|
create_provider('verify', case02_verify),
|
|
|
|
create_provider('aggregate', case03_aggregate),
|
|
|
|
create_provider('fast_aggregate_verify', case04_fast_aggregate_verify),
|
|
|
|
create_provider('aggregate_verify', case05_aggregate_verify),
|
2019-04-11 09:15:23 +00:00
|
|
|
])
|