13 lines
186 B
C#
13 lines
186 B
C#
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface ICipher
|
|
{
|
|
Stream Stream { get; }
|
|
|
|
int GetMaxOutputSize(int inputLen);
|
|
|
|
int GetUpdateOutputSize(int inputLen);
|
|
}
|