summary refs log tree commit diff
path: root/crypto/src/util/io/MemoryInputStream.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-11-14 01:46:02 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-11-14 01:46:02 +0700
commitc4b9868dd436cb97777c8cb1b66e8715bc6f2700 (patch)
tree3dd0d81d74f72c8fc81fb3b88991fa680a2a053e /crypto/src/util/io/MemoryInputStream.cs
parentBigInteger changed to use uint[] internally (diff)
downloadBouncyCastle.NET-ed25519-c4b9868dd436cb97777c8cb1b66e8715bc6f2700.tar.xz
Remove unnecessary classes
Diffstat (limited to 'crypto/src/util/io/MemoryInputStream.cs')
-rw-r--r--crypto/src/util/io/MemoryInputStream.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/crypto/src/util/io/MemoryInputStream.cs b/crypto/src/util/io/MemoryInputStream.cs
deleted file mode 100644

index cdc5aafb3..000000000 --- a/crypto/src/util/io/MemoryInputStream.cs +++ /dev/null
@@ -1,19 +0,0 @@ -using System; -using System.IO; - -namespace Org.BouncyCastle.Utilities.IO -{ - public class MemoryInputStream - : MemoryStream - { - public MemoryInputStream(byte[] buffer) - : base(buffer, false) - { - } - - public sealed override bool CanWrite - { - get { return false; } - } - } -}