-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
133 lines (114 loc) · 4.5 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
from __future__ import print_function
import sys, os, timeit
from distutils.core import setup, Extension, Command
from distutils.util import get_platform
import versioneer
LONG_DESCRIPTION="""\
A fork of python-ed25519 that uses BLAKE2b instead of SHA512 as a hash function
as used in the NANO cryptocurrency.
Original code written by @warner on GitHub:
github.com/warner/python-ed25519
Python bindings to the Ed25519 public-key signature system.
This offers a comfortable python interface to a C implementation of the
Ed25519 public-key signature system (http://ed25519.cr.yp.to/), using the
portable 'ref' code from the 'SUPERCOP' benchmarking suite.
This system provides high (128-bit) security, short (32-byte) keys, short
(64-byte) signatures, and fast (2-6ms) operation. Please see the README for
more details.
"""
sources = ["src/ed25519-glue/ed25519module.c"]
sources.extend(["src/ed25519-supercop-ref/"+s
for s in os.listdir("src/ed25519-supercop-ref")
if s.endswith(".c") and s!="test.c"])
m = Extension("ed25519_blake2b._ed25519",
include_dirs=["src/ed25519-supercop-ref"], sources=sources)
commands = versioneer.get_cmdclass().copy()
class Test(Command):
description = "run tests"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def setup_path(self):
# copied from distutils/command/build.py
self.plat_name = get_platform()
plat_specifier = ".%s-%s" % (self.plat_name, sys.version[0:3])
self.build_lib = os.path.join("build", "lib"+plat_specifier)
sys.path.insert(0, self.build_lib)
def run(self):
self.setup_path()
import unittest
test = unittest.defaultTestLoader.loadTestsFromName("ed25519_blake2b.test_ed25519")
runner = unittest.TextTestRunner(verbosity=2)
result = runner.run(test)
sys.exit(not result.wasSuccessful())
commands["test"] = Test
class KnownAnswerTest(Test):
description = "run known-answer-tests"
def run(self):
self.setup_path()
import unittest
test = unittest.defaultTestLoader.loadTestsFromName("test_ed25519_kat")
runner = unittest.TextTestRunner(verbosity=2)
result = runner.run(test)
sys.exit(not result.wasSuccessful())
commands["test_kat"] = KnownAnswerTest
class Speed(Test):
description = "run benchmark suite"
def run(self):
self.setup_path()
def do(setup_statements, statement):
# extracted from timeit.py
t = timeit.Timer(stmt=statement,
setup="\n".join(setup_statements))
# determine number so that 0.2 <= total time < 2.0
for i in range(1, 10):
number = 10**i
x = t.timeit(number)
if x >= 0.2:
break
return x / number
def abbrev(t):
if t > 1.0:
return "%.3fs" % t
if t > 1e-3:
return "%.2fms" % (t*1e3)
return "%.2fus" % (t*1e6)
S1 = "import ed25519_blake2b; msg=b'hello world'"
S2 = "sk,vk = ed25519_blake2b.create_keypair()"
S3 = "sig = sk.sign(msg)"
S4 = "vk.verify(sig, msg)"
generate = do([S1], S2)
sign = do([S1, S2], S3)
verify = do([S1, S2, S3], S4)
print("generate: %s" % abbrev(generate))
print("sign: %s" % abbrev(sign))
print("verify: %s" % abbrev(verify))
commands["speed"] = Speed
setup(name="ed25519-blake2b",
version=versioneer.get_version(),
description="Ed25519 public-key signatures (BLAKE2b fork)",
long_description=LONG_DESCRIPTION,
author="Janne Pulkkinen",
author_email="[email protected]",
license="MIT",
url="https://github.com/Matoking/python-ed25519-blake2b",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Security :: Cryptography",
],
ext_modules=[m],
packages=["ed25519_blake2b"],
package_dir={"ed25519_blake2b": "src/ed25519"},
scripts=["bin/edsig"],
cmdclass=commands,
)