mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-16 03:11:46 +00:00
do not cache thumbprint for issues for ecc account key
This commit is contained in:
parent
18256c4923
commit
8c76b8bc36
10
acme.sh
10
acme.sh
@ -834,9 +834,6 @@ _calcjwk() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
EC_SIGN=""
|
EC_SIGN=""
|
||||||
if grep "BEGIN RSA PRIVATE KEY" "$keyfile" > /dev/null 2>&1 ; then
|
if grep "BEGIN RSA PRIVATE KEY" "$keyfile" > /dev/null 2>&1 ; then
|
||||||
_debug "RSA key"
|
_debug "RSA key"
|
||||||
@ -2383,10 +2380,9 @@ issue() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$thumbprint" ] ; then
|
|
||||||
accountkey_json=$(printf "%s" "$jwk" | tr -d ' ' )
|
accountkey_json=$(printf "%s" "$jwk" | tr -d ' ' )
|
||||||
thumbprint=$(printf "%s" "$accountkey_json" | _digest "sha256" | _urlencode)
|
thumbprint=$(printf "%s" "$accountkey_json" | _digest "sha256" | _urlencode)
|
||||||
fi
|
|
||||||
|
|
||||||
entry="$(printf "%s\n" "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
|
entry="$(printf "%s\n" "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
|
||||||
_debug entry "$entry"
|
_debug entry "$entry"
|
||||||
|
Loading…
Reference in New Issue
Block a user