summaryrefslogtreecommitdiff
path: root/lib/srp/util.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/srp/util.rb')
-rw-r--r--lib/srp/util.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/srp/util.rb b/lib/srp/util.rb
index 66bd9e7..cafa5f4 100644
--- a/lib/srp/util.rb
+++ b/lib/srp/util.rb
@@ -59,14 +59,13 @@ d15dc7d7b46154d6b6ce8ef4ad69b15d4982559b297bcf1885c529f566660e5
def calculate_m(aa, bb, s)
hashin = '%x%x%x' % [aa, bb, s]
- sha256_str(hashin).hex
+ sha256_hex(hashin).hex
end
def calculate_u(aa, bb, n)
- nlen = 2 * ((('%x' % [n]).length * 4 + 7) >> 3)
aahex = '%x' % [aa]
bbhex = '%x' % [bb]
- return sha256_str("%x%x" % [aa, bb]).hex
+ return sha256_hex("%x%x" % [aa, bb]).hex
end
end