mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
add the new reg hash
This commit is contained in:
parent
30684246d2
commit
f574e5813f
12
acme.sh
12
acme.sh
@ -1401,19 +1401,19 @@ issue() {
|
||||
accountkey_json=$(echo -n "$jwk" | tr -d ' ' )
|
||||
thumbprint=$(echo -n "$accountkey_json" | _digest "sha256" | _urlencode)
|
||||
|
||||
accountkeyhash="$(cat "$ACCOUNT_KEY_PATH" | _digest "sha256" )"
|
||||
accountkeyhash="$(echo $accountkeyhash$API | _digest "sha256" )"
|
||||
if [ "$accountkeyhash" != "$ACCOUNT_KEY_HASH" ] ; then
|
||||
_info "Registering account"
|
||||
regjson='{"resource": "new-reg", "agreement": "'$AGREEMENT'"}'
|
||||
if [ "$ACCOUNT_EMAIL" ] ; then
|
||||
regjson='{"resource": "new-reg", "contact": ["mailto: '$ACCOUNT_EMAIL'"], "agreement": "'$AGREEMENT'"}'
|
||||
fi
|
||||
_send_signed_request "$API/acme/new-reg" "$regjson"
|
||||
|
||||
accountkeyhash="$(cat "$ACCOUNT_KEY_PATH" | _digest "sha256" )"
|
||||
accountkeyhash="$(echo $accountkeyhash$API$regjson | _digest "sha256" )"
|
||||
if [ "$accountkeyhash" != "$ACCOUNT_KEY_HASH" ] ; then
|
||||
_info "Registering account"
|
||||
_send_signed_request "$API/acme/new-reg" "$regjson"
|
||||
if [ "$code" = "" ] || [ "$code" = '201' ] ; then
|
||||
_info "Registered"
|
||||
echo $response > $LE_WORKING_DIR/account.json
|
||||
echo "$response" > $LE_WORKING_DIR/account.json
|
||||
elif [ "$code" = '409' ] ; then
|
||||
_info "Already registered"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user