Is there a bash script available to generate a HMAC-SHA1 hash?
The equivalent of the following PHP code:
hash_hmac("sha1", "value", "key", TRUE);
Parameters
true : When set to TRUE, outputs raw binary data. FALSE outputs lowercase hexits.
Thanks.
In
bash
itself, no, it can do a lot of stuff but it also knows when to rely on external tools.For example, the Wikipedia page provides a Python implementation which
bash
can call to do the grunt work for HMAC_MD5, repeated below to make this answer self-contained:(keeping in mind that Python also contains SHA1 stuff as well, see here for details on how to use HMAC with the
hashlib.sha1()
constructor).Or, if you want to run the exact same code as PHP does, you could try running it with
phpsh
, as detailed here.