summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortcocagne <tcocagne@cleversafe.com>2013-03-14 22:26:01 -0500
committertcocagne <tcocagne@cleversafe.com>2013-03-14 22:26:01 -0500
commit0963507eaaa26a7673795c03fc67eaf04d09f087 (patch)
tree373779d2884d94e776158c626295a2883cd18e71
parent912f9015f066b135c577abcc5ae3c5cdf2d4672e (diff)
placed implementation sections in code blocks
-rw-r--r--README.md19
1 files changed, 12 insertions, 7 deletions
diff --git a/README.md b/README.md
index 1aa227e..9490b20 100644
--- a/README.md
+++ b/README.md
@@ -107,14 +107,19 @@ 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
+Installation from source:
+```
+ $ python setup.py install
+```
Documentation:
- cd srp/doc
- sphinx-build -b html . <desired output directory>
+```
+ $ cd srp/doc
+ $ sphinx-build -b html . <desired output directory>
+```
Validity & Performance Testing:
- python setup.py build
- python test_srp.py
-
+```
+ $ python setup.py build
+ $ python test_srp.py
+```