summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-06-28 19:43:40 +0200
committerAzul <azul@leap.se>2012-06-29 14:55:10 +0200
commit20bf14939fbd75e3ee0206c2bf14737e2c7ac2c2 (patch)
treee035c91c65e8e48d6a6af317e900a8fb9897a739 /test
parente55ff681bcc5a6c479530d1411a3da75912d78e5 (diff)
adopted srp algo to srp-js way of doing things.
all large integers are now send as hex strings. Using sha256_str all over the place. This finally gives me successful logins. Needs a log of cleanup never the less.
Diffstat (limited to 'test')
-rw-r--r--test/auth_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/auth_test.rb b/test/auth_test.rb
index 75aa9ad..f93445f 100644
--- a/test/auth_test.rb
+++ b/test/auth_test.rb
@@ -4,7 +4,7 @@ class AuthTest < Test::Unit::TestCase
def setup
@username = 'user'
- @password = 'opensasemi'
+ @password = 'opensesami'
@client = SRP::Client.new(@username, @password)
@server = SRP::Server.new(@client.salt, @client.verifier)
end