mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-16 19:31:50 +00:00
commit
cfd0b040e4
31
acme.sh
31
acme.sh
@ -436,6 +436,31 @@ _digest() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#Usage: hashalg secret [outputhex]
|
||||||
|
#Output Base64-encoded hmac
|
||||||
|
_hmac() {
|
||||||
|
alg="$1"
|
||||||
|
hmac_sec="$2"
|
||||||
|
outputhex="$3"
|
||||||
|
|
||||||
|
if [ -z "$hmac_sec" ] ; then
|
||||||
|
_usage "Usage: _hmac hashalg secret [outputhex]"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ]; then
|
||||||
|
if [ "$outputhex" ] ; then
|
||||||
|
openssl dgst -$alg -hmac "$hmac_sec" | cut -d = -f 2 | tr -d ' '
|
||||||
|
else
|
||||||
|
openssl dgst -$alg -hmac "$hmac_sec" -binary | _base64
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
_err "$alg is not supported yet"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
#Usage: keyfile hashalg
|
#Usage: keyfile hashalg
|
||||||
#Output: Base64-encoded signature value
|
#Output: Base64-encoded signature value
|
||||||
_sign() {
|
_sign() {
|
||||||
@ -2298,7 +2323,11 @@ _findHook() {
|
|||||||
_hookcat="$2"
|
_hookcat="$2"
|
||||||
_hookname="$3"
|
_hookname="$3"
|
||||||
|
|
||||||
if [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ] ; then
|
if [ -f "$_SCRIPT_HOME/$_hookdomain/$_hookname" ] ; then
|
||||||
|
d_api="$_SCRIPT_HOME/$_hookdomain/$_hookname"
|
||||||
|
elif [ -f "$_SCRIPT_HOME/$_hookdomain/$_hookname.sh" ] ; then
|
||||||
|
d_api="$_SCRIPT_HOME/$_hookdomain/$_hookname.sh"
|
||||||
|
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ] ; then
|
||||||
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
|
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
|
||||||
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ] ; then
|
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ] ; then
|
||||||
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
|
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
|
||||||
|
Loading…
Reference in New Issue
Block a user