#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; namespace BestHTTP.SecureProtocol.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); } } #pragma warning restore #endif