py-libp2p/libp2p/pubsub/validators.py
2019-08-06 12:32:18 +08:00

10 lines
365 B
Python

# FIXME: Replace the type of `pubkey` with a custom type `Pubkey`
def signature_validator(pubkey: bytes, msg: bytes, sig: bytes) -> bool:
"""
Verify the message against the given public key.
:param pubkey: the public key which signs the message.
:param msg: the message signed.
"""
# TODO: Implement the signature validation
return True