summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-05-19 22:21:26 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-05-19 22:21:26 -0400
commit3de241526703cb614568614b11c04d5e2b51f91b (patch)
tree5fc6aa2114032bf9b97899192ee32e8dab422e68
parent140a69e9347d3c664698405baf3531e0eebbe7e6 (diff)
downloadpyopenssl-git-3de241526703cb614568614b11c04d5e2b51f91b.tar.gz
Delete README.rst (#839)
-rw-r--r--examples/README.rst56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/README.rst b/examples/README.rst
deleted file mode 100644
index 1e9116b..0000000
--- a/examples/README.rst
+++ /dev/null
@@ -1,56 +0,0 @@
-========
-Examples
-========
-
-
-certgen.py -- Certificate generation module
-===========================================
-
-Example module with three functions:
-
-createKeyPair
- Create a public/private key pair.
-
-createCertRequest
- Create a certificate request.
-
-createCertificate
- Create a certificate given a cert request.
-
-In fact, I created the certificates and keys in the 'simple' directory with the script ``mk_simple_certs.py``.
-
-
-simple -- Simple client/server example
-======================================
-
-Start the server with::
-
- python server.py PORT
-
-and start clients with::
-
- python client.py HOST PORT
-
-The server is a simple echo server, anything a client sends, it sends back.
-
-
-proxy.py -- Example of an SSL-enabled proxy
-===========================================
-
-The proxy example demonstrate how to use set_connect_state to start talking SSL over an already connected socket.
-
-Usage::
-
- python proxy.py server[:port] proxy[:port]
-
-Contributed by Mihai Ibanescu
-
-
-SecureXMLRPCServer.py -- SSL-enabled version of SimpleXMLRPCServer
-==================================================================
-
-Acts exactly like `SimpleXMLRPCServer <https://docs.python.org/3/library/xmlrpc.server.html>`_ from the Python standard library, but uses secure connections.
-The technique and classes should work for any SocketServer style server.
-However, the code has not been extensively tested.
-
-Contributed by Michal Wallace