mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-25 22:51:39 +00:00
fix issue cache jwk for ecc key only
This commit is contained in:
parent
5dbf664a6b
commit
18256c4923
14
acme.sh
14
acme.sh
@ -834,15 +834,18 @@ _calcjwk() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ] ; then
|
|
||||||
_debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
|
|
||||||
return 0
|
|
||||||
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"
|
||||||
|
|
||||||
|
if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ] ; then
|
||||||
|
_debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
pub_exp=$(openssl rsa -in $keyfile -noout -text | grep "^publicExponent:"| cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1)
|
pub_exp=$(openssl rsa -in $keyfile -noout -text | grep "^publicExponent:"| cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1)
|
||||||
if [ "${#pub_exp}" = "5" ] ; then
|
if [ "${#pub_exp}" = "5" ] ; then
|
||||||
pub_exp=0$pub_exp
|
pub_exp=0$pub_exp
|
||||||
@ -861,6 +864,7 @@ _calcjwk() {
|
|||||||
JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
|
JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
|
||||||
JWK_HEADERPLACE_PART1='{"nonce": "'
|
JWK_HEADERPLACE_PART1='{"nonce": "'
|
||||||
JWK_HEADERPLACE_PART2='", "alg": "RS256", "jwk": '$jwk'}'
|
JWK_HEADERPLACE_PART2='", "alg": "RS256", "jwk": '$jwk'}'
|
||||||
|
__CACHED_JWK_KEY_FILE="$keyfile"
|
||||||
elif grep "BEGIN EC PRIVATE KEY" "$keyfile" > /dev/null 2>&1 ; then
|
elif grep "BEGIN EC PRIVATE KEY" "$keyfile" > /dev/null 2>&1 ; then
|
||||||
_debug "EC key"
|
_debug "EC key"
|
||||||
EC_SIGN="1"
|
EC_SIGN="1"
|
||||||
@ -908,7 +912,7 @@ _calcjwk() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
_debug3 JWK_HEADER "$JWK_HEADER"
|
_debug3 JWK_HEADER "$JWK_HEADER"
|
||||||
__CACHED_JWK_KEY_FILE="$keyfile"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_time() {
|
_time() {
|
||||||
|
Loading…
Reference in New Issue
Block a user