Is there a bash script to generate a HMAC-SHA1
hash?
I'm looking for something equivalent to the following PHP code:
hash_hmac("sha1", "value", "key");
Is there a bash script to generate a HMAC-SHA1
hash?
I'm looking for something equivalent to the following PHP code:
hash_hmac("sha1", "value", "key");
To those who like to explore more JWT on the command line: cool jwt bash script
I realise this isn't exactly what you're asking for, but there's no point in reinventing the wheel and writing a bash version.
You can simply use the
openssl
command to generate the hash within your script.Or simply:
Remember to use
-n
withecho
or else a line break character is appended to the string and that changes your data and the hash.That command comes from the OpenSSL package which should already be installed (or easily installed) in your choice of Linux/Unix, Cygwin and the likes.
Do note that older versions of
openssl
(such as that shipped with RHEL4) may not provide the-hmac
option.As an alternative solution, but mainly to prove that the results are the same, we can also call PHP's
hmac_sha1()
from the command line:Here is a bash function that works like
hash_hmac
from PHP:Thanks for the hash_hmac function! But it was not enough for my application. In case anyone wondered, I had to re-hash stuff several times using a key that was the result of the previous hashing, and therefore is a binary input. (The Amazon AWS authentication signature is created like this.)
So what I needed was a way to supply the binary key in some way that would not break the algorithm. Then I found this: http://openssl.6102.n7.nabble.com/command-line-hmac-with-key-in-hex-td6754.html
Stephen Henson's reply requires the hash_hmac function to return the value in hex format. So it needs to echo the following:
Then the next call would need to provide the key as an hexit:
Hopefully this helps anyone, probably someone who is trying to create bash scripts to invalidate CloudFront entries on AWS (like me!) (I haven't tested it yet, but I think this is the thing that is the cause of why my bash script does not work, and my PHP one does...)