summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-04-27 00:08:04 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-04-27 00:08:04 +0700
commit7ab050c2de627e03b07e7a4b8970cd9fcfa593a6 (patch)
treed80258a5785021af60e47eacee42eb75675a8775
parentRe-add reworked SparkleEngine (diff)
downloadBouncyCastle.NET-ed25519-7ab050c2de627e03b07e7a4b8970cd9fcfa593a6.tar.xz
Check trust anchor count after filtering for nulls
-rw-r--r--crypto/src/pkix/PkixParameters.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/crypto/src/pkix/PkixParameters.cs b/crypto/src/pkix/PkixParameters.cs

index 192a78780..67a75ba97 100644 --- a/crypto/src/pkix/PkixParameters.cs +++ b/crypto/src/pkix/PkixParameters.cs
@@ -190,9 +190,7 @@ namespace Org.BouncyCastle.Pkix public virtual void SetTrustAnchors(ISet<TrustAnchor> tas) { if (tas == null) - throw new ArgumentNullException("value"); - if (tas.Count < 1) - throw new ArgumentException("non-empty set required", "value"); + throw new ArgumentNullException(nameof(tas)); // Explicit copy to enforce type-safety this.trustAnchors = new HashSet<TrustAnchor>(); @@ -203,9 +201,12 @@ namespace Org.BouncyCastle.Pkix trustAnchors.Add(ta); } } - } - /** + if (trustAnchors.Count < 1) + throw new ArgumentException("non-empty set required", nameof(tas)); + } + + /** * Returns the required constraints on the target certificate or attribute * certificate. The constraints are returned as an instance of * <code>IX509Selector</code>. If <code>null</code>, no constraints are