diff options
| -rw-r--r-- | lib/srp/client.rb | 2 | ||||
| -rw-r--r-- | test/auth_test.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/srp/client.rb b/lib/srp/client.rb index be94072..484d12b 100644 --- a/lib/srp/client.rb +++ b/lib/srp/client.rb @@ -19,7 +19,7 @@ module SRP        x = calculate_x(username, password, salt)        a = bigrand(32).hex        aa = modpow(GENERATOR, a, PRIME_N) # A = g^a (mod N) -      bb = server.handshake(aa) +      bb = server.handshake(username, aa)        u = calculate_u(aa, bb, PRIME_N)        client_s = calculate_client_s(x, a, bb, u)        server.validate(calculate_m(aa, bb, client_s)) diff --git a/test/auth_test.rb b/test/auth_test.rb index 182722f..4311683 100644 --- a/test/auth_test.rb +++ b/test/auth_test.rb @@ -11,7 +11,7 @@ class User      @verifier = verifier    end -  def handshake(aa) +  def handshake(login, aa)      @session = initialize_auth(aa)      return @session.bb    end | 
