add Linux_i686

This commit is contained in:
j 2014-05-17 18:11:40 +00:00 committed by Ubuntu
commit 95cd9b11f2
1644 changed files with 564260 additions and 0 deletions

View file

@ -0,0 +1,30 @@
Metadata-Version: 1.1
Name: pyOpenSSL
Version: 0.14
Summary: Python wrapper module around the OpenSSL library
Home-page: https://github.com/pyca/pyopenssl
Author: Jean-Paul Calderone
Author-email: exarkun@twistedmatrix.com
License: APL2
Description: High-level wrapper around a subset of the OpenSSL library, includes
* SSL.Connection objects, wrapping the methods of Python's portable
sockets
* Callbacks written in Python
* Extensive error-handling mechanism, mirroring OpenSSL's error codes
... and much more ;)
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking

View file

@ -0,0 +1,58 @@
ChangeLog
INSTALL
LICENSE
MANIFEST.in
README
TODO
setup.cfg
setup.py
OpenSSL/RATIONALE
OpenSSL/SSL.py
OpenSSL/__init__.py
OpenSSL/_util.py
OpenSSL/crypto.py
OpenSSL/rand.py
OpenSSL/tsafe.py
OpenSSL/version.py
OpenSSL/test/__init__.py
OpenSSL/test/test_crypto.py
OpenSSL/test/test_rand.py
OpenSSL/test/test_ssl.py
OpenSSL/test/util.py
doc/Makefile
doc/Quotes
doc/README
doc/api.rst
doc/conf.py
doc/index.rst
doc/internals.rst
doc/introduction.rst
doc/make.bat
doc/api/crypto.rst
doc/api/rand.rst
doc/api/ssl.rst
doc/images/pyopenssl-brand.png
doc/images/pyopenssl-icon.png
doc/images/pyopenssl-logo.png
doc/images/pyopenssl.svg
examples/README
examples/SecureXMLRPCServer.py
examples/certgen.py
examples/mk_simple_certs.py
examples/proxy.py
examples/simple/README
examples/simple/client.py
examples/simple/server.py
examples/sni/README
examples/sni/another.invalid.crt
examples/sni/another.invalid.key
examples/sni/client.py
examples/sni/example.invalid.crt
examples/sni/example.invalid.key
examples/sni/server.py
pyOpenSSL.egg-info/PKG-INFO
pyOpenSSL.egg-info/SOURCES.txt
pyOpenSSL.egg-info/dependency_links.txt
pyOpenSSL.egg-info/requires.txt
pyOpenSSL.egg-info/top_level.txt
rpm/build_script

View file

@ -0,0 +1,30 @@
../OpenSSL/__init__.py
../OpenSSL/tsafe.py
../OpenSSL/rand.py
../OpenSSL/crypto.py
../OpenSSL/SSL.py
../OpenSSL/version.py
../OpenSSL/test/__init__.py
../OpenSSL/test/util.py
../OpenSSL/test/test_crypto.py
../OpenSSL/test/test_rand.py
../OpenSSL/test/test_ssl.py
../OpenSSL/_util.py
../OpenSSL/__init__.pyc
../OpenSSL/tsafe.pyc
../OpenSSL/rand.pyc
../OpenSSL/crypto.pyc
../OpenSSL/SSL.pyc
../OpenSSL/version.pyc
../OpenSSL/test/__init__.pyc
../OpenSSL/test/util.pyc
../OpenSSL/test/test_crypto.pyc
../OpenSSL/test/test_rand.pyc
../OpenSSL/test/test_ssl.pyc
../OpenSSL/_util.pyc
./
requires.txt
SOURCES.txt
dependency_links.txt
PKG-INFO
top_level.txt

View file

@ -0,0 +1,2 @@
cryptography>=0.2.1
six>=1.5.2