Skip to content

Instantly share code, notes, and snippets.

@giavac
Created October 5, 2016 10:28
Show Gist options
  • Save giavac/51482f009044df84c45c22e1f9c09e70 to your computer and use it in GitHub Desktop.
Save giavac/51482f009044df84c45c22e1f9c09e70 to your computer and use it in GitHub Desktop.
#!/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