summary refs log tree commit diff
path: root/crypto/src/x509
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-25 18:55:36 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-25 18:55:36 +0700
commit427646f20a1f0cde2e3d7312f7e116480b0bc777 (patch)
treeca3090694d0a1155ff713ca3904d17549741fd99 /crypto/src/x509
parentAdd ISAP to the master branch (diff)
downloadBouncyCastle.NET-ed25519-427646f20a1f0cde2e3d7312f7e116480b0bc777.tar.xz
Cleanup Platform.Equals
Diffstat (limited to 'crypto/src/x509')
-rw-r--r--crypto/src/x509/X509Certificate.cs2
-rw-r--r--crypto/src/x509/X509CertificatePair.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/x509/X509Certificate.cs b/crypto/src/x509/X509Certificate.cs
index b6749d505..db6966a0f 100644
--- a/crypto/src/x509/X509Certificate.cs
+++ b/crypto/src/x509/X509Certificate.cs
@@ -731,7 +731,7 @@ namespace Org.BouncyCastle.X509
             Asn1Encodable p2 = id2.Parameters;
 
             if ((p1 == null) == (p2 == null))
-                return Platform.Equals(p1, p2);
+                return Objects.Equals(p1, p2);
 
             // Exactly one of p1, p2 is null at this point
             return p1 == null
diff --git a/crypto/src/x509/X509CertificatePair.cs b/crypto/src/x509/X509CertificatePair.cs
index fbeba4dc6..866bb4539 100644
--- a/crypto/src/x509/X509CertificatePair.cs
+++ b/crypto/src/x509/X509CertificatePair.cs
@@ -101,8 +101,8 @@ namespace Org.BouncyCastle.X509
 			if (other == null)
 				return false;
 
-			return Platform.Equals(this.forward, other.forward)
-				&& Platform.Equals(this.reverse, other.reverse);
+			return Objects.Equals(this.forward, other.forward)
+				&& Objects.Equals(this.reverse, other.reverse);
 		}
 
 		public override int GetHashCode()