Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Sha512/compute-transhash-sha512.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ def calculate_TransHashSha512(signatureKey,textToHash)
if(!textToHash || textToHash.length == 0)
raise 'textToHash cannot be null or empty';
end
if(signatureKey.length>2 || signatureKey.length%2!=0)
if(signatureKey.length<2 || signatureKey.length%2!=0)
raise 'Signature Key cannot be less than 2 or odd';
end
digest = OpenSSL::Digest.new('sha512')
return OpenSSL::HMAC.hexdigest(digest, [signatureKey].pack('H*'), textToHash).upcase
end
Expand Down