summary refs log tree commit diff
path: root/crypto/src/asn1/LazyDERSet.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2021-10-14 20:33:18 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-10-14 20:33:18 +0700
commit61605407b72d584c94daeafe4ea4c2b1cad3914e (patch)
treefb8d07b180f7c06dd1438e1a5796d4766df6d44a /crypto/src/asn1/LazyDERSet.cs
parentFix and Obsolete BerNull (diff)
downloadBouncyCastle.NET-ed25519-61605407b72d584c94daeafe4ea4c2b1cad3914e.tar.xz
Add withID to Encode method
- refactor Asn1OutputStream utility methods
Diffstat (limited to '')
-rw-r--r--crypto/src/asn1/LazyDERSet.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/asn1/LazyDERSet.cs b/crypto/src/asn1/LazyDERSet.cs
index f8271f330..ae56f5e50 100644
--- a/crypto/src/asn1/LazyDERSet.cs
+++ b/crypto/src/asn1/LazyDERSet.cs
@@ -59,17 +59,17 @@ namespace Org.BouncyCastle.Asn1
             }
         }
 
-        internal override void Encode(Asn1OutputStream asn1Out)
+        internal override void Encode(Asn1OutputStream asn1Out, bool withID)
         {
             lock (this)
             {
                 if (encoded == null)
                 {
-                    base.Encode(asn1Out);
+                    base.Encode(asn1Out, withID);
                 }
                 else
                 {
-                    asn1Out.WriteEncoded(Asn1Tags.Set | Asn1Tags.Constructed, encoded);
+                    asn1Out.WriteEncodingDL(withID, Asn1Tags.Constructed | Asn1Tags.Set, encoded);
                 }
             }
         }