mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-09 18:25:47 +00:00
13 lines
224 B
Python
13 lines
224 B
Python
|
|
|
|
def bls_verify(pubkey, message_hash, signature, domain):
|
|
return True
|
|
|
|
|
|
def bls_verify_multiple(pubkeys, message_hashes, signature, domain):
|
|
return True
|
|
|
|
|
|
def bls_aggregate_pubkeys(pubkeys):
|
|
return b'\x42' * 96
|