Created
October 5, 2016 10:28
-
-
Save giavac/51482f009044df84c45c22e1f9c09e70 to your computer and use it in GitHub Desktop.
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 | |
USERNAME="" | |
REALM="" | |
PASSWORD="" | |
METHOD="REGISTER" | |
DIGEST_URI="" | |
NONCE="" | |
EXPECTED="" | |
A1="${USERNAME}:${REALM}:${PASSWORD}" | |
HA1=$(printf "${A1}" | md5sum | awk '{print $1}') | |
A2="${METHOD}:${DIGEST_URI}" | |
HA2=$(printf "${A2}" | md5sum | awk '{print $1}') | |
RESULT=$(printf "${HA1}:${NONCE}:${HA2}" | md5sum | awk '{printf $1}') | |
echo "A1: ${A1}" | |
echo "HA1: ${HA1}" | |
echo "A2: ${A2}" | |
echo "HA2: ${HA2}" | |
echo "" | |
echo "${RESULT} (result)" | |
echo "${EXPECTED} (expected)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment