File: README.rst

package info (click to toggle)
pyopenssl 19.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,128 kB
  • sloc: python: 7,775; makefile: 151
file content (56 lines) | stat: -rw-r--r-- 1,444 bytes parent folder | download | duplicates (3)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
========
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