diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-08 17:05:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-08 17:05:55 +0700 |
commit | 4206023cd1ba392562ecc3d9b3f37f7e1b456d76 (patch) | |
tree | 12b659481c05c9e93ff7dfd863e2b996cf793b52 /crypto/src/asn1/LazyDERSequence.cs | |
parent | Check key sizes strictly (diff) | |
download | BouncyCastle.NET-ed25519-4206023cd1ba392562ecc3d9b3f37f7e1b456d76.tar.xz |
ASN.1 updates from bc-java
Diffstat (limited to 'crypto/src/asn1/LazyDERSequence.cs')
-rw-r--r-- | crypto/src/asn1/LazyDERSequence.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/crypto/src/asn1/LazyDERSequence.cs b/crypto/src/asn1/LazyDERSequence.cs index 8fa7a0792..78e9df151 100644 --- a/crypto/src/asn1/LazyDERSequence.cs +++ b/crypto/src/asn1/LazyDERSequence.cs @@ -21,19 +21,13 @@ namespace Org.BouncyCastle.Asn1 { if (null != encoded) { - 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; } - } + } } public override Asn1Encodable this[int index] |