diff options
Diffstat (limited to 'crypto/src/asn1/DerOutputStream.cs')
-rw-r--r-- | crypto/src/asn1/DerOutputStream.cs | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/crypto/src/asn1/DerOutputStream.cs b/crypto/src/asn1/DerOutputStream.cs index 52b3a704d..c9c70a3f3 100644 --- a/crypto/src/asn1/DerOutputStream.cs +++ b/crypto/src/asn1/DerOutputStream.cs @@ -5,13 +5,18 @@ using Org.BouncyCastle.Utilities.IO; namespace Org.BouncyCastle.Asn1 { - public class DerOutputStream - : FilterStream - { - public DerOutputStream(Stream os) - : base(os) - { - } + public class DerOutputStream + : FilterStream + { + public DerOutputStream(Stream os) + : base(os) + { + } + + internal virtual bool IsBer + { + get { return false; } + } private void WriteLength( int length) |