summaryrefslogtreecommitdiff
path: root/README.txt
blob: 83cee01f82d64532d9cb51ef7503be6dabe01c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

This package provides a Python Implementation of the Secure Remote
Password Protocol. It consists of 3 modules: A pure Python
implementation, A ctypes + OpenSSL implementation, and a C extension
module. The ctypes & extension modules are approximately 10-20x faster
than the pure Python implementation and can take advantage of multiple
CPUs. The extension module will be used if available, otherwise the
library will fall back to the ctypes implementation followed by the 
pure Python implementation.


Installation:
   python setup.py install
   
   
Documentation:
   cd doc
   sphinx-build -b html . <desired output directory>