mirror of https://github.com/nucypher/nucypher.git
Use 'ECDSA Signature' on __repr___
parent
61eb1a11f4
commit
1cafba8e34
|
@ -21,7 +21,7 @@ class Signature(bytes):
|
|||
self.sig_as_bytes = sig_as_bytes
|
||||
|
||||
def __repr__(self):
|
||||
return "{}".format(sig_as_bytes.decode())
|
||||
return "ECDSA Signature: {}".format(sig_as_bytes.decode())
|
||||
|
||||
def verify(self, message: bytes, pubkey: UmbralPublicKey) -> bool:
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue