summary refs log tree commit diff
path: root/crypto/src/cms/CMSProcessable.cs
blob: 4aadfa131722d78a7195859d1116dba17707e534 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
	}
}