summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2013-07-14 14:22:31 +0200
committerAzul <azul@riseup.net>2013-07-14 14:22:31 +0200
commite4a577e45f36b3ed93d85fc466ae13217cca955c (patch)
treea99d9e926327cb01549a8ad0d5ef7ff62f53e004 /test
parentd508b7eb1f372f8c8175cc16e7669435d1fe995f (diff)
store aa, bb and u as hex by default
Diffstat (limited to 'test')
-rw-r--r--test/session_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/session_test.rb b/test/session_test.rb
index 41d66b3..6864de7 100644
--- a/test/session_test.rb
+++ b/test/session_test.rb
@@ -54,7 +54,7 @@ class SessionTest < Test::Unit::TestCase
b = data[:b].hex
session = SRP::Session.new(client, aa)
# seed b to compare to py_srp
- session.send(:initialize_server, aa.hex, b)
+ session.send(:initialize_server, aa, b)
session
end