summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2015-08-12 16:01:28 +0000
committerYawning Angel <yawning@schwanenlied.me>2015-08-12 16:01:28 +0000
commit78fad380cda75b0de86f0d8d2b4d7e55f239f326 (patch)
treef7b9ca624ea88af62ed4f02b65c6408f404bd214 /changes
parentaf898f54752f45fa2a8da28ca88379c89ca1f5a0 (diff)
downloadtor-78fad380cda75b0de86f0d8d2b4d7e55f239f326.tar.gz
tor-78fad380cda75b0de86f0d8d2b4d7e55f239f326.zip
Use ed25519-donna's batch verification support when applicable.
The code was always in our Ed25519 wrappers, so enable it when using the ed25519-donna backend, and deal with the mocking related crypto_rand silliness. Implements feature 16533.
Diffstat (limited to 'changes')
-rw-r--r--changes/feature165334
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/feature16533 b/changes/feature16533
new file mode 100644
index 0000000000..e9fea94c7e
--- /dev/null
+++ b/changes/feature16533
@@ -0,0 +1,4 @@
+ o Minor features (performance)
+ - Improve the runtime speed of Ed25519 signature verification by using
+ Ed25519-donna's batch verification support when there are a lot of
+ signatures to verify at once. Implements ticket 16533.