diff options
Diffstat (limited to 'crypto/src/asn1/DLOutputStream.cs')
-rw-r--r-- | crypto/src/asn1/DLOutputStream.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/crypto/src/asn1/DLOutputStream.cs b/crypto/src/asn1/DLOutputStream.cs new file mode 100644 index 000000000..54dc1a249 --- /dev/null +++ b/crypto/src/asn1/DLOutputStream.cs @@ -0,0 +1,19 @@ +using System; +using System.IO; + +namespace Org.BouncyCastle.Asn1 +{ + internal class DLOutputStream + : Asn1OutputStream + { + internal DLOutputStream(Stream os, bool leaveOpen) + : base(os, leaveOpen) + { + } + + internal override int Encoding + { + get { return EncodingDL; } + } + } +} |