diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-07 14:42:21 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-07 14:42:21 +0700 |
commit | c2f2046b6fa20030916f113c48aad8a9db00343b (patch) | |
tree | 09243399fc7cc92435b91bcd7e011dc6656913b1 /crypto/src/pkix/Rfc3280CertPathUtilities.cs | |
parent | Refactor PopoPrivKey (diff) | |
download | BouncyCastle.NET-ed25519-c2f2046b6fa20030916f113c48aad8a9db00343b.tar.xz |
Obsolete/rename property
Diffstat (limited to '')
-rw-r--r-- | crypto/src/pkix/Rfc3280CertPathUtilities.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/src/pkix/Rfc3280CertPathUtilities.cs b/crypto/src/pkix/Rfc3280CertPathUtilities.cs index f1a85eb09..5a13ccd1d 100644 --- a/crypto/src/pkix/Rfc3280CertPathUtilities.cs +++ b/crypto/src/pkix/Rfc3280CertPathUtilities.cs @@ -78,7 +78,7 @@ namespace Org.BouncyCastle.Pkix DistributionPointName dpName = IssuingDistributionPoint.GetInstance(idp).DistributionPoint; var names = new List<GeneralName>(); - if (dpName.PointType == DistributionPointName.FullName) + if (dpName.Type == DistributionPointName.FullName) { GeneralName[] genNames = GeneralNames.GetInstance(dpName.Name).GetNames(); for (int j = 0; j < genNames.Length; j++) @@ -86,7 +86,7 @@ namespace Org.BouncyCastle.Pkix names.Add(genNames[j]); } } - if (dpName.PointType == DistributionPointName.NameRelativeToCrlIssuer) + if (dpName.Type == DistributionPointName.NameRelativeToCrlIssuer) { var seq = Asn1Sequence.GetInstance(crl.IssuerDN.ToAsn1Object()); @@ -106,11 +106,11 @@ namespace Org.BouncyCastle.Pkix { dpName = dp.DistributionPointName; GeneralName[] genNames = null; - if (dpName.PointType == DistributionPointName.FullName) + if (dpName.Type == DistributionPointName.FullName) { genNames = GeneralNames.GetInstance(dpName.Name).GetNames(); } - if (dpName.PointType == DistributionPointName.NameRelativeToCrlIssuer) + if (dpName.Type == DistributionPointName.NameRelativeToCrlIssuer) { if (dp.CrlIssuer != null) { |