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
|
Metadata-Version: 1.1
Name: TxSNI
Version: 0.2.0
Summary: easy-to-use SNI endpoint for twisted
Home-page: https://github.com/glyph/txsni
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT
Description: txsni
=====
.. image:: https://travis-ci.org/glyph/txsni.svg?branch=master
:target: https://travis-ci.org/glyph/txsni
Simple support for running a TLS server with Twisted.
Use it like this:
.. code-block:: console
$ mkdir certificates
$ cat private-stuff/mydomain.key.pem >> certificates/mydomain.example.com.pem
$ cat public-stuff/mydomain.crt.pem >> certificates/mydomain.example.com.pem
$ cat public-stuff/my-certificate-authority-chain.crt.pem >> \
certificates/mydomain.example.com.pem
$ twist web --port txsni:certificates:tcp:443
Enjoy!
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Security :: Cryptography
|