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
  • cms
  • CMSProcessable.cs
  • Christian Gerdes's avatar
    Added The Bouncy Castle C# Cryptographic API as a project · 47ce503f
    47ce503f Browse Files
    Christian Gerdes authored 2016-11-02 17:32:34 +0100
CMSProcessable.cs 352 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
using System;
using System.IO;

namespace Org.BouncyCastle.Cms
{
	public interface CmsProcessable
	{
		/// <summary>
		/// Generic routine to copy out the data we want processed.
		/// </summary>
		/// <remarks>
		/// This routine may be called multiple times.
		/// </remarks>
		void Write(Stream outStream);

		[Obsolete]
		object GetContent();
	}
}