Changeset 9598517 in git
- Timestamp:
- 2012-02-12T15:05:37Z (13 years ago)
- Branches:
- master
- Children:
- 04fd403
- Parents:
- d9c02d1
- git-author:
- Brian Warner <warner@…> (2012-02-09 22:47:13)
- git-committer:
- Brian Warner <warner@…> (2012-02-12 15:05:37)
- Files:
-
- 29 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .gitignore ¶
rd9c02d1 r9598517 21 21 /pycryptopp/_pycryptopp.so 22 22 /MANIFEST 23 /pycryptopp/publickey/ed25519/_ed25519.so -
TabularUnified README.rst ¶
rd9c02d1 r9598517 22 22 See the file COPYING.TGPPL.html for the terms of the Transitive Grace 23 23 Period Public Licence, version 1.0. 24 25 The Ed25519 code comes from the python-ed25519 distribution [3]_, for which 26 the basic C code is in the public domain, and the Python bindings are under 27 the MIT license. See COPYING.ed25519 for details. 24 28 25 29 BUILDING … … 47 51 a Python interpreter use "help(pycryptopp)", 48 52 "help(pycryptopp.cipher)", "help(pycryptopp.cipher.aes)" and so on. 53 54 The documentation for pycryptopp.publickey.ed25519 is in README.ed25519, 55 adapted from the upstream python-ed25519 library [3]. 49 56 50 57 CONTACT … … 78 85 .. [1] http://peak.telecommunity.com/DevCenter/setuptools 79 86 .. [2] http://groups.google.com/group/cryptopp-users 87 .. [3] https://github.com/warner/python-ed25519 -
TabularUnified pycryptopp/publickey/__init__.py ¶
rd9c02d1 r9598517 1 import ecdsa, rsa 1 import ecdsa, rsa, ed25519 2 2 3 quiet_pyflakes=[ecdsa, rsa ]3 quiet_pyflakes=[ecdsa, rsa, ed25519] -
TabularUnified setup.py ¶
rd9c02d1 r9598517 202 202 Extension('pycryptopp._pycryptopp', extra_srcs + srcs, include_dirs=include_dirs, library_dirs=library_dirs, libraries=libraries, extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, define_macros=define_macros, undef_macros=undef_macros) 203 203 ) 204 205 # python-ed25519 206 sources = [os.path.join("src-ed25519","glue","ed25519module.c")] 207 sources.extend([os.path.join("src-ed25519","supercop-ref",s) 208 for s in os.listdir(os.path.join("src-ed25519","supercop-ref")) 209 if s.endswith(".c") and s!="test.c"]) 210 m = Extension("pycryptopp.publickey.ed25519._ed25519", 211 include_dirs=[os.path.join("src-ed25519","supercop-ref")], 212 sources=sources) 213 ext_modules.append(m) 214 204 215 205 216 if TEST_DOUBLE_LOAD:
Note: See TracChangeset
for help on using the changeset viewer.