diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-09 10:12:03 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-09 10:12:03 +0700 |
commit | 27dae70f86c506c3f0232e20244db199aa038b3c (patch) | |
tree | 5ac7a2eab0abc4ab68f11fb166e6242c6d600561 | |
parent | Merge branch 'master' of git.bouncycastle.org:bc-csharp into pcl (diff) | |
parent | fixed argument null message (diff) | |
download | BouncyCastle.NET-ed25519-27dae70f86c506c3f0232e20244db199aa038b3c.tar.xz |
Merge branch 'master' of git.bouncycastle.org:bc-csharp into pcl
-rw-r--r-- | crypto/src/crypto/parameters/ParametersWithRandom.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/parameters/ParametersWithRandom.cs b/crypto/src/crypto/parameters/ParametersWithRandom.cs index a05e77409..276dc2666 100644 --- a/crypto/src/crypto/parameters/ParametersWithRandom.cs +++ b/crypto/src/crypto/parameters/ParametersWithRandom.cs @@ -15,7 +15,7 @@ namespace Org.BouncyCastle.Crypto.Parameters SecureRandom random) { if (parameters == null) - throw new ArgumentNullException("random"); + throw new ArgumentNullException("parameters"); if (random == null) throw new ArgumentNullException("random"); |