summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2015-10-28 18:18:13 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2015-10-28 18:18:13 +0700
commitf862710a4f10d3fbeb0b6466dec96567357aadb4 (patch)
tree7b6f200e44465f1fc01f87dba7fbc454d43cdb1b
parentFix duplicated 'using' directives (diff)
downloadBouncyCastle.NET-ed25519-f862710a4f10d3fbeb0b6466dec96567357aadb4.tar.xz
Fix Compare() declaration
-rw-r--r--crypto/src/asn1/Asn1Set.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/Asn1Set.cs b/crypto/src/asn1/Asn1Set.cs
index 2955c0ca7..418b560fd 100644
--- a/crypto/src/asn1/Asn1Set.cs
+++ b/crypto/src/asn1/Asn1Set.cs
@@ -334,7 +334,7 @@ namespace Org.BouncyCastle.Asn1
         private class DerComparer
             : IComparer
         {
-            public int Compare(byte[] x, byte[] y)
+            public int Compare(object x, object y)
             {
                 byte[] a = (byte[])x, b = (byte[])y;
 #endif