diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-06-09 21:32:35 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-06-09 21:32:35 +0700 |
commit | a2d8f592f92109116e5ea7b12d7db9705152cb85 (patch) | |
tree | 6b84d351dfeeffd7d7d3f1761f5c2c02596294a4 /crypto/src/asn1/BERGenerator.cs | |
parent | Update from bc-java (diff) | |
download | BouncyCastle.NET-ed25519-a2d8f592f92109116e5ea7b12d7db9705152cb85.tar.xz |
Overload AddObject for Asn1Object
Diffstat (limited to 'crypto/src/asn1/BERGenerator.cs')
-rw-r--r-- | crypto/src/asn1/BERGenerator.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/crypto/src/asn1/BERGenerator.cs b/crypto/src/asn1/BERGenerator.cs index 271572c02..ad72e7a31 100644 --- a/crypto/src/asn1/BERGenerator.cs +++ b/crypto/src/asn1/BERGenerator.cs @@ -4,7 +4,7 @@ using Org.BouncyCastle.Utilities.IO; namespace Org.BouncyCastle.Asn1 { - public class BerGenerator + public abstract class BerGenerator : Asn1Generator { private bool _tagged = false; @@ -17,7 +17,7 @@ namespace Org.BouncyCastle.Asn1 { } - public BerGenerator( + protected BerGenerator( Stream outStream, int tagNo, bool isExplicit) @@ -34,7 +34,13 @@ namespace Org.BouncyCastle.Asn1 new BerOutputStream(Out).WriteObject(obj); } - public override Stream GetRawOutputStream() + public override void AddObject( + Asn1Object obj) + { + new BerOutputStream(Out).WriteObject(obj); + } + + public override Stream GetRawOutputStream() { return Out; } |