summary refs log tree commit diff
path: root/crypto/src/crypto/parameters/ParametersWithRandom.cs
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2015-11-09 10:24:41 +1100
committerDavid Hook <dgh@cryptoworkshop.com>2015-11-09 10:24:41 +1100
commit6adfadfc67116ab568768c12e4b97eb92d80d0c9 (patch)
treedc9678595733cad8d390c5a12449b60298e0ae50 /crypto/src/crypto/parameters/ParametersWithRandom.cs
parentFix weird character (diff)
downloadBouncyCastle.NET-ed25519-6adfadfc67116ab568768c12e4b97eb92d80d0c9.tar.xz
fixed argument null message
Diffstat (limited to '')
-rw-r--r--crypto/src/crypto/parameters/ParametersWithRandom.cs2
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");