view src/ch/ethz/ssh2/compression/Compressor.java @ 300:349847b2e318
ganymed
add ecdsa key support everywhere
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Tue, 29 Jul 2014 18:36:57 -0700 (2014-07-30) |
parents |
91a31873c42a |
children |
|
line source
package ch.ethz.ssh2.compression;
import java.io.IOException;
/**
* @author Kenny Root
* @version $Id: Compressor.java 151 2014-04-28 10:03:39Z dkocher@sudo.ch $
*/
public interface Compressor {
int getBufferSize();
int compress(byte[] buf, int start, int len, byte[] output) throws IOException;
byte[] uncompress(byte[] buf, int start, int[] len) throws IOException;
}