diff options
Diffstat (limited to 'src/test/slow_ed25519.py')
-rw-r--r-- | src/test/slow_ed25519.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/slow_ed25519.py b/src/test/slow_ed25519.py index f44708b200..be4eeab857 100644 --- a/src/test/slow_ed25519.py +++ b/src/test/slow_ed25519.py @@ -1,5 +1,5 @@ # This is the ed25519 implementation from -# http://ed25519.cr.yp.to/python/ed25519.py . +# https://ed25519.cr.yp.to/python/ed25519.py . # It is in the public domain. # # It isn't constant-time. Don't use it except for testing. Also, see @@ -8,6 +8,11 @@ # # Don't edit this file. Mess with ed25519_ref.py +# Future imports for Python 2.7, mandatory in 3.0 +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + import hashlib b = 256 |