using System; namespace Org.BouncyCastle.Crypto { /// /// Interface describing a provider of cipher builders for creating decrypting ciphers. /// public interface IDecryptorBuilderProvider { /// /// Return a cipher builder for creating decrypting ciphers. /// /// The algorithm details/parameters to use to create the final cipher. /// A new cipher builder. ICipherBuilder CreateDecryptorBuilder(object algorithmDetails); } }