bt.net.EncryptedChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
package bt.net;
import javax.crypto.Cipher;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.ByteChannel;
/**
* Decorates a byte channel with encryption
*
* @since 1.2
*/
public class EncryptedChannel implements ByteChannel {
private final ByteChannel delegate;
private final Cipher cipherIn;
private final Cipher cipherOut;
/**
* Create an encrypted byte channel.
*
* @param delegate Delegate byte channel
* @param cipherIn Cipher for decrypting incoming data
* @param cipherOut Cipher for encrypting outgoing data
* @since 1.2
*/
public EncryptedChannel(ByteChannel delegate, Cipher cipherIn, Cipher cipherOut) {
this.delegate = delegate;
this.cipherIn = cipherIn;
this.cipherOut = cipherOut;
}
@Override
public int read(ByteBuffer dst) throws IOException {
int read = 0;
if (dst.hasRemaining()) {
int position = dst.position();
int limit = dst.limit();
read = delegate.read(dst);
if (read > 0) {
dst.limit(dst.position());
dst.position(position);
byte[] bytes = new byte[dst.remaining()];
dst.get(bytes);
dst.limit(limit);
dst.position(position);
try {
bytes = cipherIn.update(bytes);
} catch (Exception e) {
throw new RuntimeException(e);
}
dst.put(bytes);
}
}
return read;
}
@Override
public int write(ByteBuffer src) throws IOException {
int written = 0;
if (src.hasRemaining()) {
int position = src.position();
byte[] bytes = new byte[src.remaining()];
src.get(bytes);
src.position(position);
try {
bytes = cipherOut.update(bytes);
} catch (Exception e) {
throw new RuntimeException(e);
}
src.put(bytes);
src.position(position);
written = delegate.write(src);
}
return written;
}
@Override
public boolean isOpen() {
return delegate.isOpen();
}
@Override
public void close() throws IOException {
delegate.close();
}
}