summaryrefslogtreecommitdiff
path: root/lib/ruby-srp.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-10-04 11:23:00 +0200
committerAzul <azul@riseup.net>2012-10-04 11:41:53 +0200
commit0e5f57d3e07db606a779485e1537d4db8b5d3da2 (patch)
tree90733e690fac48da221f3fa7db04aa23ba5423b7 /lib/ruby-srp.rb
parent66c3ed01eb012cae84193b4864c7c48eb77c2a8c (diff)
created session class to hold aa, bb and so forth - done for client
We have a session in the server already - duplication there now, merge next
Diffstat (limited to 'lib/ruby-srp.rb')
-rw-r--r--lib/ruby-srp.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ruby-srp.rb b/lib/ruby-srp.rb
index d5d6cf3..383cbca 100644
--- a/lib/ruby-srp.rb
+++ b/lib/ruby-srp.rb
@@ -11,6 +11,7 @@ module SRP
autoload :Client, 'srp/client'
autoload :Authentication, 'srp/authentication'
autoload :Util, 'srp/util'
+ autoload :Session, 'srp/session'
class WrongPassword < StandardError
end
end