summary refs log tree commit diff
path: root/crypto/src/asn1/LazyDLSet.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/LazyDLSet.cs')
-rw-r--r--crypto/src/asn1/LazyDLSet.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/src/asn1/LazyDLSet.cs b/crypto/src/asn1/LazyDLSet.cs
index 0d4d84310..bdee0bc22 100644
--- a/crypto/src/asn1/LazyDLSet.cs
+++ b/crypto/src/asn1/LazyDLSet.cs
@@ -5,7 +5,7 @@ using System.IO;
 namespace Org.BouncyCastle.Asn1
 {
     internal class LazyDLSet
-        : DerSet
+        : DLSet
     {
         private byte[] encoded;
 
@@ -106,6 +106,7 @@ namespace Org.BouncyCastle.Asn1
                         Asn1EncodableVector v = input.ReadVector();
 
                         this.elements = v.TakeElements();
+                        this.isSorted = elements.Length < 2;
                         this.encoded = null;
                     }
                     catch (IOException e)