diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-28 18:18:13 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-28 18:18:13 +0700 |
commit | f862710a4f10d3fbeb0b6466dec96567357aadb4 (patch) | |
tree | 7b6f200e44465f1fc01f87dba7fbc454d43cdb1b | |
parent | Fix duplicated 'using' directives (diff) | |
download | BouncyCastle.NET-ed25519-f862710a4f10d3fbeb0b6466dec96567357aadb4.tar.xz |
Fix Compare() declaration
-rw-r--r-- | crypto/src/asn1/Asn1Set.cs | 2 |
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 |