Frame-at-a-time decryption.

This commit is contained in:
akwizgran
2012-01-12 18:41:43 +00:00
parent f55f98f506
commit f6cad10868
13 changed files with 184 additions and 274 deletions

View File

@@ -6,7 +6,7 @@ import java.io.IOException;
interface ConnectionEncrypter {
/** Encrypts and writes the given frame. */
void writeFrame(byte[] b, int off, int len) throws IOException;
void writeFrame(byte[] b, int len) throws IOException;
/** Flushes the output stream. */
void flush() throws IOException;