using System; using System.IO; namespace Org.BouncyCastle.Crypto.Tls { public interface TlsCipherFactory { /// TlsCipher CreateCipher(TlsClientContext context, EncryptionAlgorithm encryptionAlgorithm, DigestAlgorithm digestAlgorithm); } }