summaryrefslogtreecommitdiff
path: root/lib/srp.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-08-06 12:34:47 +0200
committerAzul <azul@leap.se>2012-08-06 12:41:06 +0200
commit552574bfb0a0160935452b605bb262b5b52c4f67 (patch)
tree71ec6bba217db018f20a4270eacdcdb02c7a8dbe /lib/srp.rb
parent8d489f7c431cf24c84ac5fc23be1b9b3531b402b (diff)
added authenticate! which raises SRP::WrongPassword if it fails, version 0.0.2
Diffstat (limited to 'lib/srp.rb')
-rw-r--r--lib/srp.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/srp.rb b/lib/srp.rb
deleted file mode 100644
index a008b82..0000000
--- a/lib/srp.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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'
-end