Skip to content
  • This project
    • Loading...
  • Sign in

Products / VSTT-Plugins

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 2
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • VSTT-Plugins
  • crypto
  • src
  • util
  • io
  • NullOutputStream.cs
  • Christian Gerdes's avatar
    Added The Bouncy Castle C# Cryptographic API as a project · 47ce503f
    47ce503f
    Christian Gerdes authored 2016-11-02 17:32:34 +0100
NullOutputStream.cs 278 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using System;

namespace Org.BouncyCastle.Utilities.IO
{
	internal class NullOutputStream
		: BaseOutputStream
	{
		public override void WriteByte(byte b)
		{
			// do nothing
		}

		public override void Write(byte[] buffer, int offset, int count)
		{
			// do nothing
		}
	}
}