diff options
author | Quinn Slack <sqs@cs.stanford.edu> | 2011-04-20 22:22:54 -0700 |
---|---|---|
committer | Quinn Slack <sqs@cs.stanford.edu> | 2011-04-20 22:22:54 -0700 |
commit | c003a4c3b97f32a68faff9dfc13270aa921d94fc (patch) | |
tree | 0685054d2ae11c3248f244917e1e98f5b325c3e8 | |
parent | 4e2872062e49d461dfe24728b2c98cf93e210e5a (diff) | |
download | sjcl-c003a4c3b97f32a68faff9dfc13270aa921d94fc.zip sjcl-c003a4c3b97f32a68faff9dfc13270aa921d94fc.tar.gz sjcl-c003a4c3b97f32a68faff9dfc13270aa921d94fc.tar.bz2 |
add srp.js file header
-rw-r--r-- | core/srp.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/srp.js b/core/srp.js index 68d76f4..59e3c51 100644 --- a/core/srp.js +++ b/core/srp.js @@ -1,5 +1,12 @@ /** @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 */ |