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

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

Fix bug in unused off/len version of siphash

parent 39493e0f
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ abstract class SipHashInline {
long v2 = 0x6c7967656e657261L ^ k0;
long v3 = 0x7465646279746573L ^ k1;
long m;
int last = len / 8 * 8;
int last = off + (len / 8 * 8);
int i = off;
// processing 8 bytes blocks in data
......
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