diff options
Diffstat (limited to 'crypto/src/pkix/PkixCertPathValidator.cs')
-rw-r--r-- | crypto/src/pkix/PkixCertPathValidator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/pkix/PkixCertPathValidator.cs b/crypto/src/pkix/PkixCertPathValidator.cs index 6fe3fd903..0c585f520 100644 --- a/crypto/src/pkix/PkixCertPathValidator.cs +++ b/crypto/src/pkix/PkixCertPathValidator.cs @@ -212,7 +212,7 @@ namespace Org.BouncyCastle.Pkix // var targetConstraints = paramsPkix.GetTargetConstraintsCert(); - if (targetConstraints != null && !targetConstraints.Match((X509Certificate)certs[0])) + if (targetConstraints != null && !targetConstraints.Match(certs[0])) { throw new PkixCertPathValidatorException( "Target certificate in certification path does not match targetConstraints.", null, 0); @@ -222,7 +222,7 @@ namespace Org.BouncyCastle.Pkix // initialize CertPathChecker's // var certPathCheckers = paramsPkix.GetCertPathCheckers(); - foreach (PkixCertPathChecker certPathChecker in certPathCheckers) + foreach (var certPathChecker in certPathCheckers) { certPathChecker.Init(false); } |