// 
// Decompiled by Procyon v0.6.0
// 

package io.netty.handler.ssl;

import javax.net.ssl.SSLEngine;

public interface OpenSslCertificateCompressionAlgorithm
{
    byte[] compress(final SSLEngine p0, final byte[] p1) throws Exception;
    
    byte[] decompress(final SSLEngine p0, final int p1, final byte[] p2) throws Exception;
    
    int algorithmId();
}
