using System; using System.IO; namespace Org.BouncyCastle.Crypto.Tls { public interface TlsCipher { /// byte[] EncodePlaintext(ContentType type, byte[] plaintext, int offset, int len); /// byte[] DecodeCiphertext(ContentType type, byte[] ciphertext, int offset, int len); } }