From 90a62ba0400e51396b27f6ffe8158b614dd462cf Mon Sep 17 00:00:00 2001 From: Quinn Slack Date: Wed, 20 Apr 2011 22:22:54 -0700 Subject: [PATCH] add srp.js file header --- core/srp.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/srp.js b/core/srp.js index 68d76f44..59e3c517 100644 --- a/core/srp.js +++ b/core/srp.js @@ -1,4 +1,11 @@ /** @fileOverview Javascript SRP implementation. + * + * This file contains a partial implementation of the SRP (Secure Remote + * Password) password-authenticated key exchange protocol. Given a user + * identity, salt, and SRP group, it generates the SRP verifier that may + * be sent to a remote server to establish and SRP account. + * + * For more information, see http://srp.stanford.edu/. * * @author Quinn Slack */