Removed unused argument from Ed25519Private.sign()

pull/2/head
Daniele Lacamera 2019-03-28 11:02:04 +01:00
parent c836b8c0d3
commit e0a153a9ca
1 changed files with 1 additions and 1 deletions

View File

@ -702,7 +702,7 @@ class Ed25519Private(Ed25519Public):
return _ffi.buffer(key, size[0])[:] return _ffi.buffer(key, size[0])[:]
def sign(self, plaintext, rng=Random()): def sign(self, plaintext):
""" """
Signs **plaintext**, using the private key data in the object. Signs **plaintext**, using the private key data in the object.