Fix Darwin build and update Shared
This commit is contained in:
parent
9ba4b6a91a
commit
0ec7e7cc9e
97 changed files with 294 additions and 219 deletions
|
|
@ -1,6 +1,6 @@
|
|||
Metadata-Version: 1.0
|
||||
Metadata-Version: 1.1
|
||||
Name: ed25519
|
||||
Version: 1.2-17-g3b12acf
|
||||
Version: 1.3
|
||||
Summary: Ed25519 public-key signatures
|
||||
Home-page: https://github.com/warner/python-ed25519
|
||||
Author: Brian Warner
|
||||
|
|
@ -17,3 +17,12 @@ Description: Python bindings to the Ed25519 public-key signature system.
|
|||
more details.
|
||||
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Topic :: Security :: Cryptography
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
LICENSE
|
||||
MANIFEST.in
|
||||
Makefile
|
||||
NEWS
|
||||
README.md
|
||||
kat-ed25519.txt
|
||||
kat.py
|
||||
test_ed25519_kat.py
|
||||
versioneer.py
|
||||
bin/edsig
|
||||
ed25519.egg-info/PKG-INFO
|
||||
ed25519.egg-info/SOURCES.txt
|
||||
ed25519.egg-info/dependency_links.txt
|
||||
ed25519.egg-info/top_level.txt
|
||||
src/ed25519/__init__.py
|
||||
src/ed25519/_version.py
|
||||
src/ed25519/keys.py
|
||||
src/ed25519/test_ed25519.py
|
||||
src/ed25519-glue/ed25519module.c
|
||||
src/ed25519-supercop-ref/Makefile
|
||||
src/ed25519-supercop-ref/api.h
|
||||
src/ed25519-supercop-ref/crypto_int32.h
|
||||
src/ed25519-supercop-ref/crypto_sign.h
|
||||
src/ed25519-supercop-ref/crypto_uint32.h
|
||||
src/ed25519-supercop-ref/crypto_verify_32.h
|
||||
src/ed25519-supercop-ref/ed25519.c
|
||||
src/ed25519-supercop-ref/fe25519.c
|
||||
src/ed25519-supercop-ref/fe25519.h
|
||||
src/ed25519-supercop-ref/ge25519.c
|
||||
src/ed25519-supercop-ref/ge25519.h
|
||||
src/ed25519-supercop-ref/ge25519_base.data
|
||||
src/ed25519-supercop-ref/sc25519.c
|
||||
src/ed25519-supercop-ref/sc25519.h
|
||||
src/ed25519-supercop-ref/sha512-blocks.c
|
||||
src/ed25519-supercop-ref/sha512-hash.c
|
||||
src/ed25519-supercop-ref/sha512.h
|
||||
src/ed25519-supercop-ref/test.c
|
||||
src/ed25519-supercop-ref/verify.c
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
../ed25519/__init__.py
|
||||
../ed25519/_version.py
|
||||
../ed25519/keys.py
|
||||
../ed25519/test_ed25519.py
|
||||
../ed25519/__init__.pyc
|
||||
../ed25519/_version.pyc
|
||||
../ed25519/keys.pyc
|
||||
../ed25519/test_ed25519.pyc
|
||||
../ed25519/_ed25519.so
|
||||
./
|
||||
dependency_links.txt
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
top_level.txt
|
||||
../../../../bin/edsig
|
||||
|
|
@ -0,0 +1 @@
|
|||
ed25519
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
/Users/build/platform_darwin/build/PythonPackages/src/ed25519
|
||||
.
|
||||
Binary file not shown.
|
|
@ -4,8 +4,8 @@
|
|||
# unpacked source archive. Distribution tarballs contain a pre-generated copy
|
||||
# of this file.
|
||||
|
||||
version_version = '1.2-17-g3b12acf'
|
||||
version_full = '3b12acf095b5b402bef69e0bfa8832410b68854a'
|
||||
version_version = '1.3'
|
||||
version_full = '06c43e2d15ba45dbcfda780a81e9b49c199bce16'
|
||||
def get_versions(default={}, verbose=False):
|
||||
return {'version': version_version, 'full': version_full}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue