Open Media Library Platform
This commit is contained in:
commit
411ad5b16f
5849 changed files with 1778641 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
Metadata-Version: 1.0
|
||||
Name: ed25519
|
||||
Version: 1.2
|
||||
Summary: Ed25519 public-key signatures
|
||||
Home-page: https://github.com/warner/python-ed25519
|
||||
Author: Brian Warner
|
||||
Author-email: warner-python-ed25519@lothar.com
|
||||
License: MIT
|
||||
Description: 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.
|
||||
|
||||
Platform: UNKNOWN
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
LICENSE
|
||||
MANIFEST.in
|
||||
Makefile
|
||||
NEWS
|
||||
README.rst
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue