diff options
author | Yawning Angel <yawning@schwanenlied.me> | 2015-11-05 18:21:43 +0000 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2015-11-05 18:21:43 +0000 |
commit | b71f6d6a47af96f5fab5d139e585739b078ea54a (patch) | |
tree | 8d6094898195787d527fa4d3e0b25f908f9ff600 /changes | |
parent | 5a370618859573ed1eb5dabbe0ed2e773a579817 (diff) | |
download | tor-b71f6d6a47af96f5fab5d139e585739b078ea54a.tar.gz tor-b71f6d6a47af96f5fab5d139e585739b078ea54a.zip |
Fix SipHash-2-4 performance for non multiple of 8 buffers.
Code cribbed from Andrew Moon's Public Domain SipHash-2-4
implementation (which IMO is also cleaner).
Fixes bug 17544.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug17544 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug17544 b/changes/bug17544 new file mode 100644 index 0000000000..4316d0709c --- /dev/null +++ b/changes/bug17544 @@ -0,0 +1,4 @@ + o Minor bugfix (SipHash-2-4 performance): + - Improve performance when hashing non-multiple of 8 sized buffers, + based on Andrew Moon's Public Domain SipHash-2-4 implementation. + Fixes bug 17544; bugfix on 0.2.5.3-alpha. |