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.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/srp/util.rb b/lib/srp/util.rb
index 1e4beac..3bed1d3 100644
--- a/lib/srp/util.rb
+++ b/lib/srp/util.rb
@@ -41,7 +41,7 @@ d15dc7d7b46154d6b6ce8ef4ad69b15d4982559b297bcf1885c529f566660e5
# Hashes the hex args
def sha256_hex(*args)
- h = args.join('')
+ h = args.map{|a| a.length.odd? ? "0#{a}" : a }.join('')
sha256_str([h].pack('H*'))
end