diff options
author | Yawning Angel <yawning@schwanenlied.me> | 2015-08-17 18:41:41 +0000 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2015-08-17 18:41:41 +0000 |
commit | a77616f6056a9dbb5722600ff2465d8ec5b3d063 (patch) | |
tree | 91e92bb47374ed3a07848cb7a32b8e2332693e31 /changes | |
parent | 5fe18bcf5459d8801fdeaf01e74571cd36ba47da (diff) | |
download | tor-a77616f6056a9dbb5722600ff2465d8ec5b3d063.tar.gz tor-a77616f6056a9dbb5722600ff2465d8ec5b3d063.zip |
Enable ed25519-donna's SSE2 code when possible for 32 bit x86.
This probably requires the user to manually set CFLAGS, but should
result in a net gain on 32 bit x86. Enabling SSE2 support would be
possible on x86_64, but will result in slower performance.
Implements feature #16535.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/feature16535 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/feature16535 b/changes/feature16535 new file mode 100644 index 0000000000..3df46b658a --- /dev/null +++ b/changes/feature16535 @@ -0,0 +1,4 @@ + o Minor features (performance) + - Improve the runtime speed of Ed25519 operations and Curve25519 keypair + generation when built targeting 32 bit x86 platforms with SSE2 + available. Implements ticket 16535. |