summaryrefslogtreecommitdiff
path: root/Readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index bc80cd7..6c38a6b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,8 +1,7 @@
-imported to github from: https://code.google.com/p/srp-js/
+originally imported to github from: https://code.google.com/p/srp-js/
License: [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
-
Many websites today require some form of authentication to access the site's full functionality. Unfortunately, many of these websites do not use secure authentication protocols.
In some cases, websites will store user passwords in their database. If the database ever becomes compromised, an attacker could authenticate as any user he wanted.
@@ -15,6 +14,7 @@ The Secure Remote Password protocol addresses this problem. First presented by T
This project aims to provide a strong javascript implementation of SRP that will provide some peace of mind when using websites that do not use HTTPS. Due to the nature of HTTP, it is not invulnerable to man-in-the-middle attacks, but it should provide strong security against passive eavesdroppers, which are increasingly common in the age of wireless internet.
-To accompany the Javascript implementation of the client, the [original repository](https://code.google.com/p/srp-js/) had a django server.
+[ruby-srp](https://github.com/leapcode/ruby-srp) contains client and server implementations in ruby that work with the current version of srp-js. It also ships an example using srp-js as the client.
+
+The [original repository](https://code.google.com/p/srp-js/) had code working with a django server.
-[ruby-srp](https://github.com/leapcode/ruby-srp) contains client and server implementations in ruby that work with srp-js. It also ships an example using srp-js as the client.