Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update compute-transhash-sha512.rb #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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