summaryrefslogtreecommitdiff
path: root/lib/ruby-srp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ruby-srp.rb')
-rw-r--r--lib/ruby-srp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ruby-srp.rb b/lib/ruby-srp.rb
new file mode 100644
index 0000000..7cbe06f
--- /dev/null
+++ b/lib/ruby-srp.rb
@@ -0,0 +1,15 @@
+# Ruby library for the server side of the Secure Remote Password protocol
+
+# References
+# `The Stanford SRP Homepage',
+# http://srp.stanford.edu/
+# `SRP JavaScript Demo',
+# http://srp.stanford.edu/demo/demo.html
+
+$:.unshift File.dirname(__FILE__)
+module SRP
+ autoload :Client, 'srp/client'
+ autoload :Authentication, 'srp/authentication'
+ class WrongPassword < StandardError
+ end
+end