Skip to content
Snippets Groups Projects
Commit 69813417 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Cut the time to run the python ed25519 tests by a factor of ~6

I know it's pointless to optimize them, but I just can't let them
spend all that time in expmod() when native python pow() does the same
thing.
parent 7ca470e1
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
Includes self-tester and test vector generator.
"""
import slow_ed25519
from slow_ed25519 import *
import os
......@@ -20,8 +21,7 @@ import binascii
ell = l
# This replaces expmod above and makes it go a lot faster.
def expmod(b,e,m):
return pow(b,e,m)
slow_ed25519.expmod = pow
def curve25519ToEd25519(c, sign):
u = decodeint(c)
......
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