diff options
-rw-r--r-- | crypto/src/pqc/crypto/picnic/PicnicSigner.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto/src/pqc/crypto/picnic/PicnicSigner.cs b/crypto/src/pqc/crypto/picnic/PicnicSigner.cs index a6eee2400..b391b62bc 100644 --- a/crypto/src/pqc/crypto/picnic/PicnicSigner.cs +++ b/crypto/src/pqc/crypto/picnic/PicnicSigner.cs @@ -7,14 +7,11 @@ namespace Org.BouncyCastle.Pqc.Crypto.Picnic public sealed class PicnicSigner : IMessageSigner { - private readonly SecureRandom random; - private PicnicPrivateKeyParameters privKey; private PicnicPublicKeyParameters pubKey; - public PicnicSigner(SecureRandom random) + public PicnicSigner() { - this.random = random; } public void Init(bool forSigning, ICipherParameters param) |