diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/srp/client.rb | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/lib/srp/client.rb b/lib/srp/client.rb index f4662e6..7aa147c 100644 --- a/lib/srp/client.rb +++ b/lib/srp/client.rb @@ -21,6 +21,9 @@ module SRP        aa = modpow(GENERATOR, a, PRIME_N) # A = g^a (mod N)        bb, u = server.initialize_auth(aa)        client_s = calculate_client_s(x, a, bb, u) +      puts "bb: " + bb.to_s +      puts "aa: " + aa.to_s +      puts "client_s: " + client_s.to_s        server.authenticate(aa, client_s)      end | 
