diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-14 01:46:02 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-14 01:46:02 +0700 |
commit | c4b9868dd436cb97777c8cb1b66e8715bc6f2700 (patch) | |
tree | 3dd0d81d74f72c8fc81fb3b88991fa680a2a053e /crypto/src/util | |
parent | BigInteger changed to use uint[] internally (diff) | |
download | BouncyCastle.NET-ed25519-c4b9868dd436cb97777c8cb1b66e8715bc6f2700.tar.xz |
Remove unnecessary classes
Diffstat (limited to 'crypto/src/util')
-rw-r--r-- | crypto/src/util/io/MemoryInputStream.cs | 19 | ||||
-rw-r--r-- | crypto/src/util/io/MemoryOutputStream.cs | 14 |
2 files changed, 0 insertions, 33 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; } - } - } -} diff --git a/crypto/src/util/io/MemoryOutputStream.cs b/crypto/src/util/io/MemoryOutputStream.cs deleted file mode 100644 index 828f23b4a..000000000 --- a/crypto/src/util/io/MemoryOutputStream.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.IO; - -namespace Org.BouncyCastle.Utilities.IO -{ - public class MemoryOutputStream - : MemoryStream - { - public sealed override bool CanRead - { - get { return false; } - } - } -} |