summaryrefslogtreecommitdiff
path: root/srp-1.0/README.txt
diff options
context:
space:
mode:
authorben c <ben@futeisha.org>2013-02-11 07:30:38 +0900
committerben c <ben@futeisha.org>2013-02-11 07:30:38 +0900
commit1d075c151dbf94a4e81d35c5865e63b45153bc2f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /srp-1.0/README.txt
parentad4606d5a0230c657e25a6b4c0d6f98255b59b34 (diff)
remove old files from repo
Diffstat (limited to 'srp-1.0/README.txt')
-rw-r--r--srp-1.0/README.txt33
1 files changed, 0 insertions, 33 deletions
diff --git a/srp-1.0/README.txt b/srp-1.0/README.txt
deleted file mode 100644
index 4902c9f..0000000
--- a/srp-1.0/README.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-
-This package provides an implementation of the Secure Remote
-Password protocol (SRP). SRP is a cryptographically
-strong authentication protocol for password-based, mutual
-authentication over an insecure network connection.
-
-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.
-
-Note: The test_srp.py script prints the performance timings for each
-combination of hash algorithm and prime number size. This may be of
-use in deciding which pair of parameters to use in the unlikely
-event that the defaults are unacceptable.
-
-Installation:
- python setup.py install
-
-Validity & Performance Testing:
- python setup.py build
- python test_srp.py
-
-Documentation:
- cd srp/doc
- sphinx-build -b html . <desired output directory>
-
-
-** Note: The Sphinx documentation system is easy-installable:
- easy-install sphinx