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

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