I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f69f06b0 authored by zzz's avatar zzz
Browse files

* Tunnel encryption: More efficient XOR

parent 5a934050
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,10 @@ class HopProcessor { ...@@ -100,7 +100,10 @@ class HopProcessor {
private final void encrypt(byte data[], int offset, int length) { private final void encrypt(byte data[], int offset, int length) {
for (int off = offset + IV_LENGTH; off < length; off += IV_LENGTH) { for (int off = offset + IV_LENGTH; off < length; off += IV_LENGTH) {
DataHelper.xor(data, off - IV_LENGTH, data, off, data, off, IV_LENGTH); //DataHelper.xor(data, off - IV_LENGTH, data, off, data, off, IV_LENGTH);
for (int j = 0; j < IV_LENGTH; j++) {
data[off + j] ^= data[(off - IV_LENGTH) + j];
}
_context.aes().encryptBlock(data, off, _config.getLayerKey(), data, off); _context.aes().encryptBlock(data, off, _config.getLayerKey(), data, off);
} }
} }
......
...@@ -93,7 +93,10 @@ class OutboundGatewayProcessor { ...@@ -93,7 +93,10 @@ class OutboundGatewayProcessor {
System.arraycopy(orig, off, cur, 0, HopProcessor.IV_LENGTH); System.arraycopy(orig, off, cur, 0, HopProcessor.IV_LENGTH);
ctx.aes().decryptBlock(orig, off, config.getLayerKey(), orig, off); ctx.aes().decryptBlock(orig, off, config.getLayerKey(), orig, off);
DataHelper.xor(prev, 0, orig, off, orig, off, HopProcessor.IV_LENGTH); //DataHelper.xor(prev, 0, orig, off, orig, off, HopProcessor.IV_LENGTH);
for (int j = 0; j < HopProcessor.IV_LENGTH; j++) {
orig[off + j] ^= prev[j];
}
byte xf[] = prev; byte xf[] = prev;
prev = cur; prev = cur;
cur = xf; cur = xf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment