summary refs log tree commit diff
path: root/crypto/src/util/io/MemoryOutputStream.cs
blob: a6de64680c0ad524e76f18f9e2636be030134bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.IO;

namespace Org.BouncyCastle.Utilities.IO
{
    public class MemoryOutputStream: MemoryStream
    {
        public sealed override bool CanRead { get { return false; } }
    }
}