diff options
author | David Hook <dgh@cryptoworkshop.com> | 2015-11-09 10:24:41 +1100 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2015-11-09 10:24:41 +1100 |
commit | 6adfadfc67116ab568768c12e4b97eb92d80d0c9 (patch) | |
tree | dc9678595733cad8d390c5a12449b60298e0ae50 /crypto/src | |
parent | Fix weird character (diff) | |
download | BouncyCastle.NET-ed25519-6adfadfc67116ab568768c12e4b97eb92d80d0c9.tar.xz |
fixed argument null message
Diffstat (limited to 'crypto/src')
-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"); |