summaryrefslogtreecommitdiff
path: root/lib/ruby-srp.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-10-03 16:59:46 +0200
committerAzul <azul@riseup.net>2012-10-03 16:59:46 +0200
commit4f57d8010a90fe1221c351f695d15d29a9cdc37f (patch)
treefd85a1db7a2d851a8227e566a406a62a2713e472 /lib/ruby-srp.rb
parent9683634eb18843151d318b483a5fb237508f4755 (diff)
calculate verifiers and multiplier just like in py srpfeature-py_srp_compat
Some other parts are still missing. Main issue was using hashes of hex representation rather that hashes of byte arrays
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 7cbe06f..d5d6cf3 100644
--- a/lib/ruby-srp.rb
+++ b/lib/ruby-srp.rb
@@ -10,6 +10,7 @@ $:.unshift File.dirname(__FILE__)
module SRP
autoload :Client, 'srp/client'
autoload :Authentication, 'srp/authentication'
+ autoload :Util, 'srp/util'
class WrongPassword < StandardError
end
end