diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-23 16:01:11 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-23 16:01:11 +0700 |
commit | 584ada5e755ef20e9b2824f11b034afaf32b3fda (patch) | |
tree | cf11582bcb5990c3f74b71e074d9665378c3564b /crypto/src/math | |
parent | VMPC refactoring (diff) | |
download | BouncyCastle.NET-ed25519-584ada5e755ef20e9b2824f11b034afaf32b3fda.tar.xz |
Change BigInteger arbitrary random source
Diffstat (limited to 'crypto/src/math')
-rw-r--r-- | crypto/src/math/BigInteger.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/BigInteger.cs b/crypto/src/math/BigInteger.cs index dd8b3a85b..5986f9fd8 100644 --- a/crypto/src/math/BigInteger.cs +++ b/crypto/src/math/BigInteger.cs @@ -7,7 +7,7 @@ using System.Runtime.Intrinsics.X86; #endif using System.Runtime.Serialization; using System.Text; - +using Org.BouncyCastle.Crypto.Prng; using Org.BouncyCastle.Security; using Org.BouncyCastle.Utilities; @@ -163,7 +163,7 @@ namespace Org.BouncyCastle.Math private const int chunk2 = 1, chunk8 = 1, chunk10 = 19, chunk16 = 16; private static readonly BigInteger radix2, radix2E, radix8, radix8E, radix10, radix10E, radix16, radix16E; - private static readonly SecureRandom RandomSource = new SecureRandom(); + private static readonly SecureRandom RandomSource = new SecureRandom(new VmpcRandomGenerator(), 16); /* * These are the threshold bit-lengths (of an exponent) where we increase the window size. |