diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-04-06 12:22:52 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-04-06 12:22:52 +0700 |
commit | e9a17a4811d21de72e8f36f7b423fe44c2cb1cf6 (patch) | |
tree | b53100dc6e69482b09139e62c1fc20b6e0129fb3 /crypto/src/cms | |
parent | Remove redundant Mac.Init calls (diff) | |
download | BouncyCastle.NET-ed25519-e9a17a4811d21de72e8f36f7b423fe44c2cb1cf6.tar.xz |
Move NullOutputStream to util/io
Diffstat (limited to 'crypto/src/cms')
-rw-r--r-- | crypto/src/cms/NullOutputStream.cs | 20 |
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 - } - } -} |