blob: cdeb7e3322ccec5268f44c5dedecd1e8e4f04afb [file] [log] [blame]
package org.bouncycastle.crypto.tls;
import java.io.OutputStream;
public interface TlsCompression
{
OutputStream compress(OutputStream output);
OutputStream decompress(OutputStream output);
}