summaryrefslogtreecommitdiff
path: root/lib/srp.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-07-26 10:51:42 +0200
committerAzul <azul@leap.se>2012-07-26 10:51:42 +0200
commit7de7a78668a83eaab58597ce655ba613d4b477fb (patch)
tree0de1e7bb7af165eb8d165dc4ba296acb7850fdc0 /lib/srp.rb
parent1481331f3827711c16a3bcfb0ae0c6e4afd788d9 (diff)
turned server class into authentication module - test green, example broken
The example seems to be broken due to changes in srp-js
Diffstat (limited to 'lib/srp.rb')
-rw-r--r--lib/srp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/srp.rb b/lib/srp.rb
index 999f9b6..a008b82 100644
--- a/lib/srp.rb
+++ b/lib/srp.rb
@@ -9,5 +9,5 @@
$:.unshift File.dirname(__FILE__)
module SRP
autoload :Client, 'srp/client'
- autoload :Server, 'srp/server'
+ autoload :Authentication, 'srp/authentication'
end