summary refs log tree commit diff
path: root/crypto/src/cms
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-04-06 12:22:52 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-04-06 12:22:52 +0700
commite9a17a4811d21de72e8f36f7b423fe44c2cb1cf6 (patch)
treeb53100dc6e69482b09139e62c1fc20b6e0129fb3 /crypto/src/cms
parentRemove redundant Mac.Init calls (diff)
downloadBouncyCastle.NET-ed25519-e9a17a4811d21de72e8f36f7b423fe44c2cb1cf6.tar.xz
Move NullOutputStream to util/io
Diffstat (limited to 'crypto/src/cms')
-rw-r--r--crypto/src/cms/NullOutputStream.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/crypto/src/cms/NullOutputStream.cs b/crypto/src/cms/NullOutputStream.cs
deleted file mode 100644
index ed937bdeb..000000000
--- a/crypto/src/cms/NullOutputStream.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-
-using Org.BouncyCastle.Utilities.IO;
-
-namespace Org.BouncyCastle.Cms
-{
-	internal class NullOutputStream
-		: BaseOutputStream
-	{
-		public override void WriteByte(byte b)
-		{
-			// do nothing
-		}
-
-		public override void Write(byte[] buffer, int offset, int count)
-		{
-			// do nothing
-		}
-	}
-}