summary refs log tree commit diff
path: root/crypto/src/asn1/BerOutputStream.cs
blob: 4ed28d8f3df6ee71ec68bc07714bed9aafb363f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.IO;

namespace Org.BouncyCastle.Asn1
{
	// TODO Make Obsolete in favour of Asn1OutputStream?
    public class BerOutputStream
        : DerOutputStream
    {
        public BerOutputStream(Stream os)
            : base(os)
        {
        }
    }
}