-
-
Save mystix/ca7fe43b845bee44a2db33754143891a to your computer and use it in GitHub Desktop.
hmac sha256 encode with url safe base64 in bash shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo -en "message" | openssl dgst -sha256 -hmac "key" -binary | base64 | sed -e 's/+/-/g' -e 's/\//_/g' | tr -d = | |
bp7ym3X__Ft6uuUn1Y_a2y_kLnIZARl2kXNDBl9Y7Uo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
msg="1\n2" | |
hmacsha256sh() { | |
echo -n "${1}" | openssl dgst -sha256 -hmac "key" -binary | base64 | sed -e 's/+/-/g' -e 's/\//_/g' | tr -d = | |
} | |
hmacsha256she() { | |
echo -en "${1}" | openssl dgst -sha256 -hmac "key" -binary | base64 | sed -e 's/+/-/g' -e 's/\//_/g' | tr -d = | |
} | |
hmacsha256py() { | |
local msg=$1 | |
python3 -c "import base64,hashlib,hmac; print(base64.urlsafe_b64encode(hmac.new('key'.encode(), msg='${msg}'.encode(), digestmod=hashlib.sha256).digest()).decode().rstrip('='))" | |
} | |
if [[ "$(hmacsha256sh "${msg}")" == "$(hmacsha256py "${msg}")" ]]; then | |
echo "hmacsha256sh passed" | |
else | |
echo "hmacsha256sh failed" | |
fi | |
if [[ "$(hmacsha256she "${msg}")" == "$(hmacsha256py "${msg}")" ]]; then | |
echo "hmacsha256she passed" | |
else | |
echo "hmacsha256she failed" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment