diff options
author | David Hook <david.hook@keyfactor.com> | 2022-11-08 16:22:56 +1100 |
---|---|---|
committer | David Hook <david.hook@keyfactor.com> | 2022-11-08 16:22:56 +1100 |
commit | 9e4d2ccf835618ac8daafa1b490bba6872c040a4 (patch) | |
tree | 9b66867f5d58e5876908641bfb353da7252dc5f1 /crypto/test | |
parent | removed unused SecureRandom (diff) | |
download | BouncyCastle.NET-ed25519-9e4d2ccf835618ac8daafa1b490bba6872c040a4.tar.xz |
removed unused SecureRandom
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs b/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs index 85f8c1f1c..436dae4ef 100644 --- a/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs +++ b/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs @@ -74,7 +74,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests // // Signature test // - PicnicSigner signer = new PicnicSigner(random); + PicnicSigner signer = new PicnicSigner(); signer.Init(true, privParams); byte[] sigGenerated = signer.GenerateSignature(msg); |