summary refs log tree commit diff
path: root/crypto/src/cms/CMSReadable.cs
blob: ad83ba068846f43322a5dad0c0f638bf14571b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;
using System.IO;

namespace Org.BouncyCastle.Cms
{
	public interface CmsReadable
	{
		Stream GetInputStream();
	}
}