summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-10-04 13:08:21 +0200
committerAzul <azul@riseup.net>2012-10-04 13:08:21 +0200
commit0c70bc88f14f9cc92a98a902a99b88a9b1f672e6 (patch)
tree7e5a3fa7c863f6e8f1628a45e3d1cebc95cfb88e
parent777254f7ba10a0dd8fbee433e6a631d96e9d76f0 (diff)
using the SRP 6a algorithm for calculating M
-rw-r--r--lib/srp/session.rb6
-rw-r--r--lib/srp/util.rb21
-rw-r--r--test/util_test.rb6
3 files changed, 27 insertions, 6 deletions
diff --git a/lib/srp/session.rb b/lib/srp/session.rb
index 367f5e2..a1153e0 100644
--- a/lib/srp/session.rb
+++ b/lib/srp/session.rb
@@ -65,8 +65,10 @@ module SRP
# this is outdated - SRP 6a uses
# M = H(H(N) xor H(g), H(I), s, A, B, K)
- def calculate_m(s)
- sha256_int(@aa, @bb, s).hex
+ def calculate_m(secret)
+ n_xor_g_hash = sha256_str(hn_xor_hg).hex
+ username_hash = sha256_str(@user.username).hex
+ sha256_int(n_xor_g_hash, username_hash, @user.salt, @aa, @bb, secret).hex
end
def calculate_m2(m, secret)
diff --git a/lib/srp/util.rb b/lib/srp/util.rb
index 50ff9bb..1e4beac 100644
--- a/lib/srp/util.rb
+++ b/lib/srp/util.rb
@@ -19,6 +19,10 @@ d15dc7d7b46154d6b6ce8ef4ad69b15d4982559b297bcf1885c529f566660e5
EOS
GENERATOR = 2 # g
+ def hn_xor_hg
+ byte_xor_hex(sha256_int(BIG_PRIME_N), sha256_int(GENERATOR))
+ end
+
# a^n (mod m)
def modpow(a, n, m = BIG_PRIME_N)
r = 1
@@ -32,7 +36,7 @@ d15dc7d7b46154d6b6ce8ef4ad69b15d4982559b297bcf1885c529f566660e5
# Hashes the (long) int args
def sha256_int(*args)
- sha256_hex(*args.map{|a| a.to_s(16)})
+ sha256_hex(*args.map{|a| "%02x" % a})
end
# Hashes the hex args
@@ -56,9 +60,18 @@ d15dc7d7b46154d6b6ce8ef4ad69b15d4982559b297bcf1885c529f566660e5
protected
def calculate_multiplier
- # GENERATOR hex needs to be prefixed with 0 so it's not "2" -> 32
- ghex = '0%x' % GENERATOR
- sha256_hex(BIG_PRIME_N.to_s(16), ghex).hex
+ sha256_int(BIG_PRIME_N, GENERATOR).hex
+ end
+
+ # turn two hex strings into byte arrays and xor them
+ #
+ # returns byte array
+ def byte_xor_hex(a, b)
+ a = [a].pack('H*')
+ b = [b].pack('H*')
+ a.bytes.each_with_index.map do |a_byte, i|
+ (a_byte ^ (b[i] || 0)).chr
+ end.join
end
end
diff --git a/test/util_test.rb b/test/util_test.rb
index 9b1d09b..4dd6d86 100644
--- a/test/util_test.rb
+++ b/test/util_test.rb
@@ -30,4 +30,10 @@ class UtilTest < Test::Unit::TestCase
"%x" % multiplier
end
+ def test_hn_xor_hg
+ # >>> binascii.hexlify (pysrp.HNxorg(hashlib.sha256, N, g))
+ assert_equal '928ade491bc87bba9eb578701d44d30ed9080e60e542ba0d3b9c20ded9f592bf',
+ hn_xor_hg.bytes.map{|b| "%02x" % b.ord}.join
+ end
+
end