<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0-beta.98" />
ICipherBuilder
using System.
IO;
namespace Org.
BouncyCastle.
Crypto
{
public interface ICipherBuilder
{
object AlgorithmDetails { get; }
int GetMaxOutputSize(
int inputLen);
ICipher BuildCipher(
Stream stream);
}
}