summary refs log tree commit diff
path: root/crypto/src/asn1/DLOutputStream.cs
blob: 54dc1a2494a159839130174e5af1cf8c27fae39f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
        }
    }
}