From e0a153a9ca828a3135d79d6f6bd542992f55124f Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 28 Mar 2019 11:02:04 +0100 Subject: [PATCH] Removed unused argument from Ed25519Private.sign() --- src/wolfcrypt/ciphers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfcrypt/ciphers.py b/src/wolfcrypt/ciphers.py index 67da759..88aa098 100644 --- a/src/wolfcrypt/ciphers.py +++ b/src/wolfcrypt/ciphers.py @@ -702,7 +702,7 @@ class Ed25519Private(Ed25519Public): 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.