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-07-08 17:05:55 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-07-08 17:05:55 +0700
commit4206023cd1ba392562ecc3d9b3f37f7e1b456d76 (patch)
tree12b659481c05c9e93ff7dfd863e2b996cf793b52 /crypto/src/asn1/LazyDERSet.cs
parentCheck key sizes strictly (diff)
downloadBouncyCastle.NET-ed25519-4206023cd1ba392562ecc3d9b3f37f7e1b456d76.tar.xz
ASN.1 updates from bc-java
Diffstat (limited to 'crypto/src/asn1/LazyDERSet.cs')
-rw-r--r--crypto/src/asn1/LazyDERSet.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/crypto/src/asn1/LazyDERSet.cs b/crypto/src/asn1/LazyDERSet.cs
index eac64cbbe..25dbdd0a4 100644
--- a/crypto/src/asn1/LazyDERSet.cs
+++ b/crypto/src/asn1/LazyDERSet.cs
@@ -21,14 +21,8 @@ namespace Org.BouncyCastle.Asn1
 			{
 				if (encoded != null)
 				{
-                    Asn1EncodableVector v = new Asn1EncodableVector();
                     Asn1InputStream e = new LazyAsn1InputStream(encoded);
-
-					Asn1Object o;
-					while ((o = e.ReadObject()) != null)
-					{
-						v.Add(o);
-					}
+                    Asn1EncodableVector v = e.ReadVector();
 
                     this.elements = v.TakeElements();
                     this.encoded = null;