Created
June 1, 2021 22:24
-
-
Save jamesmartin/7077f0f786295f6690894f99ade4d5b3 to your computer and use it in GitHub Desktop.
Bash JWT Encoder
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# JWT Encoder Bash Script | |
# | |
secret='SOME SECRET' | |
# Static header fields. | |
header='{ | |
"typ": "JWT", | |
"alg": "HS256", | |
"kid": "0001", | |
"iss": "Bash JWT Generator" | |
}' | |
# Use jq to set the dynamic `iat` and `exp` | |
# fields on the header using the current time. | |
# `iat` is set to now, and `exp` is now + 1 second. | |
header=$( | |
echo "${header}" | jq --arg time_str "$(date +%s)" \ | |
' | |
($time_str | tonumber) as $time_num | |
| .iat=$time_num | |
| .exp=($time_num + 1) | |
' | |
) | |
payload='{ | |
"Id": 1, | |
"Name": "Hello, world!" | |
}' | |
base64_encode() | |
{ | |
declare input=${1:-$(</dev/stdin)} | |
# Use `tr` to URL encode the output from base64. | |
printf '%s' "${input}" | base64 | tr -d '=' | tr '/+' '_-' | tr -d '\n' | |
} | |
json() { | |
declare input=${1:-$(</dev/stdin)} | |
printf '%s' "${input}" | jq -c . | |
} | |
hmacsha256_sign() | |
{ | |
declare input=${1:-$(</dev/stdin)} | |
printf '%s' "${input}" | openssl dgst -binary -sha256 -hmac "${secret}" | |
} | |
header_base64=$(echo "${header}" | json | base64_encode) | |
payload_base64=$(echo "${payload}" | json | base64_encode) | |
header_payload=$(echo "${header_base64}.${payload_base64}") | |
signature=$(echo "${header_payload}" | hmacsha256_sign | base64_encode) | |
echo "${header_payload}.${signature}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.