mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-03 07:45:03 -05: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
|